るりまサーチ

最速Rubyリファレンスマニュアル検索!
406件ヒット [201-300件を表示] (0.009秒)

別のキーワード

  1. _builtin sum
  2. enumerable sum
  3. array sum
  4. string sum

検索結果

<< < 1 2 3 4 5 > >>

OptionParser#summary_indent -> String (6100.0)

サマリを表示する時のインデントを文字列で返します。

..., "--update")
opts.on_tail("-h", "--help")
end

opts.summary_indent # => " "
opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summary_indent = " "
opts.summary_indent # => " "
opts.summarize
# => [" -i, --init\n", " -u, --update\n", "...

OptionParser#summary_indent=(indent) (6100.0)

サマリを表示する時のインデントを文字列で指定します。

...pdate")
opts.on_tail("-h", "--help")
end

opts.summary_indent # => " "
opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summary_indent = " " # => " "
opts.summary_indent # => " "
opts.summarize
# => [" -i, --init\n", " -u, --update\n"...

OptionParser#summary_width -> Integer (6100.0)

サマリを表示するときの幅を整数で返します。

...pts.on("-u", "--update")
opts.on_tail("-h", "--help")
end

opts.summary_width # => 32
opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summary_width = 8
opts.summary_width # =>8
opts.summarize
# => [" -i\n", " --init\n", " -u\n", "...

OptionParser#summary_width=(width) (6100.0)

サマリを表示するときの幅を整数で指定します。

...on("-u", "--update")
opts.on_tail("-h", "--help")
end

opts.summary_width # => 32
opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summary_width = 8 # => 8
opts.summary_width # => 8
opts.summarize
# => [" -i\n", " --init\n", " -u\n", "...

PStore::EMPTY_MARSHAL_CHECKSUM -> String (6100.0)

内部で利用する定数です。

内部で利用する定数です。

絞り込み条件を変える

RubyVM::MJIT.resume -> bool (6100.0)

RubyVM::MJIT.pause で一時停止した JIT を再開します。

RubyVM::MJIT.pause で一時停止した JIT を再開します。

@return 再開したときは true を、すでに動いているときは false を返します。
@raise RuntimeError JIT が有効ではないときに発生します。
@raise RuntimeError JIT の再開に失敗した時に発生します。

@see RubyVM::MJIT.enabled?, RubyVM::MJIT.pause

Socket::Constants::IPV6_CHECKSUM -> Integer (6100.0)

Byte offset into a packet where the checksum is located. BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Byte offset into a packet where the checksum is located.
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IPV6,
ip6(4freebsd),
3542...

Socket::IPV6_CHECKSUM -> Integer (6100.0)

Byte offset into a packet where the checksum is located. BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...Byte offset into a packet where the checksum is located.
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IPV6,
ip6(4freebsd),
3542...

Gem::Package::BadCheckSum (6000.0)

チェックサムが一致しない場合に発生する例外です。

チェックサムが一致しない場合に発生する例外です。
<< < 1 2 3 4 5 > >>