223件ヒット
[1-100件を表示]
(0.012秒)
ライブラリ
- ビルトイン (12)
- coverage (7)
- getoptlong (12)
- ipaddr (12)
-
irb
/ frame (12) - optparse (24)
- rake (48)
-
rdoc
/ parser (12) -
rdoc
/ parser / c (12) -
rdoc
/ parser / ruby (12) -
rdoc
/ parser / simple (12) -
rdoc
/ top _ level (48)
クラス
- Coverage (7)
- GetoptLong (12)
- IPAddr (12)
-
IRB
:: Frame (12) - OptionParser (24)
-
RDoc
:: Parser (12) -
RDoc
:: Parser :: C (12) -
RDoc
:: Parser :: Ruby (12) -
RDoc
:: Parser :: Simple (12) -
RDoc
:: TopLevel (48) -
Rake
:: InvocationChain (24) - Thread (12)
モジュール
- Rake (24)
キーワード
-
all
_ classes _ and _ modules (12) - append (12)
- application (12)
- application= (12)
-
find
_ class _ named (12) - getopts (24)
- new (72)
- ntop (12)
-
parser
_ for (12) - reset (12)
- result (7)
- stop (12)
検索結果
先頭5件
-
IRB
:: Frame . top(n = 0) -> Binding (18102.0) -
上から n 番目のコンテキストを取り出します。
上から n 番目のコンテキストを取り出します。
@param n 取り出すコンテキストを Integer で指定します。n は 0 が最
上位になります。 -
IPAddr
. ntop(addr) -> String (6101.0) -
ネットワークバイトオーダーのバイト列で表現された IP アドレスを人間の読める形式に変換します。
ネットワークバイトオーダーのバイト列で表現された IP アドレスを人間の読める形式に変換します。
@param addr ネットワークバイトオーダーのバイト列。 -
OptionParser
. getopts(*opts) -> Hash (6101.0) -
引数をパースした結果を、Hash として返します。(self.new.getopts と同じです)
...引数をパースした結果を、Hash として返します。(self.new.getopts と同じです)
@param argv パースしたい配列を指定します。
@param opts 引数を文字列で指定します。
@raise OptionParser::ParseError パースに失敗した場合、発生します。......実際は OptionParser::ParseError のサブク
ラスになります。
@see OptionParser#getopts... -
OptionParser
. getopts(argv , *opts) -> Hash (6101.0) -
引数をパースした結果を、Hash として返します。(self.new.getopts と同じです)
...引数をパースした結果を、Hash として返します。(self.new.getopts と同じです)
@param argv パースしたい配列を指定します。
@param opts 引数を文字列で指定します。
@raise OptionParser::ParseError パースに失敗した場合、発生します。......実際は OptionParser::ParseError のサブク
ラスになります。
@see OptionParser#getopts... -
Thread
. stop -> nil (6101.0) -
他のスレッドから Thread#run メソッドで再起動されるまで、カレ ントスレッドの実行を停止します。
...ドから Thread#run メソッドで再起動されるまで、カレ
ントスレッドの実行を停止します。
//emlist[例][ruby]{
a = Thread.new { print "a"; Thread.stop; print "c" }
sleep 0.1 while a.status!='sleep'
print "b"
a.run
a.join
# => "abc"
//}
@see Thread#run, Thread#wakeup... -
RDoc
:: TopLevel . new(file _ name) -> RDoc :: TopLevel (3101.0) -
自身を初期化します。
自身を初期化します。
@param file_name ファイル名を文字列で指定します。 -
GetoptLong
. new(*arguments) (3001.0) -
GetoptLong のオブジェクトを生成します。引数が与えられ たときは、それを GetoptLong#set_options メソッドに渡します。
...GetoptLong のオブジェクトを生成します。引数が与えられ
たときは、それを GetoptLong#set_options メソッドに渡します。
@param arguments オプションを定義するための配列の配列を指定します。
@see GetoptLong#set_options... -
RDoc
:: TopLevel . all _ classes _ and _ modules -> [RDoc :: NormalClass | RDoc :: SingleClass | RDoc :: NormalModule] (3001.0) -
RDoc が収集したクラス、モジュールを配列で返します。
RDoc が収集したクラス、モジュールを配列で返します。 -
RDoc
:: TopLevel . find _ class _ named(name) -> RDoc :: NormalClass | RDoc :: SingleClass | nil (3001.0) -
RDoc が収集したクラスの内、name で指定した名前のクラスを返します。見つ からなかった場合は nil を返します。
RDoc が収集したクラスの内、name で指定した名前のクラスを返します。見つ
からなかった場合は nil を返します。
@param name クラス名を文字列で指定します。