2846件ヒット
[2801-2846件を表示]
(0.191秒)
ライブラリ
- ビルトイン (2846)
クラス
-
ARGF
. class (216) - Dir (120)
-
Encoding
:: Converter (12) -
Encoding
:: InvalidByteSequenceError (12) - Exception (12)
- File (108)
-
File
:: Stat (48) - IO (730)
- Method (14)
- Module (12)
- Mutex (2)
- Object (30)
- Proc (14)
- String (12)
- Thread (668)
-
Thread
:: Backtrace :: Location (84) -
Thread
:: ConditionVariable (40) -
Thread
:: Mutex (80) -
Thread
:: Queue (144) -
Thread
:: SizedQueue (124) - ThreadGroup (72)
キーワード
- << (34)
- >> (14)
-
CLOCK
_ THREAD _ CPUTIME _ ID (12) - ConditionVariable (10)
- DEBUG (12)
- DEBUG= (12)
- Default (12)
- EALREADY (12)
- IO (12)
- Location (12)
-
MUTEX
_ FOR _ THREAD _ EXCLUSIVE (5) - Mutex (10)
- Queue (10)
- SizedQueue (10)
- Thread (12)
- ThreadError (12)
- ThreadGroup (12)
- WaitReadable (12)
- [] (12)
- []= (12)
-
abort
_ on _ exception (24) -
abort
_ on _ exception= (24) -
absolute
_ path (12) - add (12)
-
add
_ trace _ func (12) - alive? (12)
-
attr
_ reader (12) - backtrace (12)
-
backtrace
_ locations (36) -
base
_ label (12) - binmode (12)
- binread (12)
- birthtime (12)
- broadcast (10)
-
caller
_ locations (24) - clear (10)
- clone (12)
- close (32)
-
close
_ read (12) -
close
_ write (12) - closed? (22)
-
copy
_ stream (24) - count (12)
- current (12)
- deq (20)
- detach (12)
- dup (12)
- empty? (18)
- enclose (12)
- enclosed? (12)
- enq (20)
- exclusive (12)
- exit (24)
- fdatasync (12)
- fetch (8)
- file (12)
- filename (12)
- flock (12)
- flush (12)
- fork (12)
- getc (12)
- group (12)
-
handle
_ interrupt (12) -
ignore
_ deadlock (4) -
ignore
_ deadlock= (4) - inspect (24)
- join (24)
- key? (12)
- keys (12)
- kill (24)
- label (12)
- length (18)
- lineno (12)
- link (12)
- list (24)
- lock (10)
- locked? (10)
- main (12)
- max (10)
- max= (10)
- name (10)
- name= (10)
- new (106)
-
num
_ waiting (10) - open (72)
- owned? (10)
- pass (12)
- path (24)
-
pending
_ interrupt? (24) - pipe (96)
- pop (20)
- popen (168)
- pos= (12)
- pread (8)
-
primitive
_ errinfo (12) - priority (12)
- priority= (12)
- push (20)
- pwrite (8)
- raise (12)
-
read
_ nonblock (24) - readable? (36)
-
readable
_ real? (36) -
readagain
_ bytes (12) - readbyte (24)
- readchar (24)
- readline (84)
- readlines (120)
- readlink (12)
- readpartial (24)
-
report
_ on _ exception (18) -
report
_ on _ exception= (18) - rewind (12)
- run (12)
-
safe
_ level (7) - seek (12)
- select (24)
-
set
_ encoding _ by _ bom (6) -
set
_ trace _ func (12) - shift (20)
- signal (10)
- size (18)
- sleep (10)
- spawn (48)
- start (12)
- status (12)
- stop (12)
- stop? (12)
- synchronize (10)
- sysread (12)
- sysseek (12)
- syswrite (12)
- terminate (12)
- then (14)
-
thread
_ variable? (12) -
thread
_ variable _ get (12) -
thread
_ variable _ set (12) -
to
_ a (36) -
to
_ s (20) -
try
_ lock (10) - ungetc (12)
- unlock (10)
- value (12)
- wait (10)
- wakeup (12)
-
world
_ readable? (36) - write (36)
-
yield
_ self (16)
検索結果
先頭4件
-
IO
. popen("-" , mode = "r" , opt={}) -> IO (8003.0) -
第一引数に文字列 "-" が指定された時、fork(2) を 行い子プロセスの標準入出力との間にパイプラインを確立します。 親プロセスでは IO オブジェクトを返し、子プロセスでは nil を返します。
第一引数に文字列 "-" が指定された時、fork(2) を
行い子プロセスの標準入出力との間にパイプラインを確立します。
親プロセスでは IO オブジェクトを返し、子プロセスでは
nil を返します。
io = IO.popen("-", "r+")
if io # parent
io.puts "foo"
p io.gets # => "child output: foo\n"
io.close
else # child
s = gets
print "child output: " + s
... -
IO
. popen("-" , mode = "r" , opt={}) {|io| . . . } -> object (8003.0) -
第一引数に文字列 "-" が指定された時、fork(2) を 行い子プロセスの標準入出力との間にパイプラインを確立します。 親プロセスでは IO オブジェクトを返し、子プロセスでは nil を返します。
第一引数に文字列 "-" が指定された時、fork(2) を
行い子プロセスの標準入出力との間にパイプラインを確立します。
親プロセスでは IO オブジェクトを返し、子プロセスでは
nil を返します。
io = IO.popen("-", "r+")
if io # parent
io.puts "foo"
p io.gets # => "child output: foo\n"
io.close
else # child
s = gets
print "child output: " + s
... -
IO
. popen(env , "-" , mode = "r" , opt={}) -> IO (8003.0) -
第一引数に文字列 "-" が指定された時、fork(2) を 行い子プロセスの標準入出力との間にパイプラインを確立します。 親プロセスでは IO オブジェクトを返し、子プロセスでは nil を返します。
第一引数に文字列 "-" が指定された時、fork(2) を
行い子プロセスの標準入出力との間にパイプラインを確立します。
親プロセスでは IO オブジェクトを返し、子プロセスでは
nil を返します。
io = IO.popen("-", "r+")
if io # parent
io.puts "foo"
p io.gets # => "child output: foo\n"
io.close
else # child
s = gets
print "child output: " + s
... -
IO
. popen(env , "-" , mode = "r" , opt={}) {|io| . . . } -> object (8003.0) -
第一引数に文字列 "-" が指定された時、fork(2) を 行い子プロセスの標準入出力との間にパイプラインを確立します。 親プロセスでは IO オブジェクトを返し、子プロセスでは nil を返します。
第一引数に文字列 "-" が指定された時、fork(2) を
行い子プロセスの標準入出力との間にパイプラインを確立します。
親プロセスでは IO オブジェクトを返し、子プロセスでは
nil を返します。
io = IO.popen("-", "r+")
if io # parent
io.puts "foo"
p io.gets # => "child output: foo\n"
io.close
else # child
s = gets
print "child output: " + s
...