192件ヒット
[101-192件を表示]
(0.025秒)
別のキーワード
ライブラリ
- ビルトイン (24)
-
rubygems
/ defaults (24) -
rubygems
/ dependency _ installer (12) -
rubygems
/ doc _ manager (12) -
rubygems
/ source _ info _ cache (108) -
rubygems
/ source _ info _ cache _ entry (12)
クラス
-
Gem
:: DependencyInstaller (12) -
Gem
:: DocManager (12) -
Gem
:: SourceInfoCache (108) -
Gem
:: SourceInfoCacheEntry (12) -
RubyVM
:: InstructionSequence (24)
モジュール
- Gem (24)
キーワード
-
cache
_ data (12) -
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 (24)
- reset (12)
- search (12)
-
search
_ with _ source (12) -
system
_ cache _ file (12) -
update
_ ri _ cache (12) -
user
_ cache _ file (12)
検索結果
先頭5件
-
Gem
:: DocManager . update _ ri _ cache (6102.0) -
RDoc 2 がインストールされている場合は RI のキャッシュを更新します。 そうでない場合は何もしません。
RDoc 2 がインストールされている場合は RI のキャッシュを更新します。
そうでない場合は何もしません。 -
Gem
:: SourceInfoCacheEntry . new(si , size) -> Gem :: SourceInfoCacheEntry (3101.0) -
キャッシュのエントリを作成します。
キャッシュのエントリを作成します。
@param si Gem::SourceIndex のインスタンスを指定します。
@param size エントリのサイズを指定します。 -
Gem
:: SourceInfoCache . reset -> nil (3001.0) -
自身の内容をクリアします。
自身の内容をクリアします。 -
Gem
:: SourceInfoCache . search(*args) -> [Gem :: Specification] (3001.0) -
与えられた条件を満たす Gem::Specification のリストを返します。
...与えられた条件を満たす Gem::Specification のリストを返します。
@param args 検索条件を指定します。Gem::SourceInfoCache#search と引数を合わせてください。
@see Gem::SourceInfoCache#search... -
Gem
:: SourceInfoCache . search _ with _ source(*args) -> Array (3001.0) -
与えられた条件を満たす Gem::Specification と URL のリストを返します。
...与えられた条件を満たす Gem::Specification と URL のリストを返します。
@param args 検索条件を指定します。Gem::SourceInfoCache#search_with_source と引数を合わせてください。
@see Gem::SourceInfoCache#search_with_source... -
Gem
:: DependencyInstaller . new(options = {}) -> Gem :: DependencyInstaller (7.0) -
自身を初期化します。
...自身を初期化します。
オプションとして以下のものを利用できます。
: :cache_dir
*.gem ファイルを保存するディレクトリを指定します。
: :domain
:local (カレントディレクトリのみ検索します), :remote (Gem.sources を検索します)... -
RubyVM
:: InstructionSequence . compile _ option -> Hash (7.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... -
RubyVM
:: InstructionSequence . compile _ option=(options) (7.0) -
命令シーケンスのコンパイル時のデフォルトの最適化オプションを引数 options で指定します。
...キーに対して、true か false を指定する事で個
別に有効、無効を指定します。
//emlist{
* :inline_const_cache
* :instructions_unification
* :operands_unification
* :peephole_optimization
* :specialized_instruction
* :stack_caching
* :tailcall_op...
