138件ヒット
[101-138件を表示]
(0.073秒)
ライブラリ
- ビルトイン (48)
- benchmark (48)
- mkmf (12)
- pathname (12)
- shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6)
クラス
-
Benchmark
:: Tms (48) - Pathname (12)
-
Process
:: Tms (48) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6)
モジュール
- Kernel (12)
検索結果
先頭4件
-
Process
:: Tms # cutime=(n) (6101.0) -
終了した子プロセスのユーザー CPU 時間の合計(秒)をセットします。
終了した子プロセスのユーザー CPU 時間の合計(秒)をセットします。 -
Benchmark
:: Tms # total -> Float (17.0) -
合計時間。(utime + stime + cutime + cstime)
...合計時間。(utime + stime + cutime + cstime)... -
Kernel
# create _ header(header = "extconf . h") -> String (13.0) -
Kernel#have_func, Kernel#have_header などの検査結果を元に、 ヘッダファイルを生成します。
...# extconf.rb
require 'mkmf'
have_func('realpath')
have_header('sys/utime.h')
create_header
create_makefile('foo')
上の extconf.rb は以下の extconf.h を生成します。
#ifndef EXTCONF_H
#define EXTCONF_H
#define HAVE_REALPATH 1
#define HAVE_SYS_UTIME_H 1
#endif... -
Benchmark
:: Tms # format(fmtstr = nil , *args) -> String (7.0) -
self を指定されたフォーマットで整形して返します。
...r CPU time で置き換えられます。Benchmark::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
: %t
total CPU time で置き換えられます。Benchmark::Tms#total
: %r
実経過時間で置き換えられます。Benchmark::Tms#real
: %n
ラベルで置き換えられます(Mnemonic: n of "*n*ame")。Benchmark::Tms#label
@param fmtstr...