るりまサーチ

最速Rubyリファレンスマニュアル検索!
1199件ヒット [1-100件を表示] (0.179秒)
トップページ > クエリ:-[x] > クエリ:r[x] > クエリ:root[x]

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method new
  4. irb/input-method gets
  5. matrix -

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

REXML::Element#root -> REXML::Element (24349.0)

self が属する文書のルート要素を返します。

...t[][ruby]{
r
equire 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root>
<children>
<grandchildren />
</children>
</root>
EOS

children = doc.get_elements("/root/children").first
children.name # => "children"
children.root.name # => "root"
grandchildren = doc.get_elements("/root/children/grandc...
...hildren").first
grandchildren.name # => "grandchildren"
grandchildren.root.name # => "root"
//}...

Psych::TreeBuilder#root -> Psych::Nodes::Stream (24317.0)

AST の root を返します。

...AST の root を返します。

@see Psych::Nodes::Stream...

RDoc::Options#root -> Pathname (24317.0)

コマンドライン引数の --root オプションで指定したディレクトリを返します。

...コマンドライン引数の --root オプションで指定したディレクトリを返します。

指定されていない場合はカレントディレクトリを返します。...

Gem::Server#root(request, response) -> () (24301.0)

メソッド名に対応する URI に対するリクエストを処理するメソッドです。

...メソッド名に対応する URI に対するリクエストを処理するメソッドです。

@param request WEBrick::HTTPRequest オブジェクトが自動的に指定されます。

@param response WEBrick::HTTPResponse オブジェクトが自動的に指定されます。...

Psych::Nodes::Document#root -> Psych::Nodes::Node (24301.0)

ルートノードを返します。

ルートノードを返します。

絞り込み条件を変える

REXML::Document#root -> REXML::Element | nil (24301.0)

文書のルート要素を返します。

文書のルート要素を返します。

文書がルート要素を持たない場合は nil を返します。

Net::IMAP::MailboxQuotaRoot#quotaroots -> [String] (18316.0)

問い合わせしたメールボックスの quota root 名を配列で返します。

...問い合わせしたメールボックスの quota root 名を配列で返します。

空の場合もありえます。...

Gem::Security::Policy#verify_root -> bool (15301.0)

この値が真である場合は、証明書チェーンのルートを検証します。

この値が真である場合は、証明書チェーンのルートを検証します。

Net::IMAP#getquotaroot(mailbox) -> [Net::IMAP::MailboxQuotaRoot | Net::IMAP::MailboxQuota] (12534.0)

GETQUOTAROOT コマンドを送って 指定したメールボックスの quota root の一覧と、 関連する quota の情報を返します。

...GETQUOTAROOT コマンドを送って
指定したメールボックスの quota root の一覧と、
関連する quota の情報を返します。

quota root の情報は Net::IMAP::MailboxQuotaRoot のオブジェクトで、
返り値の配列の中に唯一含まれています。
quota の情...
...られた quota root ごとに
Net::IMAP::MailboxQuota オブジェクトで得られます。

詳しくは 2087 を見てください。
このコマンドは Net::IMAP#capability の返り値を見ることで
利用可能かどうか判断できます。

@param mailbox quota root を得たい...
...メールボックス名(文字列)
@raise Net::IMAP::NoResponseError 指定したメールボックスが存在しない場合に発生します...

REXML::Element#root_node -> REXML::Document | REXML::Node (12337.0)

self が属する文書のルートノードを返します。

...書(REXML::Document) オブジェクトが
返されます。

その要素が属する REXML::Document オブジェクトが存在しない
場合は木構造上のルートノードが返されます。

//emlist[][ruby]{
r
equire 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root>
<children>...
...<grandchildren />
</children>
</root>
EOS

children = doc.get_elements("/root/children").first
children.name # => "children"
children.root_node == doc # => true
grandchildren = doc.get_elements("/root/children/grandchildren").first
grandchildren.name # => "grandchildren"
grandchildren.root_node ==...
...doc # => true
//}...

絞り込み条件を変える

<< 1 2 3 ... > >>