るりまサーチ

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

別のキーワード

  1. sourceinfocache cache_data
  2. sourceinfocache user_cache_file
  3. sourceinfocache system_cache_file
  4. rubygems/source_info_cache search
  5. rubygems/source_info_cache cache_data

検索結果

Gem::SourceInfoCache.cache(all = false) -> Gem::SourceInfoCache (21208.0)

自身のインスタンスを生成するためのメソッドです。

...自身のインスタンスを生成するためのメソッドです。

@
param all 真を指定すると、インスタンス生成時に全てのキャッシュを再作成します。...

Gem::SourceInfoCacheEntry.new(si, size) -> Gem::SourceInfoCacheEntry (3113.0)

キャッシュのエントリを作成します。

...キャッシュのエントリを作成します。

@
param si Gem::SourceIndex のインスタンスを指定します。

@
param size エントリのサイズを指定します。...

Gem::SourceInfoCache.search(*args) -> [Gem::Specification] (3013.0)

与えられた条件を満たす Gem::Specification のリストを返します。

...与えられた条件を満たす Gem::Specification のリストを返します。

@
param args 検索条件を指定します。Gem::SourceInfoCache#search と引数を合わせてください。

@
see Gem::SourceInfoCache#search...

Gem::SourceInfoCache.search_with_source(*args) -> Array (3013.0)

与えられた条件を満たす Gem::Specification と URL のリストを返します。

...与えられた条件を満たす Gem::Specification と URL のリストを返します。

@
param args 検索条件を指定します。Gem::SourceInfoCache#search_with_source と引数を合わせてください。

@
see Gem::SourceInfoCache#search_with_source...

RubyVM::InstructionSequence.compile_option=(options) (19.0)

命令シーケンスのコンパイル時のデフォルトの最適化オプションを引数 options で指定します。

...命令シーケンスのコンパイル時のデフォルトの最適化オプションを引数
options で指定します。

@
param options コンパイル時の最適化オプションを true、false、nil、
Hash のいずれかで指定します。true を指定した場合は...
...キーに対して、true か false を指定する事で個
別に有効、無効を指定します。
//emlist{
* :inline_const_cache
* :instructions_unification
* :operands_unification
* :peephole_optimization
* :specialized_instruction
* :stack_caching
* :tailcall_op...
...compile、.compile_file メソッドの実行の際に option 引数を指定し
た場合はその実行のみ最適化オプションを変更する事もできます。

@
see RubyVM::InstructionSequence.new,
RubyVM::InstructionSequence.compile,
RubyVM::InstructionSequence.compile_file...

絞り込み条件を変える

Gem::DependencyInstaller.new(options = {}) -> Gem::DependencyInstaller (13.0)

自身を初期化します。

...自身を初期化します。

オプションとして以下のものを利用できます。

: :cache_dir
*.gem ファイルを保存するディレクトリを指定します。
: :domain
:local (カレントディレクトリのみ検索します), :remote (Gem.sources を検索します)...
...トールしようとしますが、
警告を表示します。
: :wrappers
真を指定するとラッパーをインストールします。
偽を指定すると、シンボリックリンクをインストールします。

@
see Gem::Installer.new, Gem::Installer#install, Gem::Security...

RubyVM::InstructionSequence.compile_option -> Hash (13.0)

命令シーケンスのコンパイル時のデフォルトの最適化オプションを Hash で返 します。

...オプションを 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,
# :instruct...
...ions_unification=>false,
# :stack_caching=>false,
# :trace_instruction=>true,
# :frozen_string_literal=>false,
# :debug_frozen_string_literal=>false,
# :coverage_enabled=>true,
# :debug_level=>0}
//}

@
see RubyVM::InstructionSequence.compile_option=...