るりまサーチ

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

別のキーワード

  1. psych root
  2. pstore root?
  3. document root
  4. pathname root?
  5. rexml/document root

検索結果

<< 1 2 3 ... > >>

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

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

...ocument'
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/grandchildren").first
grandchildr...
...en.name # => "grandchildren"
grandchildren.root.name # => "root"
//}...

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

AST の root を返します。

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

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

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

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

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

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

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

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

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

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

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

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

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

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

絞り込み条件を変える

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

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

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

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

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

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

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

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

Net::IMAP#getquotaroot(mailbox) -> [Net::IMAP::MailboxQuotaRoot | Net::IMAP::MailboxQuota] (6235.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 を得たい...

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

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

...ument'
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
grandchi...
...ldren.name # => "grandchildren"
grandchildren.root_node == doc # => true
//}...

RDoc::Options#root=(val) (6118.0)

コマンドライン引数の --root オプションと同様の指定を行います。

...コマンドライン引数の --root オプションと同様の指定を行います。

@param val パスを文字列で指定します。...

絞り込み条件を変える

<< 1 2 3 ... > >>