1176件ヒット
[1-100件を表示]
(0.214秒)
ライブラリ
- ビルトイン (22)
- benchmark (48)
-
cgi
/ core (12) -
fiddle
/ import (132) -
minitest
/ unit (2) -
net
/ ftp (12) -
net
/ http (156) -
net
/ pop (12) -
net
/ smtp (12) - openssl (180)
- rake (24)
- resolv (12)
- resolv-replace (36)
- rss (24)
-
rubygems
/ user _ interaction (120) -
shell
/ system-command (12) - socket (168)
- un (12)
- uri (36)
-
webrick
/ httprequest (12) -
webrick
/ httpserver (24) -
webrick
/ httpservlet / abstract (72) -
webrick
/ server (12)
クラス
- Addrinfo (84)
-
Benchmark
:: Job (12) -
Benchmark
:: Report (36) -
Gem
:: StreamUI (12) -
Gem
:: StreamUI :: SilentProgressReporter (36) -
Gem
:: StreamUI :: SimpleProgressReporter (36) -
Gem
:: StreamUI :: VerboseProgressReporter (36) - IPSocket (24)
-
MiniTest
:: Unit (2) -
Net
:: FTP (12) -
Net
:: HTTP (132) -
Net
:: HTTPResponse (24) -
Net
:: POP3 (12) -
Net
:: SMTP (12) -
OpenSSL
:: PKey :: DH (36) -
OpenSSL
:: PKey :: DSA (72) -
OpenSSL
:: PKey :: RSA (72) -
RDoc
:: Options (24) -
RSS
:: Rss :: Channel :: Cloud (24) -
Rake
:: FileList (12) - Refinement (4)
-
Resolv
:: DNS :: Resource :: IN :: SRV (12) -
Shell
:: SystemCommand (12) - Thread (18)
- UDPSocket (96)
-
URI
:: Generic (36) -
WEBrick
:: GenericServer (12) -
WEBrick
:: HTTPRequest (12) -
WEBrick
:: HTTPServer (24) -
WEBrick
:: HTTPServlet :: AbstractServlet (72)
モジュール
-
CGI
:: QueryExtension (12) -
Fiddle
:: Importer (132) - Kernel (24)
キーワード
- [] (12)
- addr (12)
- bind (36)
- connect (36)
-
connect
_ from (24) -
connect
_ to (24) - count (36)
-
coverage
_ report (12) -
coverage
_ report= (12) -
create
_ value (12) -
default
_ port (12) - dlload (12)
-
do
_ DELETE (12) -
do
_ GET (12) -
do
_ HEAD (12) -
do
_ OPTIONS (12) -
do
_ POST (12) -
do
_ PUT (12) - done (36)
- export (60)
- extern (12)
- httpd (12)
- import (24)
-
import
_ methods (4) -
import
_ symbol (12) -
ip
_ address (12) -
ip
_ port (12) -
ip
_ unpack (12) - item (12)
- list (12)
- listen (12)
-
local
_ host (12) -
local
_ host= (12) -
local
_ port (12) -
local
_ port= (12) - mount (12)
- port= (24)
-
progress
_ reporter (12) -
proxy
_ address (12) -
proxy
_ address= (12) -
proxy
_ port (12) -
proxy
_ port= (12) - proxyaddr (12)
- proxyport (12)
-
read
_ body (24) - recvfrom (12)
- report (25)
- report= (1)
-
report
_ on _ exception (9) -
report
_ on _ exception= (9) - send (48)
-
server
_ port (12) - sizeof (12)
-
start
_ export (6) -
start
_ import (6) - struct (12)
-
to
_ pem (60) -
to
_ s (60) - typealias (12)
- union (12)
- updated (36)
- value (12)
-
virtual
_ host (12)
検索結果
先頭5件
-
Resolv
:: DNS :: Resource :: IN :: SRV # port -> Integer (24202.0) -
対象のサービスの対象のホストにおけるポート番号を返します。
対象のサービスの対象のホストにおけるポート番号を返します。 -
CGI
:: QueryExtension # server _ port -> Integer (21418.0) -
ENV['SERVER_PORT'] を返します。
...
ENV['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...