692件ヒット
[1-100件を表示]
(0.048秒)
別のキーワード
ライブラリ
- ビルトイン (283)
- find (22)
- matrix (48)
- mkmf (36)
- pathname (22)
-
rdoc
/ context (12) -
rdoc
/ top _ level (24) -
rubygems
/ command _ manager (24) -
rubygems
/ commands / dependency _ command (24) -
rubygems
/ commands / which _ command (12) -
rubygems
/ dependency _ installer (24) -
rubygems
/ dependency _ list (12) -
rubygems
/ gem _ path _ searcher (24) -
rubygems
/ source _ index (12) -
rubygems
/ spec _ fetcher (12) - socket (24)
- uri (12)
クラス
- Array (79)
- BasicObject (12)
- Dir (84)
- Encoding (24)
-
Gem
:: CommandManager (24) -
Gem
:: Commands :: DependencyCommand (24) -
Gem
:: Commands :: WhichCommand (12) -
Gem
:: DependencyInstaller (24) -
Gem
:: DependencyList (12) -
Gem
:: GemPathSearcher (24) -
Gem
:: SourceIndex (12) -
Gem
:: SpecFetcher (12) - Matrix (48)
- Pathname (22)
-
RDoc
:: Context (12) -
RDoc
:: TopLevel (24) - Range (24)
-
Socket
:: AncillaryData (12) -
Socket
:: Ifaddr (12) - String (12)
-
URI
:: Generic (12)
モジュール
- Enumerable (24)
- Find (22)
- Kernel (36)
-
Process
:: GID (12) -
Process
:: UID (12)
キーワード
-
$ LDFLAGS (12) -
$ libs (12) -
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) -
NEWS for Ruby 3
. 0 . 0 (5) - bsearch (24)
-
bsearch
_ index (10) - entries (24)
-
find
_ all (12) -
find
_ class _ named (12) -
find
_ command (12) -
find
_ command _ possibilities (12) -
find
_ enclosing _ module _ named (12) -
find
_ executable (12) -
find
_ gems (12) -
find
_ gems _ with _ sources (12) -
find
_ index (72) -
find
_ local _ symbol (12) -
find
_ matching (12) -
find
_ name (24) -
find
_ paths (12) -
find
_ proxy (12) -
find
_ reverse _ dependencies (12) -
find
_ spec _ by _ name _ and _ version (12) - foreach (24)
-
from
_ name (24) - ifindex (12)
- index (48)
-
ipv6
_ pktinfo _ ifindex (12) - list (12)
-
method
_ missing (12) - new (12)
- open (24)
- pack (21)
- pack テンプレート文字列 (12)
-
ruby 1
. 6 feature (12) - unpack (12)
-
webrick
/ cgi (12) - パターンマッチ (12)
検索結果
先頭5件
-
Find
. # find(*dirs , ignore _ error: true) -> Enumerator (35260.0) -
find(1) のように dir 配下のすべてのファイルや ディレクトリを一つずつ引数 file に渡してブロックを実行します。
...
find(1) のように dir 配下のすべてのファイルや
ディレクトリを一つずつ引数 file に渡してブロックを実行します。
ディレクトリのシンボリックリンクは辿りません。
また file に渡される順序は不定です。
ブロックを省略......@param ignore_error 探索中に発生した例外を無視するかどうかを指定します。
例:
require 'find'
Find.find('/tmp') {|f|
Find.prune if f == "/tmp/bar"
...
}
あるディレクトリ配下の探索を省略したい場合は上記のように、
Find.#prune......用します。この例では "/tmp/bar"
配下のファイルやディレクトリを探索しません。prune の代わりに
d:spec/control#next を使用した場合、"/tmp/bar" 自体をスキップする
だけで、その配下の探索は続行されます。
@see find(1), Find.#prune... -
Find
. # find(*dirs , ignore _ error: true) {|file| . . . } -> nil (35260.0) -
find(1) のように dir 配下のすべてのファイルや ディレクトリを一つずつ引数 file に渡してブロックを実行します。
...
find(1) のように dir 配下のすべてのファイルや
ディレクトリを一つずつ引数 file に渡してブロックを実行します。
ディレクトリのシンボリックリンクは辿りません。
また file に渡される順序は不定です。
ブロックを省略......@param ignore_error 探索中に発生した例外を無視するかどうかを指定します。
例:
require 'find'
Find.find('/tmp') {|f|
Find.prune if f == "/tmp/bar"
...
}
あるディレクトリ配下の探索を省略したい場合は上記のように、
Find.#prune......用します。この例では "/tmp/bar"
配下のファイルやディレクトリを探索しません。prune の代わりに
d:spec/control#next を使用した場合、"/tmp/bar" 自体をスキップする
だけで、その配下の探索は続行されます。
@see find(1), Find.#prune... -
Gem
:: GemPathSearcher # find(path) -> Gem :: Specification | nil (24207.0) -
与えられたパスにマッチする Gem::Specification を一つだけ返します。
...与えられたパスにマッチする Gem::Specification を一つだけ返します。
@see Enumerable#find... -
Encoding
. find(name) -> Encoding (21207.0) -
指定された name という名前を持つ Encoding オブジェクトを返します。
...定された name という名前を持つ Encoding オブジェクトを返します。
@param name エンコーディング名を表す String を指定します。
@return 発見された Encoding オブジェクトを返します。
@raise ArgumentError 指定した名前のエンコーディ......ロケールエンコーディングを表す locale、default_external を表す external、default_internal を表す internal、ファイルシステムエンコーディングを表す filesystem があります。
//emlist[例][ruby]{
p Encoding.find("utf-8") #=> #<Encoding:UTF-8>
//}... -
Pathname
# find(ignore _ error: true) -> Enumerator (18232.0) -
self 配下のすべてのファイルやディレクトリを 一つずつ引数 pathname に渡してブロックを実行します。
...クを実行します。
require 'find'
Find.find(self.to_s) {|f| yield Pathname.new(f)}
と同じです。
ブロックを省略した場合は Enumerator を返します。
@param ignore_error 探索中に発生した例外を無視するかどうかを指定します。
@see Find.#find... -
Pathname
# find(ignore _ error: true) {|pathname| . . . } -> nil (18232.0) -
self 配下のすべてのファイルやディレクトリを 一つずつ引数 pathname に渡してブロックを実行します。
...クを実行します。
require 'find'
Find.find(self.to_s) {|f| yield Pathname.new(f)}
と同じです。
ブロックを省略した場合は Enumerator を返します。
@param ignore_error 探索中に発生した例外を無視するかどうかを指定します。
@see Find.#find... -
Gem
:: Commands :: DependencyCommand # find _ gems(name , source _ index) -> Hash (15201.0) -
与えられた Gem の名前をインデックスから検索します。
...与えられた Gem の名前をインデックスから検索します。
@param name Gem の名前を指定します。
@param source_index Gem::SourceIndex のインスタンスを指定します。
@see Gem::SourceIndex#search... -
Gem
:: DependencyInstaller # find _ gems _ with _ sources(dep) -> Array (15201.0) -
与えられた条件にマッチする Gem::Specification のインスタンスと URI のペアのリストを 返します。
...ッチする Gem::Specification のインスタンスと URI のペアのリストを
返します。
Gem はローカル (Dir.pwd) とリモート (Gem.sources) の両方から検索します。
結果は、バージョンの新しい順が先にきます。また、ローカルの Gem も先に......きます。
@param dep Gem::Dependency のインスタンスを指定します。... -
RDoc
:: Context # find _ enclosing _ module _ named(name) -> RDoc :: NormalModule | nil (12217.0) -
find a module at a higher scope
...
find a module at a higher scope...