クラス
- ERB (12)
-
OpenSSL
:: PKCS7 :: RecipientInfo (12) -
OpenSSL
:: PKCS7 :: SignerInfo (24) -
OpenSSL
:: SSL :: SSLContext (12) -
OpenSSL
:: X509 :: Name (12) -
Resolv
:: DNS (36) -
Resolv
:: DNS :: Name (24) -
Resolv
:: DNS :: Resource :: DomainName (12) -
Resolv
:: DNS :: Resource :: HINFO (24) -
Resolv
:: DNS :: Resource :: IN :: A (12) -
Resolv
:: DNS :: Resource :: IN :: AAAA (12) -
Resolv
:: DNS :: Resource :: IN :: SRV (48) -
Resolv
:: DNS :: Resource :: IN :: WKS (36) -
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 (24)
モジュール
- Kernel (24)
キーワード
- address (36)
- bitmap (12)
-
check
_ signedness (24) - cpu (12)
- data (12)
-
def
_ method (12) - dn= (12)
- emailbx (12)
- expire (12)
- getaddress (12)
- getaddresses (12)
- issuer (24)
- minimum (12)
- name (24)
- 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? (12)
- weight (12)
検索結果
先頭5件
-
URI
:: LDAP # dn -> String (21202.0) -
自身の Distinguished Name を文字列で返します。
...自身の Distinguished Name を文字列で返します。... -
Kernel
# check _ signedness(type , headers = nil , opts = nil) -> "signed" | "unsigned" | nil (12401.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.
...rns 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_',...... 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_I......NT=-1 if check_signedness('int') is
done.... -
Kernel
# check _ signedness(type , headers = nil , opts = nil) { . . . } -> "signed" | "unsigned" | nil (12401.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.
...rns 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_',...... 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_I......NT=-1 if check_signedness('int') is
done.... -
Resolv
:: DNS :: Resource :: SOA # minimum -> Integer (9201.0) -
リソースレコードで TTL の値として使われる最小の秒数を 返します。
リソースレコードで TTL の値として使われる最小の秒数を
返します。 -
Resolv
:: DNS :: Resource :: TXT # strings -> [String] (9201.0) -
TXT レコードの文字列を配列で返します。
TXT レコードの文字列を配列で返します。 -
URI
:: LDAP # dn=(s) (9102.0) -
自身の Distinguished Name を文字列で設定します。
...自身の Distinguished Name を文字列で設定します。
@param s 自身の Distinguished Name を文字列で指定します。... -
Resolv
:: DNS # timeouts=(values) (9101.0) -
DNSリゾルバのタイムアウト時間を設定します。
...
DNSリゾルバのタイムアウト時間を設定します。
//emlist[][ruby]{
dns.timeouts = 3
//}
@param values タイムアウト時間(秒)を数値か数値の配列で指定します。配列
を指定した場合は応答を受信するまでの再試行時のタイムア......ウト
時間も含めて順に設定します。nil を指定した場合はデフォル
ト値
([ 5, second = 5 * 2 / nameserver_count, 2 * second, 4 * second ])
を使用します。... -
Resolv
:: DNS :: Name # subdomain _ of?(other) -> bool (9101.0) -
other が self のサブドメインであるかどうかを返します。
...//emlist[][ruby]{
require "resolv"
domain = Resolv::DNS::Name.create("y.z")
p Resolv::DNS::Name.create("w.x.y.z").subdomain_of?(domain) #=> true
p Resolv::DNS::Name.create("x.y.z").subdomain_of?(domain) #=> true
p Resolv::DNS::Name.create("y.z").subdomain_of?(domain) #=> false
p Resolv::DNS::Name.......create("z").subdomain_of?(domain) #=> false
p Resolv::DNS::Name.create("x.y.z.").subdomain_of?(domain) #=> false
p Resolv::DNS::Name.create("w.z").subdomain_of?(domain) #=> false
//}... -
Resolv
:: DNS :: Resource :: IN :: SRV # priority -> Integer (9101.0) -
ホストの優先順位を返します。
...します。
クライアントは利用可能なホストの中で最も priority が
小さい数値のホストを利用しなければなりません。
priority が同じならば Resolv::DNS::Resource::IN::SRV#weight
で定義されるようにホストを選ぶべきです。
返り値の...