るりまサーチ

最速Rubyリファレンスマニュアル検索!
388件ヒット [101-200件を表示] (0.104秒)
トップページ > クエリ:l[x] > クエリ:rect[x]

別のキーワード

  1. matrix l
  2. kernel $-l
  3. _builtin $-l
  4. lupdecomposition l
  5. l

検索結果

<< < 1 2 3 4 > >>

File::Stat#directory? -> bool (9200.0)

ディレクトリの時に真を返します。

...ディレクトリの時に真を返します。

//emlist[][ruby]{
p File::Stat.new($0).directory? #=> false
//}

@see FileTest.#directory?...

FileTest.#directory?(file) -> bool (9200.0)

ファイルがディレクトリの時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...false を返します。

@param file ファイル名を表す文字列か IO オブジェクトを指定します。

@raise IOError 指定された IO オブジェクト file が既に close されていた場合に発生します。

例:
FileTest.directory?('/etc') # => true
FileTest.directo...
...ry?('/etc/passwd') # => false

f = File.open('/etc')
FileTest.directory?(f) # => true
f.close
FileTest.directory?(f) # => IOError: closed stream...

Gem::Ext::ConfigureBuilder.build(extension, directory, dest_path, results) -> Array (9200.0)

@todo

...@todo

Makefile が存在しない場合は、configure スクリプトを実行して
Makefile を作成してから make を実行します。

@param extension このメソッドでは使用しません。

@param directory

@param dest_path

@param results コマンドの実行結果を格納...
...します。破壊的に変更されます。

@see Gem::Ext::Builder.make...

Gem::Ext::ExtConfBuilder.build(extension, directory, dest_path, results) -> Array (9200.0)

@todo

...odo

Makefile が存在しない場合は、extconf.rb を実行して
Makefile を作成してから make を実行します。

@param extension ファイル名を指定します。

@param directory このメソッドでは使用していません。

@param dest_path ???

@param results コマ...
...ンドの実行結果を格納します。破壊的に変更されます。

@see Gem::Ext::Builder.make...

Gem::Ext::RakeBuilder.build(extension, directory, dest_path, results) -> Array (9200.0)

@todo

...ake を実行します。

@param extension ファイル名を指定します。

@param directory このメソッドでは使用していません。

@param dest_path ???

@param results コマンドの実行結果を格納します。破壊的に変更されます。

@see Gem::Ext::Builder.make...

絞り込み条件を変える

Net::FTP::MLSxEntry#directory? -> bool (9200.0)

エントリがディレクトリであれば true を返します。

...エントリがディレクトリであれば true を返します。

Net::FTP::MLSxEntry#type が "dir"、 "pdir"、 "cdir"、
のいずれかであれば true を返します。...

Shell#directory?(file) -> bool (9200.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@param file ファイル名を表す文字列か IO オブジェクトを指定します。

@see FileTest.#directory?...

Shell::CommandProcessor#directory?(file) -> bool (9200.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@param file ファイル名を表す文字列か IO オブジェクトを指定します。

@see FileTest.#directory?...

Shell::Filter#directory?(file) -> bool (9200.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@param file ファイル名を表す文字列か IO オブジェクトを指定します。

@see FileTest.#directory?...

File::Constants::DIRECT -> Integer (9100.0)

このファイルに対する I/O のキャッシュの効果を最小化しようとする。

...ile::Constants::DIRECT フラグ自身はデー
タを同期で転送しようとはするが、 File::Constants::SYNC のようにデータと必要なメタデー
タの転送が保証されるわけではない。 同期 I/O を保証するためには、
File::Constants::DIRECT に加えて File...
...::Constants::SYNC を使用しなければならない。

File.openで使用します。...

絞り込み条件を変える

Gem::Ext::Builder.redirector -> String (9100.0)

@todo

@todo

'2>&1' という文字列を返します。
<< < 1 2 3 4 > >>