るりまサーチ (Ruby 2.3.0)

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

別のキーワード

  1. erb u
  2. util u
  3. matrix u
  4. encoding koi8_u
  5. _builtin koi8_u

検索結果

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

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

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

Resolv::DNS#getresource(name, typeclass) -> Resolv::DNS::Resource (27904.0)

nameに対応するDNSリソースレコードを取得します。 最初に見つかったリソースを返します。

nameに対応するDNSリソースレコードを取得します。
最初に見つかったリソースを返します。

typeclass は以下のいずれかです。
* Resolv::DNS::Resource::IN::ANY
* Resolv::DNS::Resource::IN::NS
* Resolv::DNS::Resource::IN::CNAME
* Resolv::DNS::Resource::IN::SOA
* Resolv::DNS::Resource::IN::HINFO
* Resolv::DNS::Resource::IN::MINFO
* Resolv::DNS...

Resolv::DNS#getresources(name, typeclass) -> [Resolv::DNS::Resource] (27904.0)

nameに対応するDNSリソースレコードを取得します。 見つかったリソース全てを配列にして返します。

nameに対応するDNSリソースレコードを取得します。
見つかったリソース全てを配列にして返します。

typeclass は以下のいずれかです。
* Resolv::DNS::Resource::IN::ANY
* Resolv::DNS::Resource::IN::NS
* Resolv::DNS::Resource::IN::CNAME
* Resolv::DNS::Resource::IN::SOA
* Resolv::DNS::Resource::IN::HINFO
* Resolv::DNS::Resource::IN::MINFO
* Resolv:...

Resolv::DNS#each_resource(name, typeclass) {|resource| ...} -> () (27604.0)

nameに対応するDNSリソースレコードを取得します。 見つかったリソースをひとつずつブロックに渡します。

nameに対応するDNSリソースレコードを取得します。
見つかったリソースをひとつずつブロックに渡します。

typeclass は以下のいずれかです。
* Resolv::DNS::Resource::IN::ANY
* Resolv::DNS::Resource::IN::NS
* Resolv::DNS::Resource::IN::CNAME
* Resolv::DNS::Resource::IN::SOA
* Resolv::DNS::Resource::IN::HINFO
* Resolv::DNS::Resource::IN::MINFO
* Res...

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

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

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

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

絞り込み条件を変える

Resolv::DNS#timeouts=(values) (27304.0)

DNSリゾルバのタイムアウト時間を設定します。

DNSリゾルバのタイムアウト時間を設定します。

//emlist[][ruby]{
dns.timeouts = 3
//}

@param values タイムアウト時間(秒)を数値か数値の配列で指定します。配列
を指定した場合は応答を受信するまでの再試行時のタイムアウト
時間も含めて順に設定します。nil を指定した場合はデフォル
ト値
([ 5, second = 5 * 2 / nameserver_count, 2 * second, 4 * second ])
...

Resolv::DNS::Name#absolute? -> bool (27304.0)

絶対パス形式であるかどうかを返します。

絶対パス形式であるかどうかを返します。

Resolv::DNS::Name#subdomain_of?(other) -> bool (27304.0)

other が self のサブドメインであるかどうかを返します。

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?(domai...

Resolv::DNS::Resource::HINFO#cpu -> String (27304.0)

ホストで使われる CPU 名(ハードウェア名)を返します。

ホストで使われる CPU 名(ハードウェア名)を返します。

Resolv::DNS::Resource::SOA#minimum -> Integer (27304.0)

リソースレコードで TTL の値として使われる最小の秒数を 返します。

リソースレコードで TTL の値として使われる最小の秒数を
返します。

絞り込み条件を変える

ERB#def_module(methodname='erb') -> Module (18904.0)

変換した Ruby スクリプトをメソッドとして定義した無名のモジュールを返します。

変換した Ruby スクリプトをメソッドとして定義した無名のモジュールを返します。

@param methodname メソッド名

//emlist[例][ruby]{
require 'erb'
filename = 'example.rhtml'
erb = ERB.new("test1<%= arg1 %>\ntest2<%= arg2 %>\n")
erb.filename = filename
MyModule = erb.def_module('render(arg1, arg2)')
class MyClass
include MyModule
end
print My...

Kernel#check_signedness(type, headers = nil, opts = nil) -> "signed" | "unsigned" | nil (18604.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...

Kernel#check_signedness(type, headers = nil, opts = nil) { ... } -> "signed" | "unsigned" | nil (18604.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...

OpenSSL::PKCS7::RecipientInfo#issuer -> OpenSSL::X509::Name (18352.0)

送信先の証明書の発行者の名前(DN)を返します。

送信先の証明書の発行者の名前(DN)を返します。

これと OpenSSL::PKCS7::RecipientInfo#serial で
送信先を一意に識別します。

OpenSSL::PKCS7::SignerInfo#issuer -> OpenSSL::X509::Name (18352.0)

署名者の証明書の発行者の名前(DN)を返します。

署名者の証明書の発行者の名前(DN)を返します。

これと OpenSSL::PKCS7::SignerInfo#serial で
署名者を一意に識別します。

絞り込み条件を変える

Resolv::DNS::Resource::DomainName#name -> Resolv::DNS::Name (18304.0)

ドメイン名を返します。

ドメイン名を返します。

Resolv::DNS::Resource::IN::SRV#target -> Resolv::DNS::Name (18304.0)

対象のホストのホスト名を返します。

対象のホストのホスト名を返します。

Resolv::DNS::Resource::MX#exchange -> Resolv::DNS::Name (18304.0)

MXのホスト名を返します。

MXのホスト名を返します。

Resolv::DNS::Resource::SOA#mname -> Resolv::DNS::Name (18304.0)

対象のゾーンのマスターゾーンファイルが存在するホスト名を返します。

対象のゾーンのマスターゾーンファイルが存在するホスト名を返します。

Resolv::DNS::Resource::SOA#rname -> Resolv::DNS::Name (18304.0)

対象のドメイン名の管理者名を返します。

対象のドメイン名の管理者名を返します。

絞り込み条件を変える

Resolv::DNS::Resource::HINFO#os -> String (18004.0)

ホストで使われる OS 名を返します。

ホストで使われる OS 名を返します。

Resolv::DNS::Resource::IN::A#address -> Resolv::IPv4 (18004.0)

IPv4アドレスを返します。

IPv4アドレスを返します。

Resolv::DNS::Resource::IN::AAAA#address -> Resolv::IPv6 (18004.0)

IPv6アドレスを返します。

IPv6アドレスを返します。

Resolv::DNS::Resource::IN::SRV#port -> Integer (18004.0)

対象のサービスの対象のホストにおけるポート番号を返します。

対象のサービスの対象のホストにおけるポート番号を返します。

Resolv::DNS::Resource::IN::SRV#priority -> Integer (18004.0)

ホストの優先順位を返します。

ホストの優先順位を返します。

クライアントは利用可能なホストの中で最も priority が
小さい数値のホストを利用しなければなりません。

priority が同じならば Resolv::DNS::Resource::IN::SRV#weight
で定義されるようにホストを選ぶべきです。

返り値の範囲は 0 から 65535 までの整数値です。

絞り込み条件を変える

Resolv::DNS::Resource::IN::SRV#weight -> Integer (18004.0)

サーバを選択するための「重み」です。

サーバを選択するための「重み」です。

Resolv::DNS::Resource::IN::SRV#priority が同じ場合に
この項目が利用されます。
重みに比例した確率でホストを選択すべきです。
返り値の範囲は 0 から 65535 までの整数です。
選択肢が一つしかない、つまり選択する必要がない場合には
この値は人間が読みやすいよう 0 にすべきです。

Resolv::DNS::Resource::IN::WKS#address -> Resolv::IPv4 (18004.0)

IPv4アドレスを返します。

IPv4アドレスを返します。

Resolv::DNS::Resource::IN::WKS#bitmap -> String (18004.0)

そのホストで利用可能なサービスのビットマップを返します。

そのホストで利用可能なサービスのビットマップを返します。

例えば Resolv::DNS::Resource::IN::WKS#protocol が 6 (TCP)
の場合、26番目のビットはポート25のサービス(SMTP)に対応しています。
このビットが立っているならば SMTP は利用可能であり、
そうでなければ利用できません。

Resolv::DNS::Resource::IN::WKS#protocol -> Integer (18004.0)

IPプロトコル番号を返します。

IPプロトコル番号を返します。

例えば 6 は TCP に対応します。

Resolv::DNS::Resource::MINFO#emailbx -> String (18004.0)

メーリングリストもしくはメールボックスの エラーを受け取るメールボックスのドメイン名を 返します。

メーリングリストもしくはメールボックスの
エラーを受け取るメールボックスのドメイン名を
返します。

絞り込み条件を変える

Resolv::DNS::Resource::MINFO#rmailbx -> String (18004.0)

メーリングリストもしくはメールボックスの 責任者のドメイン名を返します。

メーリングリストもしくはメールボックスの
責任者のドメイン名を返します。

Resolv::DNS::Resource::MX#preference -> Integer (18004.0)

このMXレコードの優先度を返します。

このMXレコードの優先度を返します。

Resolv::DNS::Resource::SOA#expire -> Integer (18004.0)

プライマリサーバから得たゾーン情報をセカンダリサーバが 何秒間有効なものとして保持するかを返します。

プライマリサーバから得たゾーン情報をセカンダリサーバが
何秒間有効なものとして保持するかを返します。

Resolv::DNS::Resource::SOA#refresh -> Integer (18004.0)

プライマリサーバからの更新をセカンダリサーバがチェックする 頻度を秒単位で返します。

プライマリサーバからの更新をセカンダリサーバがチェックする
頻度を秒単位で返します。

Resolv::DNS::Resource::SOA#retry -> Integer (18004.0)

セカンダリサーバがプライマリサーバからの情報更新に失敗した場合に 何秒後にリトライするかを返します。

セカンダリサーバがプライマリサーバからの情報更新に失敗した場合に
何秒後にリトライするかを返します。

絞り込み条件を変える

Resolv::DNS::Resource::SOA#serial -> Integer (18004.0)

ゾーンファイルのバージョンを返します。

ゾーンファイルのバージョンを返します。

Resolv::DNS::Resource::TXT#data -> String (18004.0)

TXT レコードの最初の文字列を返します。

TXT レコードの最初の文字列を返します。

Resolv::DNS::Resource::TXT#strings -> [String] (18004.0)

TXT レコードの文字列を配列で返します。

TXT レコードの文字列を配列で返します。

OpenSSL::PKCS7::SignerInfo#name -> OpenSSL::X509::Name (9052.0)

署名者の証明書の発行者の名前(DN)を返します。

署名者の証明書の発行者の名前(DN)を返します。

これと OpenSSL::PKCS7::SignerInfo#serial で
署名者を一意に識別します。

ERB#def_class(superklass=Object, methodname=&#39;erb&#39;) -> Class (604.0)

変換した Ruby スクリプトをメソッドとして定義した無名のクラスを返します。

変換した Ruby スクリプトをメソッドとして定義した無名のクラスを返します。


@param superklass 無名クラスのスーパークラス

@param methodname メソッド名

//emlist[例][ruby]{
require 'erb'

class MyClass_
def initialize(arg1, arg2)
@arg1 = arg1; @arg2 = arg2
end
end
filename = 'example.rhtml' # @arg1 と @arg2 が使われている example.rhtml

erb = ERB.n...

絞り込み条件を変える