るりまサーチ

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

別のキーワード

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

検索結果

File::Stat#pipe? -> bool (21207.0)

無名パイプおよび名前つきパイプ(FIFO)の時に真を返します。

...無名パイプおよび名前つきパイプ(FIFO)の時に真を返します。

//emlist[][ruby]{
system("mkfifo /tmp/pipetest")
p File::Stat.new("/tmp/pipetest").pipe? #=> true
//}...

File.pipe?(path) -> bool (21200.0)

FileTest.#pipe? と同じです。

...FileTest.#pipe? と同じです。

@param path パスを表す文字列か IO オブジェクトを指定します。...

FileTest.#pipe?(file) -> bool (21200.0)

指定したファイルがパイプである時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...false を返します。

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

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

例:
r, w = IO.pipe
FileTest.pipe?(r) # => true
FileTest...

Shell#pipe?(file) -> bool (21200.0)

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

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

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

@see FileTest.#pipe?...

Shell::CommandProcessor#pipe?(file) -> bool (21200.0)

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

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

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

@see FileTest.#pipe?...

絞り込み条件を変える

Shell::Filter#pipe?(file) -> bool (21200.0)

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

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

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

@see FileTest.#pipe?...

Pathname#pipe? -> bool (18201.0)

FileTest.pipe?(self.to_s) と同じです。

...FileTest.pipe?(self.to_s) と同じです。


@see FileTest.#pipe?...