クラス
- Date (12)
- ERB (36)
-
OpenSSL
:: PKCS7 :: RecipientInfo (12) -
OpenSSL
:: SSL :: SSLContext (12) -
OpenSSL
:: X509 :: Name (12) -
Resolv
:: DNS (96) -
Resolv
:: DNS :: Name (36) -
Resolv
:: DNS :: Resource :: HINFO (24) -
Resolv
:: DNS :: Resource :: IN :: SRV (48) -
Resolv
:: DNS :: Resource :: IN :: WKS (24) -
Resolv
:: DNS :: Resource :: MINFO (24) -
Resolv
:: DNS :: Resource :: MX (12) -
Resolv
:: DNS :: Resource :: SOA (60) -
Resolv
:: DNS :: Resource :: TXT (24) -
Resolv
:: IPv4 (12) -
Resolv
:: IPv6 (12) - Time (12)
-
URI
:: LDAP (12)
モジュール
- Kernel (24)
キーワード
- absolute? (12)
- bitmap (12)
-
check
_ signedness (24) - cpu (12)
- data (12)
-
def
_ class (12) -
def
_ method (12) -
def
_ module (12) -
each
_ resource (12) - emailbx (12)
- expire (12)
- getaddress (12)
- getaddresses (12)
- getname (12)
- getnames (12)
- getresource (12)
- getresources (12)
- issuer (12)
- minimum (12)
- os (12)
- port (12)
- preference (12)
- priority (12)
- protocol (12)
- refresh (12)
- retry (12)
- rmailbx (12)
- serial (12)
- strings (12)
-
subdomain
_ of? (12) - target (12)
- timeouts= (12)
-
to
_ name (24) -
to
_ s (24) - wednesday? (24)
- weight (12)
検索結果
先頭5件
-
Resolv
:: DNS :: Resource :: IN :: SRV # weight -> Integer (9101.0) -
サーバを選択するための「重み」です。
...サーバを選択するための「重み」です。
Resolv::DNS::Resource::IN::SRV#priority が同じ場合に
この項目が利用されます。
重みに比例した確率でホストを選択すべきです。
返り値の範囲は 0 から 65535 までの整数です。
選択肢が一つ... -
Resolv
:: DNS :: Resource :: IN :: WKS # bitmap -> String (9101.0) -
そのホストで利用可能なサービスのビットマップを返します。
...ビットマップを返します。
例えば Resolv::DNS::Resource::IN::WKS#protocol が 6 (TCP)
の場合、26番目のビットはポート25のサービス(SMTP)に対応しています。
このビットが立っているならば SMTP は利用可能であり、
そうでなければ利用... -
Resolv
:: DNS :: Resource :: IN :: WKS # protocol -> Integer (9101.0) -
IPプロトコル番号を返します。
...IPプロトコル番号を返します。
例えば 6 は TCP に対応します。... -
Resolv
:: DNS :: Resource :: SOA # retry -> Integer (9101.0) -
セカンダリサーバがプライマリサーバからの情報更新に失敗した場合に 何秒後にリトライするかを返します。
セカンダリサーバがプライマリサーバからの情報更新に失敗した場合に
何秒後にリトライするかを返します。 -
Resolv
:: DNS :: Resource :: TXT # data -> String (9101.0) -
TXT レコードの最初の文字列を返します。
...TXT レコードの最初の文字列を返します。... -
ERB
# def _ method(mod , methodname , fname=& # 39;(ERB)& # 39;) -> nil (6301.0) -
変換した Ruby スクリプトをメソッドとして定義します。
...指定し、メソッド名は methodname で指定します。
fname はスクリプトを定義する際のファイル名です。主にエラー時に活躍します。
@param mod メソッドを定義するモジュール(またはクラス)
@param methodname メソッド名
@param fname......スクリプトを定義する際のファイル名
例:
require 'erb'
erb = ERB.new(script)
erb.def_method(MyClass, 'foo(bar)', 'foo.erb')... -
Kernel
# check _ signedness(type , headers = nil , opts = nil) -> "signed" | "unsigned" | nil (6249.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.
...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......F_', 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 preprocesso......r 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 (6249.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.
...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......F_', 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 preprocesso......r macro would be passed to the
compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is
done.... -
OpenSSL
:: SSL :: SSLContext # options=(options) (6207.0) -
オプションを設定します。
...A
* OpenSSL::SSL::OP_NETSCAPE_CA_DN_BUG
* OpenSSL::SSL::OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG
* OpenSSL::SSL::OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
* OpenSSL::SSL::OP_NO_SSLv2
* OpenSSL::SSL::OP_NO_SSLv3
* OpenSSL::SSL::OP_NO_TLSv1
* OpenSSL::SSL::OP_NO_TICKET
* OpenSSL::SSL::OP_PKC......S1_CHECK_1
* OpenSSL::SSL::OP_PKCS1_CHECK_2
* OpenSSL::SSL::OP_SINGLE_DH_USE
* OpenSSL::SSL::OP_SINGLE_ECDH_USE
* OpenSSL::SSL::OP_TLS_ROLLBACK_BUG
@param options 設定するオプションフラグ(整数値)
@see OpenSSL::SSL::SSLContext#options...