1164件ヒット
[201-300件を表示]
(0.056秒)
ライブラリ
- ビルトイン (96)
- debug (12)
- fileutils (19)
- forwardable (24)
- getoptlong (12)
-
irb
/ context (36) - logger (81)
- mkmf (48)
-
net
/ ftp (24) -
net
/ http (12) -
net
/ imap (24) -
net
/ pop (12) -
net
/ smtp (24) - openssl (24)
-
rdoc
/ markdown (12) - ripper (24)
-
rubygems
/ commands / which _ command (12) - shell (69)
- socket (48)
- syslog (108)
-
syslog
/ logger (24) -
webrick
/ log (36)
クラス
- GetoptLong (12)
-
IRB
:: Context (36) - Logger (69)
-
Net
:: FTP (24) -
Net
:: HTTP (12) -
Net
:: IMAP (24) -
Net
:: POP3 (12) -
Net
:: SMTP (24) -
RDoc
:: Markdown (12) - Ripper (24)
- Shell (69)
- Socket (24)
-
Syslog
:: Logger (24) - Thread (24)
-
WEBrick
:: BasicLog (36)
モジュール
- FileUtils (19)
- Forwardable (24)
- Kernel (108)
-
Logger
:: Severity (12) - OpenSSL (24)
-
Socket
:: Constants (24) - Syslog (96)
-
Syslog
:: Level (12)
キーワード
-
$ -d (12) -
$ DEBUG (12) - DEBUG= (12)
-
DEBUGGER
_ _ (12) -
IFF
_ DEBUG (24) -
LOG
_ DEBUG (12) -
NEWS for Ruby 3
. 0 . 0 (5) -
NEWS for Ruby 3
. 1 . 0 (4) - Rubyの起動 (12)
-
SO
_ DEBUG (24) - Thread (12)
- WhichCommand (12)
- alert (12)
- caller (36)
-
cp
_ lr (7) -
cp
_ r (12) - crit (12)
-
datetime
_ format (12) -
datetime
_ format= (12) - debug (120)
- debug= (48)
- debug? (60)
-
debug
_ level (12) -
debug
_ level= (12) -
debug
_ mode (12) -
debug
_ mode= (12) -
debug
_ output= (12) -
debug
_ output _ exclusive _ unlock (3) -
debug
_ output _ lock (6) -
debug
_ output _ locked? (6) -
debug
_ output _ synchronize (6) -
debug
_ output _ try _ lock (6) -
debug
_ output _ unlock (6) - emerg (12)
-
enable
_ config (24) - err (12)
- info (12)
- irb (12)
- logger (12)
- new (21)
- notice (12)
- rdoc (12)
-
rubygems
/ commands / build _ command (12) -
rubygems
/ commands / cert _ command (12) -
rubygems
/ commands / check _ command (12) -
rubygems
/ commands / cleanup _ command (12) -
rubygems
/ commands / contents _ command (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / environment _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / generate _ index _ command (12) -
rubygems
/ commands / help _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / mirror _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / pristine _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / rdoc _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / server _ command (12) -
rubygems
/ commands / sources _ command (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
rubygems
/ commands / unpack _ command (12) -
set
_ debug _ output (36) - thread (2)
- warning (12)
-
with
_ config (24) - yydebug (12)
- yydebug= (12)
- スレッド (12)
- 制御構造 (12)
検索結果
先頭5件
-
Socket
:: SO _ DEBUG -> Integer (12217.0) -
Debug info recording。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。
...Debug info recording。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。
@see sys/socket.h(header), getsockopt(2freebsd),
socket(7linux), Socket::Constants::SOL_SOCKET... -
WEBrick
:: BasicLog # debug? -> bool (12217.0) -
自身のログレベルが DEBUG 以上の時に true を返します。 そうでない場合に false を返します。
...自身のログレベルが DEBUG 以上の時に true を返します。
そうでない場合に false を返します。... -
IRB
:: Context # debug _ level -> Integer (12213.0) -
irb のデバッグレベルを返します。
...irb のデバッグレベルを返します。
デフォルト値は 0 です。
@see IRB::Context#debug_level=, IRB::Context#debug?... -
Net
:: HTTP # set _ debug _ output(io) -> () (12207.0) -
デバッグ出力の出力先を指定します。 このメソッドは深刻なセキュリティホールの原因 になるため、デバッグ以外では決して使わないでください。
...て使わないでください。
io に nil を指定するとデバッグ出力を止めます。
@param io 出力先を指定します。このオブジェクトは
メソッド << を持っている必要があります。
//emlist[例][ruby]{
http.set_debug_output($stderr)
//}... -
Net
:: IMAP . debug -> bool (12207.0) -
デバッグモードが on になっていれば真を返します。
...デバッグモードが on になっていれば真を返します。
@see Net::IMAP#debug=... -
Net
:: IMAP . debug=(val) (12207.0) -
デバッグモードの on/off をします。
...デバッグモードの on/off をします。
真を渡すと on になります。
@param val 設定するデバッグモードの on/off の真偽値
@see Net::IMAP#debug... -
Net
:: POP3 # set _ debug _ output(f) -> () (12207.0) -
デバッグ用の出力 f をセットします。
...'net/pop'
pop = Net::POP3.new('pop.example.com', 110)
pop.set_debug_output $stderr
pop.start('YourAccount', 'YourPassword') {
p pop.n_bytes
}
実行結果:
POP session started: pop.example.com:110 (POP)
-> "+OK popd <1162042773.26346.155555a1861c@pop.example.com>\r\n"
<- "APOP Y... -
OpenSSL
. # debug -> bool (12207.0) -
デバッグモードが on ならば true を返します。
...デバッグモードが on ならば true を返します。
@see OpenSSL.#debug=... -
OpenSSL
. # debug=(b) (12207.0) -
デバッグモードを on/off します。
...デバッグモードを on/off します。
@see OpenSSL.#debug...