252件ヒット
[1-100件を表示]
(0.065秒)
ライブラリ
-
irb
/ context (36) -
irb
/ ext / history (24) -
irb
/ ext / save-history (24) - openssl (132)
- rexml (12)
- win32ole (24)
クラス
-
IRB
:: Context (84) -
OpenSSL
:: SSL :: SSLContext (108) -
OpenSSL
:: X509 :: StoreContext (24) -
REXML
:: ParseException (12) -
WIN32OLE
_ METHOD (12) -
WIN32OLE
_ TYPE (12)
キーワード
-
back
_ trace _ limit (12) -
back
_ trace _ limit= (12) - ciphers (12)
-
debug
_ level (12) - error (12)
-
error
_ depth (12) -
eval
_ history (12) -
eval
_ history= (12) - helpcontext (24)
-
save
_ history (12) -
save
_ history= (12) -
session
_ cache _ mode (12) -
session
_ cache _ size (12) -
session
_ cache _ stats (12) -
ssl
_ timeout (12) - timeout (12)
-
verify
_ depth (12) -
verify
_ mode (12)
検索結果
先頭5件
-
REXML
:: ParseException # context -> [Integer , Integer , Integer] (18405.0) -
パースエラーが起きた(XML上の)場所を返します。
パースエラーが起きた(XML上の)場所を返します。
要素3個の配列で、
[position, lineno, line]
という形で返します。
position, line は
REXML::ParseException#position
REXML::ParseException#line
と同じ値です。
lineno は IO#lineno が返す意味での行数です。
通常は line と同じ値です。 -
WIN32OLE
_ METHOD # helpcontext -> Integer | nil (6202.0) -
メソッドのヘルプコンテキストを取得します。
...tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Workbooks')
method = WIN32OLE_METHOD.new(tobj, 'Add')
puts method.helpcontext # => 65717
WIN32OLE_METHODオブジェクトを引数として、WIN32OLE.ole_show_helpで
ヘルプファイルを表示する場合には、WIN... -
WIN32OLE
_ TYPE # helpcontext -> Integer | nil (6202.0) -
この型に関連するヘルプファイルのトピックID(ヘルプコンテキスト)を取得 します。
...。
@return 型に関連するヘルプコンテキストを整数で返します。ヘルプコンテキ
ストが登録されていない場合はnilを返します。
tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Worksheet')
puts tobj.helpcontext # => 131185... -
OpenSSL
:: SSL :: SSLContext # ciphers -> [[String , String , Integer , Integer]] (3203.0) -
利用可能な共通鍵暗号の種類を配列で返します。
...なSSL/TLSのバージョン文字列, 鍵長(ビット数), アルゴリズムのビット長]
例:
require 'openssl'
ctx = OpenSSL::SSL::SSLContext.new('TLSv1')
ctx.ciphers
# => [["DHE-RSA-AES256-SHA", "TLSv1/SSLv3", 256, 256],
# ["DHE-DSS-AES256-SHA", "TLSv1/SSLv3", 256, 256], ...... -
IRB
:: Context # eval _ history -> Integer | nil (3130.0) -
実行結果の履歴の最大保存件数を Integer か nil で返します。
...履歴の最大保存件数を Integer か nil で返します。
@return 履歴の最大保存件数を Integer か nil で返します。0 を返し
た場合は無制限に保存します。nil を返した場合は追加の保存は行いません。
@see IRB::Context#eval_history=... -
IRB
:: Context # save _ history -> Integer | nil (3124.0) -
履歴の最大保存件数を Integer か nil で返します。
...履歴の最大保存件数を Integer か nil で返します。
@return 履歴の最大保存件数を Integer か nil で返します。0 以下や
nil を返した場合は追加の保存は行いません。
@see lib:irb#history... -
IRB
:: Context # debug _ level -> Integer (3114.0) -
irb のデバッグレベルを返します。
...irb のデバッグレベルを返します。
デフォルト値は 0 です。
@see IRB::Context#debug_level=, IRB::Context#debug?... -
IRB
:: Context # back _ trace _ limit -> Integer (3108.0) -
エラー発生時のバックトレース表示の先頭、末尾の上限の行数を返します。
...エラー発生時のバックトレース表示の先頭、末尾の上限の行数を返します。
デフォルト値は 16 です。
@see IRB::Context#back_trace_limit=... -
OpenSSL
:: SSL :: SSLContext # ssl _ timeout -> Integer | nil (3103.0) -
このコンテキストから生成するセッションのタイムアウト秒数を返します。
...このコンテキストから生成するセッションのタイムアウト秒数を返します。
デフォルト値は nil です。
@see OpenSSL::SSL::SSLContext#timeout=...