623件ヒット
[1-100件を表示]
(0.068秒)
別のキーワード
ライブラリ
クラス
- BasicObject (12)
- CGI (12)
-
CSV
:: Table (12) -
Gem
:: StreamUI :: SilentProgressReporter (12) -
Gem
:: StreamUI :: SimpleProgressReporter (12) -
Gem
:: StreamUI :: VerboseProgressReporter (24) - Method (12)
-
MiniTest
:: Unit (1) -
Net
:: FTP (12) -
Net
:: IMAP (24) -
Net
:: POP3 (108) - Proc (7)
-
Rake
:: FileList (12) -
Scanf
:: FormatSpecifier (6) -
Scanf
:: FormatString (12) - String (12)
- Thread (24)
- UnboundMethod (36)
モジュール
- Enumerable (24)
- Etc (12)
- GC (24)
-
Net
:: HTTPHeader (24) - ObjectSpace (96)
- Timeout (21)
キーワード
- != (12)
- << (7)
- FlagCountError (12)
-
MAX
_ MULTIPART _ COUNT (12) -
SC
_ 2 _ PBS _ ACCOUNTING (12) - acct (12)
- arity (24)
-
auth
_ only (24) -
basic
_ auth (12) -
count
_ nodes (12) -
count
_ objects (12) -
count
_ objects _ size (12) -
count
_ space? (6) -
count
_ tdata _ objects (12) -
delete
_ all (24) -
each
_ object (48) - egrep (12)
- foreach (12)
-
garbage
_ collect (12) - inspect (24)
-
max
_ flag _ count (12) -
max
_ flag _ count= (12) - priority (12)
- priority= (12)
-
proxy
_ basic _ auth (12) - prune (6)
-
ruby 1
. 6 feature (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / specification _ command (12) - skips= (1)
-
sort
_ by (24) -
spec
_ count (6) - start (60)
- timeout (21)
-
to
_ s (12) - updated (12)
検索結果
先頭5件
-
Gem
:: StreamUI :: SilentProgressReporter # count -> nil (21101.0) -
何もしません。
何もしません。 -
Gem
:: StreamUI :: SimpleProgressReporter # count -> Integer (21101.0) -
Gem::StreamUI::SimpleProgressReporter#updated が呼び出された回数を返します。
...Gem::StreamUI::SimpleProgressReporter#updated が呼び出された回数を返します。... -
Gem
:: StreamUI :: VerboseProgressReporter # count -> Integer (21101.0) -
Gem::StreamUI::VerboseProgressReporter#updated が呼び出された回数を返します。
...Gem::StreamUI::VerboseProgressReporter#updated が呼び出された回数を返します。... -
String
# count(*chars) -> Integer (18149.0) -
chars で指定された文字が文字列 self にいくつあるか数えます。
...。
@param chars 出現回数を数える文字のパターン
//emlist[例][ruby]{
p 'abcdefg'.count('c') # => 1
p '123456789'.count('2378') # => 4
p '123456789'.count('2-8', '^4-6') # => 4
# ファイルの行数を数える
n_lines = File.read("foo").count("\n")
#......ファイルの末尾に改行コードがない場合にも対処する
buf = File.read("foo")
n_lines = buf.count("\n")
n_lines += 1 if /[^\n]\z/ =~ buf
# if /\n\z/ !~ buf だと空ファイルを 1 行として数えてしまうのでダメ
//}... -
CGI
:: MAX _ MULTIPART _ COUNT -> Integer (12201.0) -
Maximum number of request parameters when multipart
...Maximum number of request parameters when multipart... -
Scanf
:: FormatSpecifier # count _ space? (12201.0) -
@todo
@todo -
Scanf
:: FormatString # spec _ count (12201.0) -
@todo
@todo -
Net
:: IMAP . max _ flag _ count=(count) (9214.0) -
サーバからのレスポンスに含まれる flag の上限を設定します。
...す。
これを越えた flag がレスポンスに含まれている場合は、
Net::IMAP::FlagCountError 例外が発生します。
デフォルトは 10000 です。通常は変える必要はないでしょう。
@param count 設定する最大値の整数
@see Net::IMAP.max_flag_count... -
Net
:: IMAP . max _ flag _ count -> Integer (9107.0) -
サーバからのレスポンスに含まれる flag の上限を返します。
...サーバからのレスポンスに含まれる flag の上限を返します。
これを越えた flag がレスポンスに含まれている場合は、
Net::IMAP::FlagCountError 例外が発生します。
@see Net::IMAP.max_flag_count=... -
ObjectSpace
. # count _ nodes(result _ hash = nil) -> Hash (9107.0) -
ノードの種類ごとの数を格納したハッシュを返します。
...@param result_hash 戻り値のためのハッシュを指定します。省略した場合は新
しくハッシュを作成します。result_hash の内容は上書き
されます。プローブ効果を避けるために使用します。
@raise TypeErro......ません。パフォー
マンスやメモリ管理に興味のある C Ruby の開発者向けのものです。
//emlist[例][ruby]{
ObjectSpace.count_nodes
# => {:NODE_METHOD=>2027, :NODE_FBODY=>1927, :NODE_CFUNC=>1798, ...}
//}
戻り値のハッシュは処理系に依存します。これ...