ライブラリ
- ビルトイン (180)
- fileutils (91)
-
net
/ imap (84) - openssl (24)
- pathname (12)
- pstore (96)
- psych (72)
-
rexml
/ document (636) -
rexml
/ streamlistener (36) - rss (48)
-
rubygems
/ security (84) -
rubygems
/ server (12) -
webrick
/ httpservlet / filehandler (12) -
win32
/ registry (216) - win32ole (24)
クラス
- Dir (36)
-
Gem
:: Security :: Policy (24) -
Gem
:: Server (12) -
Net
:: IMAP (36) -
Net
:: IMAP :: MailboxQuotaRoot (24) -
Net
:: IMAP :: ThreadMember (12) - PStore (84)
- Pathname (12)
-
Psych
:: Nodes :: Document (12) -
Psych
:: Nodes :: Node (12) -
Psych
:: TreeBuilder (12) -
RDoc
:: Options (24) -
REXML
:: Attributes (156) -
REXML
:: CData (36) -
REXML
:: DocType (24) -
REXML
:: Document (12) -
REXML
:: Element (192) -
REXML
:: Elements (72) -
REXML
:: Instruction (24) -
REXML
:: Text (12) -
REXML
:: XPath (36) -
WEBrick
:: HTTPServlet :: FileHandler (12) - WIN32OLE (12)
-
WIN32OLE
_ TYPELIB (12) -
Win32
:: Registry (108)
モジュール
- FileUtils (79)
-
Gem
:: Security (60) - Math (24)
-
OpenSSL
:: OCSP (12) -
OpenSSL
:: X509 (12) - Process (24)
-
Process
:: GID (36) -
Process
:: UID (48) -
REXML
:: StreamListener (36) -
RSS
:: RootElementMixin (36) -
Win32
:: Registry :: Constants (108)
キーワード
- AlmostNoSecurity (12)
- Comment (12)
- Default (12)
- Document (24)
- FileTest (12)
- FileUtils (12)
-
HKEY
_ CLASSES _ ROOT (24) -
HKEY
_ CURRENT _ CONFIG (24) -
HKEY
_ CURRENT _ USER (24) -
HKEY
_ DYN _ DATA (24) -
HKEY
_ LOCAL _ MACHINE (24) -
HKEY
_ PERFORMANCE _ DATA (24) -
HKEY
_ PERFORMANCE _ NLSTEXT (24) -
HKEY
_ PERFORMANCE _ TEXT (24) -
HKEY
_ USERS (24) - HighSecurity (12)
- Instruction (12)
- LowSecurity (12)
- MailboxQuotaRoot (12)
- Mapping (12)
- MediumSecurity (12)
-
NEWS for Ruby 2
. 1 . 0 (12) - NOEXPLICIT (12)
- NoSecurity (12)
- PStore (12)
- Pretty (12)
- ReFe (12)
- RootElementMixin (12)
- Transitive (12)
- TreeBuilder (12)
-
V
_ ERR _ UNABLE _ TO _ GET _ ISSUER _ CERT (12) - [] (24)
- []= (24)
- abort (12)
-
add
_ attribute (24) -
add
_ element (12) - attribute (12)
- cbrt (12)
-
change
_ privilege (24) - chown (12)
-
chown
_ R (12) - chroot (12)
- commit (12)
- connect (12)
- content (12)
-
copy
_ entry (12) -
copy
_ file (12) -
cp
_ lr (7) -
cp
_ r (12) - delete (36)
-
delete
_ all (12) -
delete
_ element (12) -
delete
_ namespace (12) - doctype (12)
- each (36)
-
each
_ attribute (12) -
each
_ element _ with _ attribute (12) -
each
_ element _ with _ text (12) - eid= (24)
- elementdecl (12)
- entitydecl (12)
- fetch (12)
- first (12)
-
from
_ name (12) -
get
_ attribute (12) -
get
_ attribute _ ns (12) -
get
_ text (12) - getquota (12)
- getquotaroot (12)
-
grant
_ privilege (24) - groups= (12)
-
has
_ elements? (12) - home (24)
- initgroups (12)
- length (12)
- mailbox (12)
- match (12)
- namespaces (12)
- new (48)
-
next
_ element (12) -
output
_ encoding (12) -
output
_ encoding= (12) - prefixes (12)
- public (12)
- quotaroots (12)
- rdoc (12)
-
rexml
/ parsers / pullparser (12) -
rexml
/ parsers / sax2parser (12) -
rexml
/ parsers / streamparser (12) -
rexml
/ parsers / ultralightparser (12) - root= (12)
- root? (24)
-
root
_ node (12) - roots (12)
-
ruby 1
. 8 . 3 feature (12) -
rubygems
/ security (12) - seqno (12)
- setquota (12)
- size (24)
- sqrt (12)
- system (12)
- tag (12)
- target (12)
- text (12)
- text= (12)
-
to
_ a (24) -
to
_ s (12) -
to
_ xml (12) - transaction (12)
- value (12)
-
verify
_ root (12) -
verify
_ root= (12) - xpath (12)
検索結果
先頭5件
-
REXML
:: Element # root _ node -> REXML :: Document | REXML :: Node (6137.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) (6117.0) -
コマンドライン引数の --root オプションと同様の指定を行います。
...コマンドライン引数の --root オプションと同様の指定を行います。
@param val パスを文字列で指定します。... -
Pathname
# root? -> bool (6113.0) -
self がルートディレクトリであれば真を返します。判断は文字列操作によっ て行われ、ファイルシステムはアクセスされません。
...self がルートディレクトリであれば真を返します。判断は文字列操作によっ
て行われ、ファイルシステムはアクセスされません。
//emlist[例][ruby]{
require 'pathname'
Pathname('/').root? # => true
Pathname('/im/sure').root? # => false
//}... -
Gem
:: Security :: Policy # verify _ root -> bool (6101.0) -
この値が真である場合は、証明書チェーンのルートを検証します。
この値が真である場合は、証明書チェーンのルートを検証します。 -
Gem
:: Security :: Policy # verify _ root=(flag) (6101.0) -
証明書チェーンのルートを検証するかどうかを設定します。
証明書チェーンのルートを検証するかどうかを設定します。
@param flag 真、または偽を指定します。 -
PStore
# root?(name) -> bool (6101.0) -
ルート name がデータベースに格納されている場合に真を返します。
ルート name がデータベースに格納されている場合に真を返します。
@param name 探索するルート。
@raise PStore::Error トランザクション外でこのメソッドが呼び出された場合に発生します。
@see Hash#key? -
Win32
:: Registry :: Constants :: HKEY _ CLASSES _ ROOT (6101.0) -
@todo
@todo
定義済キー値。
これらは Integer で、Win32::Registry オブジェクトではありません。 -
Win32
:: Registry :: HKEY _ CLASSES _ ROOT -> Win32 :: Registry (6101.0) -
@todo
@todo
それぞれの定義済キーを表す Win32::Registry オブジェクトです。
詳細は以下の MSDN Library を参照してください。
* Predefined Keys: http://msdn.microsoft.com/library/en-us/sysinfo/base/predefined_keys.asp -
Dir
. chroot(path) -> 0 (6100.0) -
ルートディレクトリを path に変更します。
...ムのマニュアルの 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...