るりまサーチ

最速Rubyリファレンスマニュアル検索!
596件ヒット [1-100件を表示] (0.050秒)

別のキーワード

  1. _builtin length
  2. csv length
  3. dbm length
  4. rss length=
  5. set length

ライブラリ

クラス

モジュール

検索結果

<< 1 2 3 ... > >>

GC.stat(key) -> Numeric (18114.0)

GC 内部の統計情報を Hash で返します。

...の統計情報をHash で返します。
引数 key を指定した場合は数値を返します。

GC.stat
# =>
{
:count=>2,
:heap_used=>9,
:heap_length=>11,
:heap_increment=>2,
:heap_live_slot=>6836,
:heap_free_slot=>519,
:heap_final_slot=>0,
:heap_...
...報をHash で返します。
引数 key を指定した場合は数値を返します。

GC.stat
# =>
{
:count=>0,
:heap_allocated_pages=>24,
:heap_sorted_length=>24,
:heap_allocatable_pages=>0,
:heap_available_slots=>9783,
:heap_live_slots=>7713,...

GC.stat(result_hash = {}) -> {Symbol => Integer} (18114.0)

GC 内部の統計情報を Hash で返します。

...の統計情報をHash で返します。
引数 key を指定した場合は数値を返します。

GC.stat
# =>
{
:count=>2,
:heap_used=>9,
:heap_length=>11,
:heap_increment=>2,
:heap_live_slot=>6836,
:heap_free_slot=>519,
:heap_final_slot=>0,
:heap_...
...報をHash で返します。
引数 key を指定した場合は数値を返します。

GC.stat
# =>
{
:count=>0,
:heap_allocated_pages=>24,
:heap_sorted_length=>24,
:heap_allocatable_pages=>0,
:heap_available_slots=>9783,
:heap_live_slots=>7713,...

JSON::State#buffer_initial_length=(length) (9250.0)

This sets the initial length of the buffer to length, if length > 0, otherwise its value isn't changed.

...This sets the initial length of the buffer to length, if length > 0,
otherwise its value isn't changed....

JSON::State#buffer_initial_length -> Integer (9117.0)

This integer returns the current initial length of the buffer.

...This integer returns the current initial length of the buffer....

WEBrick::HTTPStatus::LengthRequired (9016.0)

HTTP のステータスコード 411 Length Required を表すクラスです。

...HTTP のステータスコード 411 Length Required を表すクラスです。...

絞り込み条件を変える

WEBrick::HTTPStatus::RC_LENGTH_REQUIRED (6101.0)

HTTP のステータスコードを表す整数です。

...HTTP のステータスコードを表す整数です。

require 'webrick'
p WEBrick::HTTPStatus::RC_INTERNAL_SERVER_ERROR #=> 500...

JSON::State.new(options = {}) -> JSON::State (3112.0)

自身を初期化します。

...uffer_initial_length
sets the initial length of the generator's internal buffer.

//emlist[例 Hash を指定][ruby]{
require "json"

json_state = JSON::State.new(indent: "\t")
json_state.class # => JSON::Ext::Generator::State
json_state.indent # => "\t"
//}

//emlist[例 JSON::State を指定][r...
...uby]{
require "json"

json_state = JSON::State.new(indent: "\t")
copy = JSON::State.new(json_state)
copy.class # => JSON::Ext::Generator::State
copy.indent # => "\t"
//}...

JSON::State#to_h -> Hash (3006.0)

自身をハッシュに変換します。

...quire "pp"

json_state = JSON::State.new
pp json_state.to_h

# => {:indent=>"",
# :space=>"",
# :space_before=>"",
# :object_nl=>"",
# :array_nl=>"",
# :allow_nan=>false,
# :ascii_only=>false,
# :max_nesting=>100,
# :depth=>0,
# :buffer_initial_length=>1024}
//}...

JSON::State#to_hash -> Hash (3006.0)

自身をハッシュに変換します。

...quire "pp"

json_state = JSON::State.new
pp json_state.to_h

# => {:indent=>"",
# :space=>"",
# :space_before=>"",
# :object_nl=>"",
# :array_nl=>"",
# :allow_nan=>false,
# :ascii_only=>false,
# :max_nesting=>100,
# :depth=>0,
# :buffer_initial_length=>1024}
//}...

WEBrick::HTTPStatus::RC_ACCEPTED (3001.0)

HTTP のステータスコードを表す整数です。

...HTTP のステータスコードを表す整数です。

require 'webrick'
p WEBrick::HTTPStatus::RC_INTERNAL_SERVER_ERROR #=> 500...

絞り込み条件を変える

<< 1 2 3 ... > >>