るりまサーチ

最速Rubyリファレンスマニュアル検索!
134件ヒット [101-134件を表示] (0.009秒)
トップページ > クエリ:recent[x]

別のキーワード

  1. imap recent
  2. net/imap recent
  3. recent net/imap
  4. recent net::imap

ライブラリ

クラス

モジュール

検索結果

<< < 1 2 >>

Thread.report_on_exception -> bool (6.0)

真の時は、いずれかのスレッドが例外によって終了した時に、その内容を $stderr に報告します。

...} }

は $stderr に以下のように出力します:

#<Thread:...> terminated with exception (report_on_exception is true):
Traceback (most recent call last):
2: from -e:1:in `block in <main>'
1: from -e:1:in `times'

これによってスレッドのエラーを早期に...

Thread.report_on_exception=(newstate) (6.0)

真の時は、いずれかのスレッドが例外によって終了した時に、その内容を $stderr に報告します。

...} }

は $stderr に以下のように出力します:

#<Thread:...> terminated with exception (report_on_exception is true):
Traceback (most recent call last):
2: from -e:1:in `block in <main>'
1: from -e:1:in `times'

これによってスレッドのエラーを早期に...

net/imap (6.0)

このライブラリは Internet Message Access Protocol (IMAP) の クライアントライブラリです。2060 を元に 実装されています。

...map'

imap = Net::IMAP.new('mail.example.com')
imap.authenticate('LOGIN', 'joe_user', 'joes_password')
imap.examine('INBOX')
imap.search(["RECENT"]).each do |message_id|
envelope = imap.fetch(message_id, "ENVELOPE")[0].attr["ENVELOPE"]
puts "#{envelope.from[0].name}: \t#{envelope.sub...

rubygems/commands/lock_command (6.0)

指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために 必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。

...rb is loaded *before* any
other require statements.

Notice that rails 1.0.0 only requires that rake 0.6.2 or better be used.
Rake-0.7.0.1 is the most recent version installed that satisfies that, so we
lock it down to the exact version.
Defaults:
--no-strict...
<< < 1 2 >>