306件ヒット
[1-100件を表示]
(0.079秒)
ライブラリ
- ビルトイン (100)
- csv (48)
-
rinda
/ rinda (24) -
rinda
/ tuplespace (24) -
rubygems
/ source _ info _ cache (12) - shell (24)
-
shell
/ command-processor (24) -
shell
/ filter (24) - thread (8)
- thwait (6)
- zlib (12)
クラス
- CSV (12)
-
CSV
:: Table (36) - File (12)
-
Gem
:: SourceInfoCache (12) - IO (48)
-
Rinda
:: TupleSpace (24) -
Rinda
:: TupleSpaceProxy (24) - Shell (24)
-
Shell
:: CommandProcessor (24) -
Shell
:: Filter (24) -
Thread
:: Queue (24) -
Thread
:: SizedQueue (24) - ThreadsWait (6)
-
Zlib
:: GzipWriter (12)
キーワード
-
close
_ read (12) -
close
_ write (12) - closed? (12)
- finished? (6)
- flock (12)
- flush (24)
- push (36)
-
read
_ all (24) -
read
_ cache _ data (12) - readable? (18)
-
readable
_ real? (18) - readlink (18)
- shift (36)
-
to
_ csv (12) -
to
_ s (12) -
world
_ readable? (18)
検索結果
先頭5件
-
Rinda
:: TupleSpaceProxy # read(tuple , sec=nil) -> [Array|Hash] (18226.0) -
タプルスペース内の tuple にマッチするタプルを一つコピーして返します。
...オブジェクトの Rinda::TupleSpace#read にフォワードされます。
詳細は Rinda::TupleSpace#read を参照してください。
@param tuple タプルのパターン
@param sec タイムアウト秒数
@raise Rinda::RequestExpiredError read がタイムアウトした場合に発生......します
@raise Ridna::RequestCanceledError read が何らかの理由でキャンセルされた場合に発生します。... -
Rinda
:: TupleSpace # read(tuple , sec=nil) -> [Array|Hash] (18220.0) -
タプルスペース内の tuple にマッチするタプルを一つコピーして返します。
...時には read をあきらめ
例外 Rinda::RequestExpiredError を発生させます。
sec に nil を指定するとタイムアウトせずに無限に待ち続けます。
@param tuple タプルのパターン
@param sec タイムアウト秒数
@raise Rinda::RequestExpiredError read がタ......イムアウトした場合に発生します
@raise Ridna::RequestCanceledError read が何らかの理由でキャンセルされた場合に発生します。... -
Shell
# readable?(file) -> bool (9101.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#readable?... -
Shell
# readable _ real?(file) -> bool (9101.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#readable_real?... -
Shell
# readlink(path) -> String (9101.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param path シンボリックリンクを表す文字列を指定します。
@see File.readlink... -
Shell
# world _ readable? (9101.0) -
@todo
@todo -
Shell
:: CommandProcessor # readable?(file) -> bool (9101.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#readable?... -
Shell
:: CommandProcessor # readable _ real?(file) -> bool (9101.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#readable_real?... -
Shell
:: CommandProcessor # readlink(path) -> String (9101.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param path シンボリックリンクを表す文字列を指定します。
@see File.readlink... -
Shell
:: CommandProcessor # world _ readable? (9101.0) -
@todo
@todo -
Shell
:: Filter # readable?(file) -> bool (9101.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#readable?... -
Shell
:: Filter # readable _ real?(file) -> bool (9101.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#readable_real?... -
Shell
:: Filter # readlink(path) -> String (9101.0) -
File クラスにある同名のクラスメソッドと同じです.
...File クラスにある同名のクラスメソッドと同じです.
@param path シンボリックリンクを表す文字列を指定します。
@see File.readlink... -
Shell
:: Filter # world _ readable? (9101.0) -
@todo
@todo -
ThreadsWait
# finished? -> bool (9101.0) -
すでに終了したスレッドが存在すれば true を返します。
...に終了したスレッドが存在すれば true を返します。
使用例
require 'thwait'
threads = []
3.times {|i|
threads << Thread.new { sleep 1; p Thread.current }
}
thall = ThreadsWait.new(*threads)
p thall.finished? #=> false
sleep 3
p thall.finished? #=> true...