84件ヒット
[1-84件を表示]
(0.018秒)
種類
- インスタンスメソッド (72)
- 定数 (12)
ライブラリ
- getoptlong (12)
-
net
/ http (12) -
net
/ pop (24) -
net
/ smtp (12) - psych (24)
クラス
- GetoptLong (12)
-
Net
:: HTTP (12) -
Net
:: POP3 (24) -
Net
:: SMTP (12) -
Psych
:: Visitors :: YAMLTree (24)
キーワード
-
STATUS
_ STARTED (12) -
set
_ debug _ output (12) - started? (48)
検索結果
先頭5件
-
Psych
:: Visitors :: YAMLTree # started -> bool (24218.0) -
Psych::Visitors::YAMLTree#start をすでに呼び出しているならば 真を返します。
...Psych::Visitors::YAMLTree#start をすでに呼び出しているならば
真を返します。
まだならば偽を返します。... -
Psych
:: Visitors :: YAMLTree # started? -> bool (12218.0) -
Psych::Visitors::YAMLTree#start をすでに呼び出しているならば 真を返します。
...Psych::Visitors::YAMLTree#start をすでに呼び出しているならば
真を返します。
まだならば偽を返します。... -
Net
:: SMTP # started? -> bool (12207.0) -
SMTP セッションが開始されていたら真を返します。
...SMTP セッションが開始されていたら真を返します。
セッションがまだ開始していない、もしくは終了している場合には偽を返します。
@see Net::SMTP#start, Net::SMTP#finish... -
GetoptLong
:: STATUS _ STARTED -> 1 (12201.0) -
内部状態を管理するための定数です。ユーザが使用することはありません。
内部状態を管理するための定数です。ユーザが使用することはありません。 -
Net
:: HTTP # started? -> bool (6201.0) -
HTTP セッションが開始されていたら真を返します。
HTTP セッションが開始されていたら真を返します。
active? は時代遅れのメソッドです。 -
Net
:: POP3 # started? -> bool (6201.0) -
POP3 セッションが開始されていたら真を返します。
POP3 セッションが開始されていたら真を返します。
active? は obsolete です。 -
Net
:: POP3 # set _ debug _ output(f) -> () (12.0) -
デバッグ用の出力 f をセットします。
...equire '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"
<-...