るりまサーチ

最速Rubyリファレンスマニュアル検索!
760件ヒット [701-760件を表示] (0.109秒)
トップページ > クエリ:t[x] > クエリ:pty[x]

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

ライブラリ

モジュール

オブジェクト

検索結果

<< < ... 6 7 8 >>

OpenSSL::SSL::OP_MSIE_SSLV2_RSA_PADDING -> Integer (9100.0)

SSL 通信での各種バグ回避コードを有効にするフラグです。

...るフラグです。

OpenSSL::SSL::SSLContext#options= で利用します。

通常は OpenSSL::SSL::OP_ALL でこれらすべてを有効にします。
特定のフラグのみ無効にしたい場合は例えば

ctx.options = OP_ALL & ~OP_DONT_INSERT_EMPTY_FRAGMENTS

などとします。...

Rake::InvocationChain::EmptyInvocationChain#append(task_name) -> Rake::InvocationChain (9100.0)

与えられた値を追加した Rake::InvocationChain を返します。

...与えられた値を追加した Rake::InvocationChain を返します。

@param task_name 追加する値を指定します。...

Rake::InvocationChain::EmptyInvocationChain#member?(task_name) -> bool (9100.0)

偽を返します。

偽を返します。

File.zero?(path) -> bool (6100.0)

FileTest.#zero? と同じです。

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

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

FileTest.#zero?(file) -> bool (6000.0)

ファイルが存在して、そのサイズが 0 である時に真を返します。 そうでない場合、あるいはシステムコールに失敗した場合には false を返します。

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

//emlist[例:][ruby]{
IO.write("zero.txt", "")
FileTest.zero?("zero.txt") # => true
IO.write("nonzero.txt", "1")
FileTest.zero?("nonzero.txt") # => false
//}

@see FileTest.#size, FileTest.#size?...

絞り込み条件を変える

StringScanner#eos? -> bool (6000.0)

スキャンポインタが文字列の末尾を指しているなら true を、 末尾以外を指しているなら false を返します。

...ているなら true を、
末尾以外を指しているなら false を返します。

//emlist[例][ruby]{
require 'strscan'

s = StringScanner.new('test string')
s.eos? # => false
s.scan(/\w+/)
s.scan(/\s+/)
s.scan(/\w+/)
s.eos? # => true
//}

StringScanner#empty? は将来のバ...
...ージョンで削除される予定です。
代わりに StringScanner#eos? を使ってください。...
<< < ... 6 7 8 >>