629件ヒット
[601-629件を表示]
(0.051秒)
ライブラリ
- ビルトイン (258)
- drb (72)
-
irb
/ cmd / chws (24) -
irb
/ context (12) -
irb
/ extend-command (12) - json (12)
-
rdoc
/ context (24) -
rubygems
/ dependency (12) - thwait (54)
-
win32
/ registry (48)
クラス
- Data (6)
-
Gem
:: Dependency (12) -
IRB
:: Context (12) -
IRB
:: ExtendCommand :: CurrentWorkingWorkspace (12) -
JSON
:: State (12) -
RDoc
:: Context (24) - Thread (221)
- ThreadsWait (54)
-
Win32
:: Registry (24)
モジュール
- DRb (60)
-
IRB
:: ExtendCommandBundle (12) - Kernel (7)
- Process (12)
-
Win32
:: Registry :: Constants (24)
キーワード
-
$ SAFE (7) - CurrentWorkingWorkspace (12)
- DRbServerNotFound (12)
-
HKEY
_ DYN _ DATA (24) -
HKEY
_ PERFORMANCE _ DATA (24) -
NEWS for Ruby 3
. 0 . 0 (5) - TYPES (12)
- ThreadGroup (12)
- [] (12)
- alive? (12)
-
all
_ waits (18) - config (12)
-
current
_ section (12) -
current
_ server (12) - define (6)
- depth (12)
- drb (12)
- empty? (6)
- exec (12)
- execute (12)
- fetch (8)
- finished? (6)
- front (12)
- group (12)
- here? (12)
- inspect (12)
-
install
_ extend _ commands (12) - irb (12)
-
irb
/ cmd / chws (12) - join (6)
-
join
_ nowait (6) - key? (12)
- keys (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
_ current _ section (12) -
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 (8) - uri (12)
検索結果
-
ruby 1
. 8 . 4 feature (36.0) -
ruby 1.8.4 feature ruby 1.8.4 での ruby 1.8.3 からの変更点です。
...されたクラス/メソッドなど
* [compat]: 変更されたクラス/メソッドなど
* 互換性のある変更
* only backward-compatibility
* 影響の範囲が小さいと思われる変更もこちら
* [change]: 変更されたクラス/メソッドなど(互換......ure/UnboundMethod#bind [bug]>))
* ((<ruby 1.8.4 feature/set_trace_func [bug]>))
* ((<ruby 1.8.4 feature/set_trace_func [change]>))
* ((<ruby 1.8.4 feature/printf [bug]>))
* ((<ruby 1.8.4 feature/Hash [bug]>))
* ((<ruby 1.8.4 feature/test [bug]>))
* ((<ruby 1.8.4 feature/File.identical? [......再acceptがErrno::EADDRINUSE
例外になっていなかった。((<ruby-core:6765>)),((<ruby-bugs:2872>)),((<ruby-dev:27818>))
: optparse
#Tue Nov 22 23:52:06 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
#
# * lib/optparse.rb: match incomplete (in current enconding) multibyte
#... -
NEWS for Ruby 3
. 0 . 0 (24.0) -
NEWS for Ruby 3.0.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。
...語仕様の変更
* Keyword arguments are now separated from positional arguments.
Code that resulted in deprecation warnings in Ruby 2.7 will now
result in ArgumentError or different behavior. 14183
* Procs accepting a single rest argument and keywords are no longer
subject to aut......t argument and no keywords.
16166
//emlist[][ruby]{
pr = proc{|*a, **kw| [a, kw]}
pr.call([1])
# 2.7 => [[1], {}]
# 3.0 => [[[1]], {}]
pr.call([1, {a: 1}])
# 2.7 => [[1], {:a=>1}] # and deprecation warning
# 3.0 => a=>1}, {}]
//}
* Arguments forwarding (`...`) now supports leading argument......a lambda Proc. 16260
* Symbol#name has been added, which returns the name of the symbol if it is named. The returned string is frozen. 16150
* Fiber
* Introduce Fiber.set_scheduler for intercepting blocking operations and Fiber.scheduler for accessing the current scheduler. See rdoc-ref... -
ruby 1
. 6 feature (18.0) -
ruby 1.6 feature ruby version 1.6 は安定版です。この版での変更はバグ修正がメイン になります。
...LDBLOCK が同じ値のシステムで、EWOULDBLOCK がなくなっ
ていました。現在は、このようなシステムでは、EWOULDBLOCK は、EAGAIN
として定義されています。(これは 1.6.7 とは異なる挙動です)
p Errno::EAGAIN
p Errno::EWOULDB......> ruby 1.6.7 (2002-03-01) [i586-linux]
Errno::EAGAIN
Errno::EWOULDBLOCK
=> ruby 1.6.8 (2002-12-24) [i586-linux]
Errno::EAGAIN
-:2: uninitialized constant EWOULDBLOCK at Errno (NameError)
=> ruby 1.6.8 (2003-02-13) [i586-linux]......or had a potential security risk because a
foo.rb (if exists) in the current directory is located prior to a
foo.so in $prefix/lib/ruby/site_ruby/$ver/$arch.
((<ruby-bugs:PR#140>)), ((<ruby-ext:01778>)), ((<ruby-dev:13659>))
: sync
: mutex_m
Fixed for obj.extend(Sync_m) and obj.extend(Mut... -
Kernel
$ $ SAFE -> Integer (12.0) -
カレントプロセスのセーフレベルを表す整数です。
...スレッドのセーフレベルを表す整数です。
セーフレベルについてはspec/safelevel を参照してください。
Thread.current.safe_level と同じです。
非整数を代入しようとすると TypeError が発生します。
この変数はスレッドローカルで......プロセスのセーフレベルを表す整数です。
セーフレベルについてはspec/safelevel を参照してください。
Thread.current.safe_level と同じです。
非整数を代入しようとすると TypeError が発生します。
この変数はグローバルスコープ...