336件ヒット
[201-300件を表示]
(0.018秒)
別のキーワード
ライブラリ
- ビルトイン (48)
- benchmark (12)
- fileutils (84)
- json (24)
- objspace (12)
- open3 (108)
- rubygems (12)
- shellwords (12)
-
webrick
/ httputils (12) - zlib (12)
モジュール
- Benchmark (12)
- FileUtils (84)
- Gem (12)
- JSON (24)
- Kernel (24)
- ObjectSpace (36)
- Open3 (108)
- Shellwords (12)
-
WEBrick
:: HTTPUtils (12) - Zlib (12)
キーワード
- bmbm (12)
- chmod (12)
-
chmod
_ R (12) - chown (12)
-
chown
_ R (12) -
crc
_ table (12) -
define
_ finalizer (24) - generate (12)
- makedirs (12)
-
mkdir
_ p (12) - mkpath (12)
- p (12)
- path (12)
- pipeline (12)
-
pipeline
_ r (24) -
pipeline
_ rw (24) -
pipeline
_ start (24) -
pipeline
_ w (24) -
reachable
_ objects _ from (12) - shelljoin (12)
-
split
_ header _ value (12) - unparse (12)
検索結果
先頭5件
-
Benchmark
. # bmbm(width = 0) {|job| . . . } -> [Benchmark :: Tms] (19.0) -
Benchmark::Job オブジェクトを生成して、それを引数として与えられたブロックを 実行します。
...param width ラベルの幅を指定します。
//emlist[][ruby]{
require 'benchmark'
array = (1..1000000).map { rand }
Benchmark.bmbm do |x|
x.report("sort!") { array.dup.sort! }
x.report("sort") { array.dup.sort }
end
#=>
#
# Rehearsal -----------------------------------------
# sort!... -
JSON
. # generate(object , state = nil) -> String (13.0) -
与えられたオブジェクトを一行の JSON 形式の文字列に変換して返します。
...before a : pair delimiter (default: '')
: :object_nl
a string that is put at the end of a JSON object (default: '')
: :array_nl
a string that is put at the end of a JSON array (default: '')
: :check_circular
真を指定した場合、生成するオブジェクトの循環をチェックし... -
JSON
. # unparse(object , state = nil) -> String (13.0) -
与えられたオブジェクトを一行の JSON 形式の文字列に変換して返します。
...before a : pair delimiter (default: '')
: :object_nl
a string that is put at the end of a JSON object (default: '')
: :array_nl
a string that is put at the end of a JSON array (default: '')
: :check_circular
真を指定した場合、生成するオブジェクトの循環をチェックし... -
Open3
. # pipeline(*cmds) -> [Process :: Status] (7.0) -
指定したコマンドのリストをパイプで繋いで順番に実行します。
...。
@param cmds 実行するコマンドのリストを指定します。それぞれのコマンドは
以下のように String か Array で指定します。
commandline にはコマンド全体(例. "nroff -man")を表す
String を指定します。... -
Open3
. # pipeline _ r(*cmds) -> [IO , [Thread]] (7.0) -
指定したコマンドのリストをパイプで繋いで順番に実行します。最後の コマンドの標準出力を受けとる事ができます。
...。
@param cmds 実行するコマンドのリストを指定します。それぞれのコマンドは
以下のように String か Array で指定します。
commandline にはコマンド全体(例. "nroff -man")を表す
String を指定します。... -
Open3
. # pipeline _ r(*cmds) {|last _ stdout , wait _ thrs| . . . } -> () (7.0) -
指定したコマンドのリストをパイプで繋いで順番に実行します。最後の コマンドの標準出力を受けとる事ができます。
...。
@param cmds 実行するコマンドのリストを指定します。それぞれのコマンドは
以下のように String か Array で指定します。
commandline にはコマンド全体(例. "nroff -man")を表す
String を指定します。... -
Open3
. # pipeline _ rw(*cmds) -> [IO , IO , [Thread]] (7.0) -
指定したコマンドのリストをパイプで繋いで順番に実行します。最初の コマンドの標準入力に書き込む事も最後のコマンドの標準出力を受けとる事も できます。
...。
@param cmds 実行するコマンドのリストを指定します。それぞれのコマンドは
以下のように String か Array で指定します。
commandline にはコマンド全体(例. "nroff -man")を表す
String を指定します。... -
Open3
. # pipeline _ rw(*cmds) {|first _ stdin , last _ stdout , wait _ thrs| . . . } -> () (7.0) -
指定したコマンドのリストをパイプで繋いで順番に実行します。最初の コマンドの標準入力に書き込む事も最後のコマンドの標準出力を受けとる事も できます。
...。
@param cmds 実行するコマンドのリストを指定します。それぞれのコマンドは
以下のように String か Array で指定します。
commandline にはコマンド全体(例. "nroff -man")を表す
String を指定します。... -
Open3
. # pipeline _ start(*cmds) -> [Thread] (7.0) -
指定したコマンドのリストをパイプで繋いで順番に実行します。
...。
@param cmds 実行するコマンドのリストを指定します。それぞれのコマンドは
以下のように String か Array で指定します。
commandline にはコマンド全体(例. "nroff -man")を表す
String を指定します。...