るりまサーチ

最速Rubyリファレンスマニュアル検索!
336件ヒット [101-200件を表示] (0.103秒)

別のキーワード

  1. _builtin to_h
  2. env to_h
  3. hash to_h
  4. array to_h
  5. struct to_h

ライブラリ

モジュール

キーワード

検索結果

<< < 1 2 3 4 > >>

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 メソッドが現在のプラットフォームで実装されていない場合に発生します。

pi
d = 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
<< < 1 2 3 4 > >>