457件ヒット
[1-100件を表示]
(0.096秒)
クラス
-
Net
:: POP3 (60) -
Net
:: SMTP (84) - Socket (24)
- Tempfile (24)
- TracePoint (72)
モジュール
- Etc (12)
- GC (24)
- Kernel (72)
-
Socket
:: Constants (24)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) -
IFF
_ DISABLE _ NETPOLL (24) -
NEWS for Ruby 2
. 3 . 0 (10) -
NEWS for Ruby 3
. 1 . 0 (4) -
PC
_ VDISABLE (12) - Rubyの起動 (7)
-
SO
_ NO _ CHECK (24) - create (24)
-
disable
_ ssl (36) -
disable
_ starttls (12) -
disable
_ tls (12) - enable (24)
-
enable
_ config (24) -
enable
_ ssl (36) -
enable
_ tls (12) - enabled? (12)
-
garbage
_ collect (12) -
net
/ smtp (4) - new (12)
-
rb
_ disable _ super (12) -
rb
_ with _ disable _ interrupt (12) - spawn (48)
- ssl? (12)
- start (12)
- tls? (12)
-
use
_ ssl? (12)
検索結果
先頭5件
-
TracePoint
# disable { . . . } -> object (21220.0) -
self のトレースを無効にします。
...の TracePoint#enabled? を返します。(トレースが既に有効であっ
た場合は true を返します。そうでなければ false を返します)
//emlist[例][ruby]{
trace.enabled? # => true
trace.disable # => false (実行前の状態)
trace.enabled? # => false
trace.disable # =>......ist[例][ruby]{
trace.enabled? # => true
trace.disable do
trace.enabled? # => false
end
trace.enabled? # => true
//}
[注意] イベントフックのためのメソッドに、ブロックの外側で参照した場合は
RuntimeError が発生する事に注意してください。
tra......ce.enable { p trace.lineno }
# => RuntimeError: access from outside
@see TracePoint#enable, TracePoint#enabled?... -
TracePoint
# disable -> bool (21120.0) -
self のトレースを無効にします。
...の TracePoint#enabled? を返します。(トレースが既に有効であっ
た場合は true を返します。そうでなければ false を返します)
//emlist[例][ruby]{
trace.enabled? # => true
trace.disable # => false (実行前の状態)
trace.enabled? # => false
trace.disable # =>......ist[例][ruby]{
trace.enabled? # => true
trace.disable do
trace.enabled? # => false
end
trace.enabled? # => true
//}
[注意] イベントフックのためのメソッドに、ブロックの外側で参照した場合は
RuntimeError が発生する事に注意してください。
tra......ce.enable { p trace.lineno }
# => RuntimeError: access from outside
@see TracePoint#enable, TracePoint#enabled?... -
Socket
:: Constants :: IFF _ DISABLE _ NETPOLL (12217.0) -
disable netpoll at run-time
...
disable netpoll at run-time... -
Socket
:: IFF _ DISABLE _ NETPOLL (12217.0) -
disable netpoll at run-time
...
disable netpoll at run-time... -
Net
:: SMTP # disable _ tls -> () (12208.0) -
その Net::SMTP オブジェクトが SMTPS を利用しないよう設定します。
...その Net::SMTP オブジェクトが SMTPS を利用しないよう設定します。
@see Net::SMTP#disable_tls, Net::SMTP#tls?... -
Net
:: SMTP # disable _ starttls -> () (12201.0) -
その Net::SMTP オブジェクトがSTARTTLSを常に使わないよう設定します。
...その Net::SMTP オブジェクトがSTARTTLSを常に使わないよう設定します。
@see Net::SMTP#starttls?, Net::SMTP#enable_starttls, Net::SMTP#enable_starttls_auto... -
VALUE rb
_ with _ disable _ interrupt(VALUE (*proc)() , data) (12200.0) -
-
Net
:: SMTP # disable _ ssl -> () (9108.0) -
その Net::SMTP オブジェクトが SMTPS を利用しないよう設定します。
...その Net::SMTP オブジェクトが SMTPS を利用しないよう設定します。
@see Net::SMTP#disable_tls, Net::SMTP#tls?... -
Net
:: POP3 # disable _ ssl -> () (9107.0) -
このインスタンスが SSL による通信を利用しないように設定します。
...このインスタンスが SSL による通信を利用しないように設定します。
@see Net::POP3#enable_ssl, Net::POP3#disable_ssl, Net::POP3#use_ssl?, Net::POP3.enable_ssl...