2件ヒット
[1-2件を表示]
(0.156秒)
検索結果
-
Thread
. report _ on _ exception -> bool (117478.0) -
真の時は、いずれかのスレッドが例外によって終了した時に、その内容を $stderr に報告します。
真の時は、いずれかのスレッドが例外によって終了した時に、その内容を $stderr に報告します。
デフォルトは true です。
```ruby
Thread.new { 1.times { raise } }
```
は $stderr に以下のように出力します:
```text
#<Thread:...> terminated with exception (report_on_exception is true):
Traceback (most recent call last):
2: from -e:1:in 'block in <main>'
1: from -e:1... -
Thread
. report _ on _ exception=(newstate) (81478.0) -
真の時は、いずれかのスレッドが例外によって終了した時に、その内容を $stderr に報告します。
真の時は、いずれかのスレッドが例外によって終了した時に、その内容を $stderr に報告します。
デフォルトは true です。
```ruby
Thread.new { 1.times { raise } }
```
は $stderr に以下のように出力します:
```text
#<Thread:...> terminated with exception (report_on_exception is true):
Traceback (most recent call last):
2: from -e:1:in 'block in <main>'
1: from -e:1...
