るりまサーチ

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

別のキーワード

  1. open3 popen2e
  2. socket af_e164
  3. matrix det_e
  4. matrix rank_e
  5. open3 capture2e

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

Resolv::DNS::Resource::IN::SRV#port -> Integer (24202.0)

対象のサービスの対象のホストにおけるポート番号を返します。

対象のサービスの対象のホストにおけるポート番号を返します。

CGI::QueryExtension#server_port -> Integer (21418.0)

ENV['SERVER_PORT'] を返します。

...
E
NV['SERVER_PORT'] を返します。...

Net::HTTP#port -> Integer (21202.0)

接続するポート番号を返します。

接続するポート番号を返します。

Net::POP3#port -> Integer (21202.0)

接続するポート番号です。

接続するポート番号です。

Net::SMTP#port -> Integer (21202.0)

接続先のポート番号を返します。

接続先のポート番号を返します。

絞り込み条件を変える

URI::Generic#port -> String | nil (21118.0)

自身の port を文字列で返します。設定されていない場合は nil を返します。

...自身の port を文字列で返します。設定されていない場合は nil を返します。...

RSS::Rss::Channel::Cloud#port (21103.0)

@todo

@todo

WEBrick::HTTPRequest#port -> String (21102.0)

サーバのポートを文字列で返します。

サーバのポートを文字列で返します。

Thread#report_on_exception -> bool (15301.0)

真の場合、そのスレッドが例外によって終了した時に、その内容を $stderr に報告します。

...tderr に報告します。

デフォルトはスレッド作成時の Thread.report_on_exception です。

@param newstate スレッド実行中に例外発生した場合、その内容を報告するかどうかを true か false で指定します。

//emlist[例][ruby]{
a = Thread.new{ Threa...
...p; raise }
a.report_on_exception = true
a.report_on_exception # => true
a.run
# => #<Thread:0x00007fc3f48c7908@(irb):1 run> terminated with exception (report_on_exception is true):
# Traceback (most recent call last):
# (irb):1:in `block in irb_binding': unhandled exception
# #<Thread:0x0...
...0007fc3f48c7908@(irb):1 dead>
b = Thread.new{ Thread.stop; raise }
b.report_on_exception = false
b.run # => #<Thread:0x00007fc3f48aefc0@(irb):4 dead>
//}

@see Thread.report_on_exception...
<< 1 2 3 ... > >>