るりまサーチ

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

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

キーワード

検索結果

<< < 1 2 3 4 5 ... > >>

Dir.chroot(path) -> 0 (12200.0)

ルートディレクトリを path に変更します。

...を path に変更します。

スーパーユーザだけがルートディレクトリを変更できます。
ルートディレクトリの変更に成功すれば 0 を返します。
各プラットフォームのマニュアルの chroot の項も参照して下さい。

@param path ディ...
...トリのパスを文字列で指定します。

@raise Errno::EXXX 失敗した場合に発生します。

//emlist[例][ruby]{
p Dir.glob("*") #=> ["file1", "file2]
Dir.chroot("./")
p Dir.glob("/*") #=> ["/file1", "/file2]
//}

@see http://opengroup.org/onlinepubs/007908799/xsh/chroot.html...

PStore#roots -> Array (12200.0)

ルートの集合を配列で返します。

...ルートの集合を配列で返します。

@raise PStore::Error トランザクション外でこのメソッドが呼び出された場合に発生します。

@see Hash#keys...

Net::IMAP::MailboxQuotaRoot (12016.0)

Net::IMAP#getquotaroot の結果として得られる quota root 情報を表わすオブジェクトです。

...Net::IMAP#getquotaroot の結果として得られる
quota root 情報を表わすオブジェクトです。

詳しくは 2087 を参照してください。...

RSS::RootElementMixin (12000.0)

REXML::Attributes#each_attribute {|attribute| ... } -> () (9218.0)

各属性に対しブロックを呼び出します。

...ML::Attribute オブジェクトで渡されます。

//emlist[][ruby]{
require 'rexml/document'

doc = 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='&lt;'/>
</root>
EOS
a = doc.get_elements("/root/a")...
....first

a.attributes.each_attribute do |attr|
p [attr.namespace, attr.name, attr.value]
end
# => ["http://example.org/foo", "att", "1"]
# => ["http://example.org/bar", "att", "2"]
# => ["", "att", "<"]
//}...

絞り込み条件を変える

Gem::Security::HighSecurity -> Gem::Security::Policy (9206.0)

高レベルのセキュリティポリシーです。

...頼します。

このセキュリティポリシーはバイパスするのがものすごく困難です。

:verify_data => true,
:verify_signer => true,
:verify_chain => true,
:verify_root => true,
:only_trusted => true,
:only_signed => true...

Gem::Security::LowSecurity -> Gem::Security::Policy (9206.0)

低レベルのセキュリティのポリシーです。

...んど役に立たない上、
簡単に騙すことができるので、使用しないでください。


:verify_data => true,
:verify_signer => true,
:verify_chain => false,
:verify_root => false,
:only_trusted => false,
:only_signed => false...

Gem::Security::MediumSecurity -> Gem::Security::Policy (9206.0)

中レベルのセキュリティポリシーです。

...悪な人物がパッケージの署名を単純に削除して検証をパスさせることができます。

:verify_data => true,
:verify_signer => true,
:verify_chain => true,
:verify_root => true,
:only_trusted => true,
:only_signed => false...

Gem::Security::NoSecurity -> Gem::Security::Policy (9206.0)

セキュリティなしのポリシーです。

...セキュリティなしのポリシーです。

全ての検証を行いません。

:verify_data => false,
:verify_signer => false,
:verify_chain => false,
:verify_root => false,
:only_trusted => false,
:only_signed => false...
<< < 1 2 3 4 5 ... > >>