905件ヒット
[1-100件を表示]
(0.083秒)
ライブラリ
- ビルトイン (258)
- continuation (12)
-
irb
/ cmd / chws (24) -
irb
/ context (12) -
irb
/ extend-command (12) - json (24)
- observer (12)
- openssl (12)
- rake (12)
-
rubygems
/ dependency (12) -
rubygems
/ platform (12) -
rubygems
/ specification (12) - socket (72)
- thwait (54)
-
win32
/ registry (240)
クラス
- Data (6)
-
Gem
:: Dependency (12) -
Gem
:: Platform (12) -
Gem
:: Specification (12) -
IRB
:: Context (12) -
IRB
:: ExtendCommand :: CurrentWorkingWorkspace (12) -
JSON
:: State (24) -
OpenSSL
:: X509 :: StoreContext (12) - Socket (24)
- Thread (221)
- ThreadsWait (54)
-
Win32
:: Registry (132)
モジュール
-
IRB
:: ExtendCommandBundle (12) - Kernel (7)
- Process (12)
-
Rake
:: TaskManager (12) -
Socket
:: Constants (48) -
Win32
:: Registry :: Constants (108)
キーワード
-
$ SAFE (7) -
CURRENT
_ SPECIFICATION _ VERSION (12) - Continuation (12)
- CurrentWorkingWorkspace (12)
-
HKEY
_ CLASSES _ ROOT (24) -
HKEY
_ CURRENT _ CONFIG (24) -
HKEY
_ CURRENT _ USER (24) -
HKEY
_ DYN _ DATA (24) -
HKEY
_ LOCAL _ MACHINE (24) -
HKEY
_ PERFORMANCE _ DATA (24) -
HKEY
_ PERFORMANCE _ NLSTEXT (24) -
HKEY
_ PERFORMANCE _ TEXT (24) -
HKEY
_ USERS (24) -
IPV6
_ PATHMTU (24) -
IPV6
_ RECVPATHMTU (24) -
IP
_ IPSEC _ POLICY (12) -
MSG
_ RCVMORE (12) -
NEWS for Ruby 2
. 0 . 0 (12) -
NEWS for Ruby 2
. 1 . 0 (12) -
NEWS for Ruby 3
. 0 . 0 (5) - Observable (12)
- TYPES (12)
- ThreadGroup (12)
- [] (12)
- alive? (12)
-
all
_ waits (18) -
buffer
_ initial _ length (12) - current (12)
-
current
_ cert (12) -
current
_ scope (12) - define (6)
- depth (12)
- drb (12)
- empty? (6)
- exec (12)
- execute (12)
- fetch (8)
- finished? (6)
- group (12)
- inspect (12)
-
install
_ extend _ commands (12) - irb (12)
- join (6)
-
join
_ nowait (6) - key? (12)
- keys (12)
- name (12)
- new (6)
- priority (12)
- priority= (12)
-
rb
_ thread _ current (12) - rdoc (12)
-
report
_ on _ exception (9) -
report
_ on _ exception= (9) -
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 4 feature (12) -
rubygems
/ commands / lock _ command (12) -
safe
_ level (7) -
set
_ trace _ func (12) - status (12)
- stop? (12)
- thread (12)
-
thread
_ variable? (12) -
thread
_ variable _ get (12) -
thread
_ variable _ set (12) - threads (6)
-
to
_ s (20) - パターンマッチ (12)
検索結果
先頭5件
-
Gem
:: Platform :: CURRENT -> String (21101.0) -
特定のプラットフォーム向けの Gem をビルドするときに使用します。
特定のプラットフォーム向けの Gem をビルドするときに使用します。 -
Gem
:: Specification :: CURRENT _ SPECIFICATION _ VERSION -> 2 (15201.0) -
現在の gemspec のバージョンを表す定数です。
現在の gemspec のバージョンを表す定数です。 -
VALUE rb
_ thread _ current(void) (12200.0) -
現在実行中のスレッドを返します。
現在実行中のスレッドを返します。 -
rubygems
/ commands / lock _ command (12018.0) -
指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために 必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。
...存する Gem を使用するために
必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。
Usage: gem lock GEMNAME-VERSION [GEMNAME-VERSION ...] [options]
Options:
-s, --[no-]strict 依存関係を満たせない場合に失敗します......た設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME ロックする Gem パッケージの名前......'rake', '= 0.7.0.1'
gem 'activesupport', '= 1.2.5'
gem 'activerecord', '= 1.13.2'
gem 'actionpack', '= 1.11.2'
gem 'actionmailer', '= 1.1.5'
gem 'actionwebservice', '= 1.0.0'
Just load lockdown.rb from your application to ensure that the current... -
IRB
:: ExtendCommand :: CurrentWorkingWorkspace (12016.0) -
irb 中の irb_current_working_workspace コマンドのための拡張を定義したク ラスです。
...irb 中の irb_current_working_workspace コマンドのための拡張を定義したク
ラスです。... -
Rake
:: TaskManager # current _ scope -> Array (9207.0) -
現在のスコープを返します。
...現在のスコープを返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
Rake.application.current_scope # => LL()
end
//}... -
Thread
. current -> Thread (9207.0) -
現在実行中のスレッド(カレントスレッド)を返します。
...現在実行中のスレッド(カレントスレッド)を返します。
p Thread.current #=> #<Thread:0x4022e6fc run>... -
Thread
# thread _ variable _ get(key) -> object | nil (9124.0) -
引数 key で指定した名前のスレッドローカル変数を返します。
...ad#[] でセットしたローカル変数(Fiber ローカル変数)と
異なり、Fiber を切り替えても同じ変数を返す事に注意してください。
例:
Thread.new {
Thread.current.thread_variable_set("foo", "bar") # スレッドローカル
Thread.current["foo"] = "ba......Thread.current.thread_variable_get("foo"), # スレッドローカル
Thread.current["foo"], # Fiber ローカル
]
}.resume
}.join.value # => ['bar', nil]
この例の "bar" は Thread#thread_variable_get により得られ
た値で、nil はThread#[]......により得られた値です。
@see Thread#thread_variable_set, Thread#[]
@see https://magazine.rubyist.net/articles/0041/0041-200Special-note.html... -
Thread
# thread _ variable?(key) -> bool (9112.0) -
引数 key で指定した名前のスレッドローカル変数が存在する場合に true、そ うでない場合に false を返します。
...でない場合に false を返します。
@param key 変数名を String か Symbol で指定します。
me = Thread.current
me.thread_variable_set(:oliver, "a")
me.thread_variable?(:oliver) # => true
me.thread_variable?(:stanley) # => false
[注意]: Thread#[] でセット......したローカル変数(Fiber ローカル変数)が
対象ではない事に注意してください。
@see Thread#thread_variable_get, Thread#[]...