Displaying 9 results from an estimated 9 matches for "kenichi".
2006 Dec 13
4
Unintended thread forked in autostart
...autostart:
1:
class: foo_worker
arg: ''''
Result is....
--- First time---
Start processing
Finish processing
--- Second time ---
Start processing
Start processing
Finish processing
Finish processing
regards.
--
--------------------------------------
Kenichi Sugihara
--------------------------------------
2000 Jun 02
0
util_str.c patch
...unction, most of the
treatment can change to "memory" treating with length
And "memory" treating is lot faster then "string" treating
( for "memory" treating do not need any "terminal character
detection" ).
regards,
----
Kenichi Okuyama
--- /usr/local/src/samba/source/lib/util_str.c Wed Jan 26 09:12:35 2000
+++ ./util_str.c Fri Jun 2 22:15:13 2000
@@ -507,107 +507,112 @@
trim the specified elements off the front and back of a string
********************************************************************/
BOOL trim_str...
2001 Sep 09
1
VP3.2 video codec open sourced
this is slightly off topic and also it was posted to the tarkin list,
but I think many people on this list are looking for an open source
video codec. ;)
On2 released the VP3.2 video codec as open source. I didn't read the
license and could not say if it's really open source.
http://www.vp3.com
http://www.streamingmedia.com/article.asp?id=7871
--- >8 ----
List archives:
2012 Mar 27
0
Offline apps and Asset pipeline Problem in rails3.2
...xample or article? Or alternative solution exists?
This is my incomplete note:
https://gist.github.com/2200162
Below is my textbooks:
- https://github.com/wycats/rack-offline
- http://railscasts.com/episodes/247-offline-apps-part-1
- http://railscasts.com/episodes/248-offline-apps-part-2
Thanks,
Kenichi Murahashi
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/mI3IPvG3sOwJ.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5...
2003 Dec 10
0
dyn.load for c code
..." but only to get the same results.
I am using Dev-C++ Version 4 to compile my C source code. If I need to edit MkRules,
what precisely do I need to change and how should I change it? Do I need a different
compiler (lcc?) ? What examply am I not doing right?
Thanks in advance for your time,
Kenichi Okamoto
---------------------------------
Do You Yahoo!?
Yahoo! BB is Broadband by Yahoo!
http://bb.yahoo.co.jp/
[[alternative HTML version deleted]]
2000 May 02
0
patch for .samba-2.0.7/source/lib/bitmap.c
...- j = i;
- do {
- if (!bitmap_query(bm, j)) return j;
- j++;
- } while (j & 31 && j < bm->n);
- }
- i += 32;
- i &= ~31;
- }
+/*
+ * find bit with 1, from LSB.
+ *
+ * I first saw this hack at X11R3's source code. I don't know where it
+ * came from. --- Kenichi Okuyama.
+ */
+static int
+find_bitmap_one( uint32 bitmaps )
+{
+ uint32 only_lsb_is_one;
+ int result;
- i = 0;
- while (i < ofs) {
- if (~(bm->b[i/32])) {
- j = i;
- do {
- if (!bitmap_query(bm, j)) return j;
- j++;
- } while (j & 31 && j < bm->...
2012 Feb 06
2
Puppet kick class option error
Hi,
I''m trying to puppet kick with class option.
Pupper Master: puppetmaster.example.com
Puppet Client1: host1.example.net
Puppet Client2: host2.example.net
But I get this error.
---
[root@puppetmaster ~]# puppet kick --class test --debug
test: host1.example.net.example.com, host2.example.net.example.com
Triggering host1.example.net.example.com,
host2.example.net.example.com
Host
2000 May 10
0
patche for samba-2.0.7/source/smbd/conn.c
...e that we no longer
need it, or we can use it for another perpose ... like managing
snum in some way better then simple search ).
3) I made entire "global" variable to single structure.
do
% patch -p0 < [The patch below]
and you'll get patched conn.c.
best regards,
----
Kenichi Okuyama@Tokyo Research Lab. IBM-Japan.Co.
---- Patch starts from line below ----
--- ./source/smbd/conn.c 2000/05/02 14:49:30 1.1
+++ ./source/smbd/conn.c 2000/05/08 16:23:12
@@ -25,165 +25,268 @@
/* set these to define the limits of the server. NOTE These are on a
per-client basis. Thus a...
2000 Apr 29
0
fix to lib/talloc.c
I added little changes to lib/talloc.c.
With this patch,
1) calling malloc() within talloc.c will become 1/2( well, at least,
nearly half ).
2) If you are using glibc2's malloc, then entire talloced space will
be returned to system at talloc_destroy() time.
# Original code has chance of keeping space for
# 'struct talloc_chunk'.
--- ./source/lib/talloc.c 2000/04/28