132件ヒット
[1-100件を表示]
(0.066秒)
ライブラリ
- ビルトイン (24)
-
rubygems
/ defaults (24) -
rubygems
/ dependency _ installer (12) -
rubygems
/ source _ info _ cache (72)
クラス
モジュール
- Gem (24)
キーワード
-
compile
_ option (12) -
compile
_ option= (12) -
default
_ system _ source _ cache _ dir (12) -
default
_ user _ source _ cache _ dir (12) -
latest
_ system _ cache _ file (12) -
latest
_ user _ cache _ file (12) - new (12)
- reset (12)
-
system
_ cache _ file (12) -
user
_ cache _ file (12)
検索結果
先頭5件
-
Gem
:: SourceInfoCache . cache(all = false) -> Gem :: SourceInfoCache (21302.0) -
自身のインスタンスを生成するためのメソッドです。
...自身のインスタンスを生成するためのメソッドです。
@param all 真を指定すると、インスタンス生成時に全てのキャッシュを再作成します。... -
Gem
:: SourceInfoCache . latest _ system _ cache _ file -> String (15202.0) -
最新のシステムキャッシュのファイル名を返します。
最新のシステムキャッシュのファイル名を返します。 -
Gem
:: SourceInfoCache . latest _ user _ cache _ file -> String (15202.0) -
最新のユーザーキャッシュのファイル名を返します。
最新のユーザーキャッシュのファイル名を返します。 -
Gem
:: SourceInfoCache . system _ cache _ file -> String (15202.0) -
システムキャッシュのファイル名を返します。
システムキャッシュのファイル名を返します。 -
Gem
:: SourceInfoCache . user _ cache _ file -> String (15202.0) -
ユーザーキャッシュのファイル名を返します。
ユーザーキャッシュのファイル名を返します。 -
Gem
. default _ system _ source _ cache _ dir -> String (12202.0) -
デフォルトのシステム全体のソースキャッシュファイルのパスを返します。
デフォルトのシステム全体のソースキャッシュファイルのパスを返します。 -
Gem
. default _ user _ source _ cache _ dir -> String (12202.0) -
デフォルトのユーザ専用のソースキャッシュファイルのパスを返します。
デフォルトのユーザ専用のソースキャッシュファイルのパスを返します。 -
RubyVM
:: InstructionSequence . compile _ option -> Hash (6107.0) -
命令シーケンスのコンパイル時のデフォルトの最適化オプションを Hash で返 します。
...emlist[例][ruby]{
require "pp"
pp RubyVM::InstructionSequence.compile_option
# => {:inline_const_cache=>true,
# :peephole_optimization=>true,
# :tailcall_optimization=>false,
# :specialized_instruction=>true,
# :operands_unification=>true,
# :instructions_unification=>false,
# :stack_caching=>fals......e,
# :trace_instruction=>true,
# :frozen_string_literal=>false,
# :debug_frozen_string_literal=>false,
# :coverage_enabled=>true,
# :debug_level=>0}
//}
@see RubyVM::InstructionSequence.compile_option=... -
RubyVM
:: InstructionSequence . compile _ option=(options) (6107.0) -
命令シーケンスのコンパイル時のデフォルトの最適化オプションを引数 options で指定します。
...ョンを true、false、nil、
Hash のいずれかで指定します。true を指定した場合は
全てのオプションを有効にします。false を指定した場合は全
てのオプションを無効にします。nil を指定した場合......て、true か false を指定する事で個
別に有効、無効を指定します。
//emlist{
* :inline_const_cache
* :instructions_unification
* :operands_unification
* :peephole_optimization
* :specialized_instruction
* :stack_caching
* :tailcall_optimization
*......:trace_instruction
//}
:debug_level をキーに指定した場合は値を数値で指定します。
.new、.compile、.compile_file メソッドの実行の際に option 引数を指定し
た場合はその実行のみ最適化オプションを変更する事もできます。...