るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.038秒)
トップページ > バージョン:2.2.0[x] > クエリ:File[x] > クエリ:start_profile[x]

別のキーワード

  1. smtp start
  2. net/smtp start
  3. pop3 start
  4. pop start
  5. http start

ライブラリ

モジュール

検索結果

Profiler__.#start_profile -> object (81604.0)

プロファイルの取得を開始します。

プロファイルの取得を開始します。

Profiler__ (18085.0)

プロファイラの実装です。 Profiler__.start_profile 実行から、Profiler__.stop_profile までの 区間の実行コードのプロファイルを取得します。

プロファイラの実装です。
Profiler__.start_profile 実行から、Profiler__.stop_profile までの
区間の実行コードのプロファイルを取得します。

以下の使用例を参照してください。

require 'profiler'

Profiler__.start_profile
require 'tk' # このコードのプロファイルが測定される
Profiler__.print_profile(STDOUT)

# =>
% cumulative self self ...