360件ヒット
[1-100件を表示]
(0.094秒)
別のキーワード
ライブラリ
-
net
/ imap (72) - psych (12)
-
rexml
/ document (204) -
rexml
/ streamlistener (12) - rss (24)
-
rubygems
/ security (24) -
rubygems
/ server (12)
クラス
-
Gem
:: Security :: Policy (24) -
Gem
:: Server (12) -
Net
:: IMAP (36) -
Net
:: IMAP :: MailboxQuotaRoot (24) -
Net
:: IMAP :: ThreadMember (12) -
Psych
:: Nodes :: Node (12) -
REXML
:: Attributes (84) -
REXML
:: CData (24) -
REXML
:: DocType (24) -
REXML
:: Element (36) -
REXML
:: Elements (12) -
REXML
:: Instruction (24)
モジュール
-
REXML
:: StreamListener (12) -
RSS
:: RootElementMixin (24)
キーワード
- [] (12)
- content (12)
- doctype (12)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) -
get
_ text (12) - getquota (12)
- getquotaroot (12)
- length (12)
- mailbox (12)
- namespaces (12)
-
output
_ encoding (12) -
output
_ encoding= (12) - prefixes (12)
- public (12)
- quotaroots (12)
- seqno (12)
- setquota (12)
- size (24)
- system (12)
- tag (12)
- target (12)
- text (12)
-
to
_ s (12) - value (12)
-
verify
_ root (12) -
verify
_ root= (12) - xpath (12)
検索結果
先頭5件
-
Gem
:: Server # root(request , response) -> () (21102.0) -
メソッド名に対応する URI に対するリクエストを処理するメソッドです。
メソッド名に対応する URI に対するリクエストを処理するメソッドです。
@param request WEBrick::HTTPRequest オブジェクトが自動的に指定されます。
@param response WEBrick::HTTPResponse オブジェクトが自動的に指定されます。 -
Net
:: IMAP # getquotaroot(mailbox) -> [Net :: IMAP :: MailboxQuotaRoot | Net :: IMAP :: MailboxQuota] (12335.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 を得たい... -
Net
:: IMAP :: MailboxQuotaRoot # quotaroots -> [String] (9217.0) -
問い合わせしたメールボックスの quota root 名を配列で返します。
...問い合わせしたメールボックスの quota root 名を配列で返します。
空の場合もありえます。... -
Gem
:: Security :: Policy # verify _ root=(flag) (9202.0) -
証明書チェーンのルートを検証するかどうかを設定します。
...証明書チェーンのルートを検証するかどうかを設定します。
@param flag 真、または偽を指定します。... -
Gem
:: Security :: Policy # verify _ root -> bool (9102.0) -
この値が真である場合は、証明書チェーンのルートを検証します。
この値が真である場合は、証明書チェーンのルートを検証します。 -
RSS
:: RootElementMixin # output _ encoding (9101.0) -
@todo
@todo -
RSS
:: RootElementMixin # output _ encoding= (9101.0) -
@todo
@todo -
Psych
:: Nodes :: Node # tag -> String | nil (6225.0) -
ノードに付加されたタグを返します。
...されていない場合は nil を返します。
ast = Psych.parse(<<EOS)
---
- !!str a
- b
EOS
p ast.root.children[0].value # => "a"
p ast.root.children[0].tag # => "tag:yaml.org,2002:str"
p ast.root.children[1].value # => "b"
p ast.root.children[1].tag # => nil... -
REXML
:: Attributes # get _ attribute(name) -> Attribute | nil (6119.0) -
name という名前の属性を取得します。
...= REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.attributes.get_attribute("att") # => att='<'
a.attributes.get_attribute("foo:att") # => f...