るりまサーチ (Ruby 2.4.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.037秒)
トップページ > バージョン:2.4.0[x] > クエリ:File[x] > クエリ:$stdout[x] > モジュール:GC::Profiler[x]

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file lstat
  4. file atime
  5. file mtime

ライブラリ

検索結果

GC::Profiler.report(out = $stdout) -> nil (9325.0)

GC::Profiler.result の結果を out に出力します。

...
GC::Profiler
.result の結果を out に出力します。

@param out 結果の出力先を指定します。デフォルトは $stdout です。

//emlist[例][ruby]{
GC::Profiler
.enable
GC.start
GC::Profiler
.report

# => GC 4 invokes.
# Index Invoke Time(sec) Use Size(byte) Total Si...
...ze(byte) Total Object GC Time(ms)
# 1 0.019 303720 1269840 31746 1.25899999999999967493
//}

@see GC::Profiler.result...