858件ヒット
[1-100件を表示]
(0.121秒)
ライブラリ
- ビルトイン (18)
- benchmark (48)
-
cgi
/ core (12) -
fiddle
/ import (120) -
net
/ ftp (12) -
net
/ http (48) - openssl (144)
- resolv (12)
- resolv-replace (36)
- rss (24)
-
rubygems
/ user _ interaction (48) -
shell
/ system-command (12) - socket (144)
- uri (36)
-
webrick
/ httprequest (12) -
webrick
/ httpserver (24) -
webrick
/ httpservlet / abstract (72) -
webrick
/ server (12)
クラス
- Addrinfo (60)
-
Benchmark
:: Job (12) -
Benchmark
:: Report (36) -
Gem
:: StreamUI (12) -
Gem
:: StreamUI :: SilentProgressReporter (12) -
Gem
:: StreamUI :: SimpleProgressReporter (12) -
Gem
:: StreamUI :: VerboseProgressReporter (12) - IPSocket (24)
-
Net
:: FTP (12) -
Net
:: HTTP (48) -
OpenSSL
:: PKey :: DSA (72) -
OpenSSL
:: PKey :: RSA (72) -
RDoc
:: Options (24) -
RSS
:: Rss :: Channel :: Cloud (24) -
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 (120)
キーワード
- [] (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) - export (48)
- extern (12)
-
import
_ symbol (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) - recvfrom (12)
- report (24)
-
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 (48) -
to
_ s (48) - union (12)
- value (12)
-
virtual
_ host (12)
検索結果
先頭5件
-
URI
:: Generic # port -> String | nil (21118.0) -
自身の port を文字列で返します。設定されていない場合は nil を返します。
...自身の port を文字列で返します。設定されていない場合は nil を返します。... -
RSS
:: Rss :: Channel :: Cloud # port (21103.0) -
@todo
@todo -
Resolv
:: DNS :: Resource :: IN :: SRV # port -> Integer (21102.0) -
対象のサービスの対象のホストにおけるポート番号を返します。
対象のサービスの対象のホストにおけるポート番号を返します。 -
WEBrick
:: HTTPRequest # port -> String (21102.0) -
サーバのポートを文字列で返します。
サーバのポートを文字列で返します。 -
Net
:: HTTP # local _ port=(port) (12321.0) -
接続に用いるローカルポートを設定します。
...@param port ローカルポート(数値、もしくはサービス名文字列)
//emlist[例][ruby]{
require 'net/http'
http = Net::HTTP.new("www.example.com")
http.local_host = "192.168.0.5"
http.local_port = "53043"
http.start do |h|
p h.get("/").body
end
//}
@see Net::HTTP#local_port=, Net......::HTTP#local_host
@see Net::HTTP.new... -
Thread
# report _ on _ exception -> bool (12213.0) -
真の場合、そのスレッドが例外によって終了した時に、その内容を $stderr に報告します。
...Thread.report_on_exception です。
@param newstate スレッド実行中に例外発生した場合、その内容を報告するかどうかを true か false で指定します。
//emlist[例][ruby]{
a = Thread.new{ Thread.stop; raise }
a.report_on_exception = true
a.report_on_exception #......d: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:0x00007fc3f48c7908@(irb):1 dead>
b = Thread.new{ Thread.stop; raise }
b.report_on_exception = f......alse
b.run # => #<Thread:0x00007fc3f48aefc0@(irb):4 dead>
//}
@see Thread.report_on_exception... -
Thread
# report _ on _ exception=(newstate) (12213.0) -
真の場合、そのスレッドが例外によって終了した時に、その内容を $stderr に報告します。
...Thread.report_on_exception です。
@param newstate スレッド実行中に例外発生した場合、その内容を報告するかどうかを true か false で指定します。
//emlist[例][ruby]{
a = Thread.new{ Thread.stop; raise }
a.report_on_exception = true
a.report_on_exception #......d: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:0x00007fc3f48c7908@(irb):1 dead>
b = Thread.new{ Thread.stop; raise }
b.report_on_exception = f......alse
b.run # => #<Thread:0x00007fc3f48aefc0@(irb):4 dead>
//}
@see Thread.report_on_exception... -
Net
:: HTTP # local _ port -> nil | Integer | String (12208.0) -
接続に用いるローカルポートを返します。
...接続に用いるローカルポートを返します。
nil の場合システムが適当にローカルポートを
決めます。
デフォルトは nil です。
@see Net::HTTP#local_port=, Net::HTTP#local_host... -
RDoc
:: Options # coverage _ report -> Integer | false (12201.0) -
コマンドライン引数の --coverage-report オプションを指定していた場合、指 定した数値を返します。
...コマンドライン引数の --coverage-report オプションを指定していた場合、指
定した数値を返します。
指定しなかった場合は false を返します。...