るりまサーチ

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

別のキーワード

  1. tms cstime
  2. tms utime
  3. tms cutime
  4. tms format

ライブラリ

クラス

キーワード

検索結果

Benchmark::Tms#stime -> Float (21102.0)

System CPU time

System CPU time

Process::Tms#stime -> Float (21102.0)

システム CPU 時間を返します。

システム CPU 時間を返します。

Process::Tms#stime=(n) (9102.0)

システム CPU 時間をセットします。

システム CPU 時間をセットします。

Benchmark::Tms#cstime -> Float (9101.0)

子プロセスの System CPU time

子プロセスの System CPU time

Process::Tms#cstime -> Float (9101.0)

終了した子プロセスのシステム CPU 時間の合計(秒)を返します。

終了した子プロセスのシステム CPU 時間の合計(秒)を返します。

Windows 上では常に 0 を返します。

絞り込み条件を変える

Process::Tms#cstime=(n) (9101.0)

終了した子プロセスのシステム CPU 時間の合計(秒)をセットします。

終了した子プロセスのシステム CPU 時間の合計(秒)をセットします。

Benchmark::Tms#format(fmtstr = nil, *args) -> String (3055.0)

self を指定されたフォーマットで整形して返します。

...::Tms#utime
: %y
system CPU time で置き換えられます(Mnemonic: y of "s*y*stem")。Benchmark::Tms#stime
: %U
子プロセスの user CPU time で置き換えられます。Benchmark::Tms#cutime
: %Y
子プロセスの system CPU time で置き換えられます。Benchmark::Tms#cstime
:...
...enchmark::Tms#total
: %r
実経過時間で置き換えられます。Benchmark::Tms#real
: %n
ラベルで置き換えられます(Mnemonic: n of "*n*ame")。Benchmark::Tms#label

@param fmtstr フォーマット文字列です。
省略された場合は、Benchmark::Tms::FORMAT...

Benchmark::Tms#total -> Float (3017.0)

合計時間。(utime + stime + cutime + cstime)

...合計時間。(utime + stime + cutime + cstime)...