816件ヒット
[1-100件を表示]
(0.101秒)
別のキーワード
ライブラリ
-
irb
/ context (288) -
irb
/ ext / history (12) -
irb
/ ext / save-history (24) - openssl (252)
- psych (12)
-
rdoc
/ context (180) - rexml (12)
-
webrick
/ ssl (12) - win32ole (24)
クラス
-
IRB
:: Context (324) -
OpenSSL
:: ASN1 :: ASN1Data (12) -
OpenSSL
:: SSL :: SSLContext (192) -
OpenSSL
:: X509 :: StoreContext (48) -
Psych
:: SyntaxError (12) -
RDoc
:: Context (132) -
RDoc
:: Context :: Section (48) -
REXML
:: ParseException (12) -
WEBrick
:: GenericServer (12) -
WIN32OLE
_ METHOD (12) -
WIN32OLE
_ TYPE (12)
キーワード
-
_ _ inspect _ _ (12) -
_ _ to _ s _ _ (12) -
add
_ class (12) -
add
_ class _ or _ module (12) -
add
_ module (12) -
add
_ to (12) -
ap
_ name (12) -
back
_ trace _ limit (12) -
ca
_ file (12) -
ca
_ path (12) - ciphers (12)
- classes (12)
- comment (12)
- debug? (12)
-
debug
_ level (12) -
debug
_ level= (12) -
each
_ classmodule (12) - error (12)
-
error
_ depth (12) -
error
_ string (12) -
eval
_ history (12) -
find
_ enclosing _ module _ named (12) - flags= (12)
- helpcontext (24)
-
history
_ file (12) -
ignore
_ eof (12) -
ignore
_ eof= (12) -
ignore
_ eof? (12) -
ignore
_ sigint (12) -
ignore
_ sigint= (12) -
ignore
_ sigint? (12) - inspect (24)
-
irb
_ name (12) -
irb
_ path (12) -
load
_ modules (12) - name (12)
-
ongoing
_ visibility= (12) -
prompt
_ c (12) -
prompt
_ i (12) -
prompt
_ n (12) -
prompt
_ s (12) - prompting? (12)
-
renegotiation
_ cb (12) -
renegotiation
_ cb= (12) -
return
_ format (12) -
save
_ history (12) - sequence (12)
-
session
_ cache _ mode (12) -
session
_ cache _ size (12) -
session
_ cache _ stats (12) -
session
_ get _ cb (12) -
session
_ get _ cb= (12) -
session
_ id _ context (12) -
set
_ visibility _ for (12) -
ssl
_ context (12) -
ssl
_ timeout (12) -
tag
_ class (12) - timeout (12)
- title (12)
-
to
_ s (12) -
unmatched
_ alias _ lists (12) -
verify
_ depth (12) -
verify
_ mode (12)
検索結果
先頭5件
-
REXML
:: ParseException # context -> [Integer , Integer , Integer] (18402.0) -
パースエラーが起きた(XML上の)場所を返します。
パースエラーが起きた(XML上の)場所を返します。
要素3個の配列で、
[position, lineno, line]
という形で返します。
position, line は
REXML::ParseException#position
REXML::ParseException#line
と同じ値です。
lineno は IO#lineno が返す意味での行数です。
通常は line と同じ値です。 -
Psych
:: SyntaxError # context -> String (18202.0) -
エラーが生じたコンテキストを文字列で返します。
エラーが生じたコンテキストを文字列で返します。 -
OpenSSL
:: SSL :: SSLContext # session _ id _ context -> String | nil (9208.0) -
セッション ID コンテキスト文字列を返します。
...セッション ID コンテキスト文字列を返します。
設定されていない場合は nil を返します。
@see OpenSSL::SSL::Session,
OpenSSL::SSL::SSLContext#session_id_context=... -
WEBrick
:: GenericServer # ssl _ context -> OpenSSL :: SSL :: SSLContext | nil (9202.0) -
サーバが保持する OpenSSL::SSL::SSLContext オブジェクトを返します。
...サーバが保持する OpenSSL::SSL::SSLContext オブジェクトを返します。... -
OpenSSL
:: X509 :: StoreContext # error _ string -> String (9201.0) -
検証したときのエラー文字列を返します。
...のエラー文字列を返します。
OpenSSL::X509::StoreContext#verify を呼びだし、
証明書チェインの各証明書を検証した
コールバック(OpenSSL::X509::Store#verify_callback=)が呼び出され、
StoreContext オブジェクトが渡されますが、このメソッド......を呼ぶと
直前の証明書検証結果のエラー文字列が得られます。
OpenSSL::X509::StoreContext#verify を呼び出したあと、
このメソッドを呼ぶと検証の最終的な検証結果のエラー文字列を返します。
検証に成功した場合は "ok" を返し... -
OpenSSL
:: X509 :: StoreContext # flags=(flags) (9201.0) -
CRL に関するフラグを設定します。
...CRL に関するフラグを設定します。
以下の定数から必要なものを選んで OR 取り、渡します。
* OpenSSL::X509::V_FLAG_CRL_CHECK
* OpenSSL::X509::V_FLAG_CRL_CHECK_ALL
@param flags 設定するフラグ(整数値)
@see OpenSSL::X509::Store#flags=... -
IRB
:: Context # debug? -> bool (9129.0) -
irb がデバッグモード(IRB::Context#debug_level が 1 以上)で動作し ているかどうかを返します。
...irb がデバッグモード(IRB::Context#debug_level が 1 以上)で動作し
ているかどうかを返します。
デフォルト値は false です。
@see IRB::Context#debug_level, IRB::Context#debug_level=... -
IRB
:: Context # debug _ level -> Integer (9113.0) -
irb のデバッグレベルを返します。
...irb のデバッグレベルを返します。
デフォルト値は 0 です。
@see IRB::Context#debug_level=, IRB::Context#debug?... -
IRB
:: Context # debug _ level=(val) (9113.0) -
irb のデバッグレベルを val に設定します。
...irb のデバッグレベルを val に設定します。
.irbrc ファイル中で IRB.conf[:DEBUG_LEVEL] を設定する事でも同様の操作
が行えます。
@see IRB::Context#debug_level, IRB::Context#debug?...