132件ヒット
[101-132件を表示]
(0.071秒)
クラス
-
Fiddle
:: Handle (12) -
Net
:: POP3 (12) -
Net
:: SMTP (24) - TracePoint (60)
モジュール
- Kernel (24)
キーワード
-
close
_ enabled? (12) - enable (24)
-
enable
_ config (24) - enabled? (12)
- ssl? (12)
- tls? (12)
-
use
_ ssl? (12)
検索結果
-
TracePoint
# enable -> bool (108.0) -
self のトレースを有効にします。
...イベントフックのためのメソッドにブロックの外側で参照した場合は
RuntimeError が発生する事に注意してください。
//emlist[例][ruby]{
trace.enable { p trace.lineno }
# => RuntimeError: access from outside
//}
@see TracePoint#disable, TracePoint#enabled?... -
TracePoint
# enabled? -> bool (108.0) -
self のトレースが有効な場合に true を、そうでない場合に false を返しま す。
...self のトレースが有効な場合に true を、そうでない場合に false を返しま
す。
@see TracePoint#enable, TracePoint#disable... -
TracePoint
# enable { . . . } -> object (8.0) -
self のトレースを有効にします。
...イベントフックのためのメソッドにブロックの外側で参照した場合は
RuntimeError が発生する事に注意してください。
//emlist[例][ruby]{
trace.enable { p trace.lineno }
# => RuntimeError: access from outside
//}
@see TracePoint#disable, TracePoint#enabled?...