336件ヒット
[101-200件を表示]
(0.103秒)
ライブラリ
- ビルトイン (60)
-
bigdecimal
/ math (12) - cmath (24)
- open3 (96)
-
win32
/ registry (144)
キーワード
- CloseKey (12)
- CreateKey (12)
- DeleteKey (12)
- DeleteValue (12)
- EnumKey (12)
- EnumValue (12)
- FlushKey (12)
- OpenKey (12)
- QueryInfoKey (12)
- QueryValue (12)
- SetValue (12)
- acos (12)
- asin (12)
- check (12)
- cos (12)
- cos! (6)
- detach (12)
- exp (6)
-
pipeline
_ r (24) -
pipeline
_ rw (24) -
pipeline
_ start (24) -
pipeline
_ w (24) - sin (12)
- sin! (6)
- tan! (6)
検索結果
先頭5件
-
Open3
. # pipeline _ w(*cmds) {|first _ stdin , wait _ thrs| . . . } -> () (6201.0) -
指定したコマンドのリストをパイプで繋いで順番に実行します。最初の コマンドの標準入力に書き込む事ができます。
...g を指定します。
options には Hash で指定します。
env には環境変数を Hash で指定します。
cmdname にはコマンド名を表す String を指定します。
1、2、3 は shell 経由で実行されます。
(1) commandl......た場合は最初に実行するコマンドの標準入力、
実行したプロセスを待つためのスレッドの配列を配列で返します。
例:
require "open3"
Open3.pipeline_w("bzip2 -c", :out=>"/tmp/hello.bz2") {|w, ts|
w.puts "hello"
}
@see Open3.#popen3... -
Process
. # detach(pid) -> Thread (6201.0) -
子プロセス pid の終了を監視するスレッドを生成して返します。 生成したスレッドは子プロセスが終了した後に終了ステータス (Process::Status) を返します。 指定した子プロセスが存在しなければ即座に nil で終了します。
...ス pid の終了を監視するスレッドを生成して返します。
生成したスレッドは子プロセスが終了した後に終了ステータス (Process::Status) を返します。
指定した子プロセスが存在しなければ即座に nil で終了します。
@param pid 子......。
@raise NotImplementedError メソッドが現在のプラットフォームで実装されていない場合に発生します。
pid = fork {
# child
sleep 3
}
p pid # => 7762
th = Process.detach(pid)
p th.value
# => #<Process::Status: pid 7762 exit 0>... -
Win32
:: Registry :: API . # FlushKey(hkey) (6201.0) -
@todo
@todo -
Win32
:: Registry :: API . # check(result) (6101.0) -
@todo
@todo -
Win32
:: Registry :: API . # CloseKey(hkey) (3101.0) -
@todo
@todo -
Win32
:: Registry :: API . # CreateKey(hkey , name , opt , desired) (3101.0) -
@todo
@todo -
Win32
:: Registry :: API . # DeleteKey(hkey , name) (3101.0) -
@todo
@todo -
Win32
:: Registry :: API . # DeleteValue(hkey , name) (3101.0) -
@todo
@todo -
Win32
:: Registry :: API . # EnumKey(hkey , index) (3101.0) -
@todo
@todo