るりまサーチ

最速Rubyリファレンスマニュアル検索!
1304件ヒット [1-100件を表示] (0.105秒)

別のキーワード

  1. kernel $-l
  2. matrix l
  3. _builtin $-l
  4. lupdecomposition l
  5. l

ライブラリ

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

URI::LDAP#dn -> String (21101.0)

自身の Distinguished Name を文字列で返します。

...自身の Distinguished Name を文字列で返します。...

OpenSSL::SSL::OP_NETSCAPE_CA_DN_BUG -> Integer (12117.0)

Netscape の CA の DN のエンコーディングバグを 回避するコードを有効にします。

...Netscape の CA の DN のエンコーディングバグを
回避するコードを有効にします。

OpenSSL::SSL::SSLContext#options= で利用します。...

Net::HTTPMethodNotAllowed (12000.0)

HTTP レスポンス 405 (Method Not Allowed) を表現するクラスです。

...HTTP レスポンス 405 (Method Not Allowed) を表現するクラスです。

詳しくは 7231 Section 6.5.5 を見てください。...

Resolv::DNS::Config::OtherResolvError (12000.0)

DNS サーバからの応答がエラーであった場合に発生する例外です。

...DNS サーバからの応答がエラーであった場合に発生する例外です。

Resolv::DNSの各メソッドがこの例外を発生させる可能性があります。...

WEBrick::HTTPStatus::MethodNotAllowed (12000.0)

HTTP のステータスコード 405 Method Not Allowed を表すクラスです。

...HTTP のステータスコード 405 Method Not Allowed を表すクラスです。...

絞り込み条件を変える

URI::LDAP.build(ary) -> URI::LDAP (9212.0)

引数で与えられた URI 構成要素から URI::LDAP オブジェクトを生成します。 引数の正当性を検査します。

...れた URI 構成要素から URI::LDAP オブジェクトを生成します。
引数の正当性を検査します。

@param ary 構成要素を表す配列を与えます。要素は次の順です。
//emlist{
[:host, :port, :dn, :attributes, :scope, :filter, :extensions]
//}
@param hash...
...のキーは
//emlist{
:host, :port, :dn, :attributes, :scope, :filter, :extensions
//}
のいずれかです。

@raise URI::InvalidComponentError 各要素が適合しない場合に発生します。

例:
require 'uri'
p URI::LDAP.build(["example.com", "1", "/a", "b...
...", "c", "d", "e=f"]).to_s
#=> "ldap://example.com:1/a?b?c?d?e=f"...

URI::LDAP.build(hash) -> URI::LDAP (9212.0)

引数で与えられた URI 構成要素から URI::LDAP オブジェクトを生成します。 引数の正当性を検査します。

...れた URI 構成要素から URI::LDAP オブジェクトを生成します。
引数の正当性を検査します。

@param ary 構成要素を表す配列を与えます。要素は次の順です。
//emlist{
[:host, :port, :dn, :attributes, :scope, :filter, :extensions]
//}
@param hash...
...のキーは
//emlist{
:host, :port, :dn, :attributes, :scope, :filter, :extensions
//}
のいずれかです。

@raise URI::InvalidComponentError 各要素が適合しない場合に発生します。

例:
require 'uri'
p URI::LDAP.build(["example.com", "1", "/a", "b...
...", "c", "d", "e=f"]).to_s
#=> "ldap://example.com:1/a?b?c?d?e=f"...

Kernel#check_signedness(type, headers = nil, opts = nil) -> "signed" | "unsigned" | nil (9200.0)

Returns the signedness of the given +type+. You may optionally specify additional +headers+ to search in for the +type+. If the +type+ is found and is a numeric type, a macro is passed as a preprocessor constant to the compiler using the +type+ name, in uppercase, prepended with 'SIGNEDNESS_OF_', followed by the +type+ name, followed by '=X' where 'X' is positive integer if the +type+ is unsigned, or negative integer if the +type+ is signed. For example, if size_t is defined as unsigned, then check_signedness('size_t') would returned +1 and the SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed to the compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is done.

...ignedness of the given +type+. You may optionally
specify additional +headers+ to search in for the +type+.

If the +type+ is found and is a numeric type, a macro is passed as a
preprocessor constant to the compiler using the +type+ name, in
uppercase, prepended with 'SIGNEDNESS_OF_', followed...
...pe+
name, followed by '=X' where 'X' is positive integer if the +type+ is
unsigned, or negative integer if the +type+ is signed.

For example, if size_t is defined as unsigned, then
check_signedness('size_t') would returned +1 and the
SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed...
...to the
compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is
done....

Kernel#check_signedness(type, headers = nil, opts = nil) { ... } -> "signed" | "unsigned" | nil (9200.0)

Returns the signedness of the given +type+. You may optionally specify additional +headers+ to search in for the +type+. If the +type+ is found and is a numeric type, a macro is passed as a preprocessor constant to the compiler using the +type+ name, in uppercase, prepended with 'SIGNEDNESS_OF_', followed by the +type+ name, followed by '=X' where 'X' is positive integer if the +type+ is unsigned, or negative integer if the +type+ is signed. For example, if size_t is defined as unsigned, then check_signedness('size_t') would returned +1 and the SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed to the compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is done.

...ignedness of the given +type+. You may optionally
specify additional +headers+ to search in for the +type+.

If the +type+ is found and is a numeric type, a macro is passed as a
preprocessor constant to the compiler using the +type+ name, in
uppercase, prepended with 'SIGNEDNESS_OF_', followed...
...pe+
name, followed by '=X' where 'X' is positive integer if the +type+ is
unsigned, or negative integer if the +type+ is signed.

For example, if size_t is defined as unsigned, then
check_signedness('size_t') would returned +1 and the
SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed...
...to the
compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is
done....

URI::LDAP#dn=(s) (9101.0)

自身の Distinguished Name を文字列で設定します。

...自身の Distinguished Name を文字列で設定します。

@param s 自身の Distinguished Name を文字列で指定します。...

絞り込み条件を変える

<< 1 2 3 ... > >>