168件ヒット
[1-100件を表示]
(0.140秒)
ライブラリ
- json (60)
-
net
/ http (36) - openssl (48)
-
rexml
/ parsers / pullparser (12) -
rubygems
/ remote _ fetcher (12)
クラス
-
Gem
:: RemoteFetcher (12) -
JSON
:: State (60) -
Net
:: HTTP (36) -
OpenSSL
:: SSL :: SSLContext (36) -
OpenSSL
:: X509 :: StoreContext (12) -
REXML
:: Parsers :: PullParser (12)
キーワード
- depth= (12)
-
error
_ depth (12) -
max
_ nesting= (12) -
open
_ uri _ or _ path (12) - peek (12)
- propfind (12)
-
set
_ params (12) -
to
_ h (12) -
to
_ hash (12) -
verify
_ depth (24) -
verify
_ depth= (24)
検索結果
先頭5件
-
JSON
:: State # depth -> Integer (24218.0) -
This integer returns the current depth of data structure nesting.
...
This integer returns the current depth of data structure nesting.... -
Net
:: HTTP # verify _ depth=(depth) (12421.0) -
証明書チェイン上の検証する最大の深さを設定します。
...証明書チェイン上の検証する最大の深さを設定します。
デフォルトは nil で、この場合 OpenSSL のデフォルト値(9)が使われます。
@param depth 最大深さを表す整数
@see Net::HTTP#verify_depth, OpenSSL::SSL::SSLContext#verify_depth=... -
JSON
:: State # depth=(depth) (12419.0) -
This sets the maximum level of data structure nesting in the generated JSON to the integer depth, max_nesting = 0 if no maximum should be checked.
...
This sets the maximum level of data structure nesting in the generated
JSON to the integer depth, max_nesting = 0 if no maximum should be
checked.... -
OpenSSL
:: SSL :: SSLContext # verify _ depth=(depth) (12415.0) -
証明書チェイン上の検証する最大の深さを設定します。
...証明書チェイン上の検証する最大の深さを設定します。
デフォルトは nil で、この場合 OpenSSL のデフォルト値(9)が使われます。
@param depth 最大深さを表す整数
@see OpenSSL::SSL::SSLContext#verify_depth... -
Net
:: HTTP # verify _ depth -> Integer (12214.0) -
証明書チェイン上の検証する最大の深さを返します。
...証明書チェイン上の検証する最大の深さを返します。
@see Net::HTTP#verify_depth=, OpenSSL::SSL::SSLContext#verify_depth... -
OpenSSL
:: SSL :: SSLContext # verify _ depth -> Integer | nil (12208.0) -
証明書チェイン上の検証する最大の深さを返します。
...証明書チェイン上の検証する最大の深さを返します。
デフォルトは nil です。
@see OpenSSL::SSL::SSLContext#verify_depth=... -
OpenSSL
:: X509 :: StoreContext # error _ depth -> Integer (12202.0) -
エラーが起きた場所の深さを返します。
...:StoreContext#verify を呼び出したあと、
このメソッドを呼ぶと検証でエラーが起きた場所の深さを返します。
証明書チェインの各証明書を検証した
コールバック(OpenSSL::X509::Store#verify_callback=)が検証時に
呼びだされ、StoreContext... -
Gem
:: RemoteFetcher # open _ uri _ or _ path(uri , last _ modified = nil , head = false , depth = 0) -> StringIO | File (6320.0) -
@param uri URI を指定します。
...URI を指定します。
@param last_modified 最終更新時刻を指定します。
@param head 真を指定するとヘッダ情報のみ取得します。
@param depth 現在のリダイレクト回数を指定します。
@raise Gem::RemoteFetcher::FetchError デフォルトでは 11 回......リダイレクトした場合に発生します。
depth を指定すると 10 - depth 回より多くリダイレクトした場合にこの例外が発生するようになります。
また HTTP のレスポンスが想定外のものの場合にも発生します。... -
JSON
:: State # max _ nesting=(depth) (6202.0) -
生成される JSON 形式の文字列のネストの深さの最大値をセットします。
...せん。
//emlist[例][ruby]{
require "json"
json_state = JSON::State.new(max_nesting: 2)
json_state.max_nesting # => 2
JSON.generate([[]], json_state)
json_state.max_nesting = 3
json_state.max_nesting # => 3
JSON.generate([[[[]]]], json_state) # => JSON::NestingError
//}...