るりまサーチ

最速Rubyリファレンスマニュアル検索!
5996件ヒット [101-200件を表示] (0.227秒)

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. rsa n=
  3. rsa n
  4. openssl n
  5. openssl n=

クラス

キーワード

検索結果

<< < 1 2 3 4 ... > >>

Net::HTTP#continue_timeout -> Integer | nil (12301.0)

「100 Continue」レスポンスを待つ秒数を返します。

...「100 Continue」レスポンスを待つ秒数を返します。

この秒数待ってもレスポンスが来ない場合は
リクエストボディを送信します。

デフォルトは nil (待たない)です。

@see Net::HTTP#continue_timeout=...

Net::IMAP#examine(mailbox) -> Net::IMAP::TaggedResponse (12301.0)

EXAMINE コマンドを送り、指定したメールボックスを処理対象の メールボックスにします。

...EXAMINE コマンドを送り、指定したメールボックスを処理対象の
メールボックスにします。

N
et::IMAP#select と異なりセッション中はメールボックスが
読み取り専用となります。それ以外は select と同じです。

@param mailbox 処理対...
...象としたいメールボックスの名前(文字列)
@raise Net::IMAP::NoResponseError mailboxが存在しない等の理由でコマンドの実行に失敗
した場合に発生します。...

OpenSSL::PKCS7::SignerInfo#signed_time -> Time (12301.0)

その署名者が署名した時刻を返します。

その署名者が署名した時刻を返します。

Prime::PseudoPrimeGenerator#each_with_index {|prime, index| ... } -> self (12301.0)

与えられたブロックに対して、素数を0起点の連番を渡して評価します。

...

@return ブロックを与えられた場合は self を返します。 ブロックを与えられなかった場合は Enumerator を返します。

//emlist[例][ruby]{
require 'prime'
Prime::EratosthenesGenerator.new(10).each_with_index do |prime, index|
p [prime, index]
end
# [2, 0]
# [...
...3, 1]
# [5, 2]
# [7, 3]
//}

@see Enumerator#with_index...

Prime::PseudoPrimeGenerator#with_index {|prime, index| ... } -> self (12301.0)

与えられたブロックに対して、素数を0起点の連番を渡して評価します。

...

@return ブロックを与えられた場合は self を返します。 ブロックを与えられなかった場合は Enumerator を返します。

//emlist[例][ruby]{
require 'prime'
Prime::EratosthenesGenerator.new(10).each_with_index do |prime, index|
p [prime, index]
end
# [2, 0]
# [...
...3, 1]
# [5, 2]
# [7, 3]
//}

@see Enumerator#with_index...

絞り込み条件を変える

Net::POP3#open_timeout=(n) (12208.0)

接続時に待つ最大秒数を設定します。

...接続時に待つ最大秒数を設定します。

@param n タイムアウトまでの秒数
@see Net::POP3#open_timeout...

Net::SMTP#open_timeout=(n) (12202.0)

接続時に待つ最大秒数を設定します。

...接続時に待つ最大秒数を設定します。

@see Net::SMTP#open_timeout...

CGI::HtmlExtension#image_button(attributes) -> String (12201.0)

タイプが image の input 要素を生成します。

...タイプが image の input 要素を生成します。

@param attributes 属性をハッシュで指定します。

例:
im
age_button({ "SRC" => "url", "ALT" => "string" })
# <INPUT TYPE="image" SRC="url" ALT="string">...

CGI::HtmlExtension#image_button(src = "", name = nil, alt = nil) -> String (12201.0)

タイプが image の input 要素を生成します。

... image の input 要素を生成します。

@param src src 属性の値を指定します。

@param name name 属性の値を指定します。

@param alt alt 属性の値を指定します。

例:
im
age_button("url")
# <INPUT TYPE="image" SRC="url">

im
age_button("url", "name", "string...
...")
# <INPUT TYPE="image" SRC="url" NAME="name" ALT="string">...

Encoding::Converter#primitive_convert(source_buffer, destination_buffer) -> Symbol (12201.0)

エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。

...、Encoding::Converter#primitive_convert が唯一の方法になります。

@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_by...
...ram options 変換の詳細を指定する定数やハッシュ
@return 変換結果を表す Symbol

options には以下が指定できます。

: hash form
:partial_input => true # source buffer may be part of larger source
:after_output => true # stop conversion after o...
...input
: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT

戻り値は以下のうちのどれかです。

* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
* :destination_buffer_full
* :source_buffer_empty
* :fin...

絞り込み条件を変える

<< < 1 2 3 4 ... > >>