205件ヒット
[101-200件を表示]
(0.098秒)
別のキーワード
ライブラリ
- ビルトイン (74)
- delegate (24)
-
irb
/ input-method (12) -
irb
/ output-method (12) - pathname (11)
- prime (36)
- stringio (12)
- tsort (24)
クラス
- Delegator (24)
- Dir (11)
- File (11)
-
File
:: Stat (12) - IO (28)
-
IRB
:: InputMethod (12) -
IRB
:: OutputMethod (12) - Object (12)
- Pathname (11)
-
Prime
:: PseudoPrimeGenerator (36) - StringIO (12)
モジュール
- TSort (24)
キーワード
-
_ _ getobj _ _ (12) -
_ _ setobj _ _ (12) - birthtime (34)
- fcntl (12)
- fdatasync (12)
- fileno (11)
- gets (12)
- next (12)
- pread (8)
- print (12)
- pwrite (8)
-
respond
_ to? (12) - rewind (12)
- succ (12)
-
tsort
_ each _ child (12) -
tsort
_ each _ node (12)
検索結果
先頭5件
-
File
:: Stat # birthtime -> Time (7.0) -
作成された時刻を返します。
...作成された時刻を返します。
@raise NotImplementedError Windows のような birthtime のない環境で発生します。
//emlist[][ruby]{
File.write("testfile", "foo")
sleep 10
File.write("testfile", "bar")
sleep 10
File.chmod(0644, "testfile")
sleep 10
File.read("testfile")
File.... -
IO
# fdatasync -> 0 (7.0) -
IO のすべてのバッファされているデータを直ちにディスクに書き込みます。
...い OS 上では代わりに
IO#fsync を呼びだします。
IO#fsync との違いは fdatasync(2) を参照してください。
@raise NotImplementedError fdatasync(2) も fsync(2) も
サポートされていない OS で発生します。
//emlist[例][ruby]{
require "tempfile"
Temp... -
IO
# pread(maxlen , offset , outbuf = "") -> string (7.0) -
preadシステムコールを使ってファイルポインタを変更せずに、また現在のファイルポインタに 依存せずにmaxlenバイト読み込みます。
...シークまたは書き込みが失敗した場合に発生します。
@raise EOFError EOF に到達した時に発生します。
@raise NotImplementedError システムコールがサポートされていない OS で発生します。
//emlist[例][ruby]{
File.write("testfile", "This is line... -
IO
# pwrite(string , offset) -> Integer (7.0) -
stringをoffsetの位置にpwrite()システムコールを使って書き込みます。
...込んだバイト数を返します。
@raise Errno::EXXX シークまたは書き込みが失敗した場合に発生します。
@raise NotImplementedError システムコールがサポートされていない OS で発生します。
//emlist[例][ruby]{
File.open("testfile", "w") do |f|
f.... -
Pathname
# birthtime -> Time (7.0) -
File.birthtime(self.to_s) を渡したものと同じです。
...File.birthtime(self.to_s) を渡したものと同じです。
@raise NotImplementedError Windows のような birthtime のない環境で発生します。
@see File.birthtime... -
Prime
:: PseudoPrimeGenerator # next -> () (7.0) -
次の擬似素数を返します。 また内部的な位置を進めます。
...次の擬似素数を返します。
また内部的な位置を進めます。
サブクラスで実装してください。
@raise NotImplementedError 必ず発生します。... -
Prime
:: PseudoPrimeGenerator # rewind -> () (7.0) -
列挙状態を巻き戻します。
...列挙状態を巻き戻します。
サブクラスで実装してください。
@raise NotImplementedError 必ず発生します。
@see Enumerator#rewind... -
Prime
:: PseudoPrimeGenerator # succ -> () (7.0) -
次の擬似素数を返します。 また内部的な位置を進めます。
...次の擬似素数を返します。
また内部的な位置を進めます。
サブクラスで実装してください。
@raise NotImplementedError 必ず発生します。... -
TSort
# tsort _ each _ child(node) {|child| . . . } -> () (7.0) -
TSort で拡張されるクラスで定義されていなければならないメソッドです。
...るクラスで定義されていなければならないメソッドです。
tsort_each_child is used to iterate for child nodes of node.
@param node ノードを指定します。
@raise NotImplementedError TSort で拡張されるクラスで定義されていない場合発生します。... -
TSort
# tsort _ each _ node {|node| . . . } -> () (7.0) -
TSort で拡張されるクラスで定義されていなければならないメソッドです。
...TSort で拡張されるクラスで定義されていなければならないメソッドです。
tsort_each_node is used to iterate for all nodes over a graph.
@raise NotImplementedError TSort で拡張されるクラスで定義されていない場合発生します。...