252件ヒット
[1-100件を表示]
(0.084秒)
ライブラリ
-
irb
/ context (60) -
irb
/ ext / history (12) -
irb
/ ext / save-history (12) - 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) - ciphers (12)
-
debug
_ level (12) - error (12)
-
error
_ depth (12) -
eval
_ history (12) - helpcontext (24)
-
ignore
_ sigint (12) -
ignore
_ sigint= (12) -
ignore
_ sigint? (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] (18402.0) -
パースエラーが起きた(XML上の)場所を返します。
パースエラーが起きた(XML上の)場所を返します。
要素3個の配列で、
[position, lineno, line]
という形で返します。
position, line は
REXML::ParseException#position
REXML::ParseException#line
と同じ値です。
lineno は IO#lineno が返す意味での行数です。
通常は line と同じ値です。 -
IRB
:: Context # ignore _ sigint -> bool (9107.0) -
Ctrl-C が入力された時に irb を終了するかどうかを返します。
...alse の時は irb を終了します。true の時は以下のように動作します。
: 入力中
これまで入力したものをキャンセルしトップレベルに戻る.
: 実行中
実行を中止する.
デフォルト値は true です。
@see IRB::Context#ignore_sigint=... -
IRB
:: Context # ignore _ sigint=(val) (9107.0) -
Ctrl-C が入力された時に irb を終了するかどうかを val に設定します。
...Ctrl-C が入力された時に irb を終了するかどうかを val に設定します。
.irbrc ファイル中で IRB.conf[:IGNORE_SIGINT] を設定する事でも同様の操作
が行えます。
@param val false を指定した場合、Ctrl-C の入力時に irb を終了します。......true を指定した場合、Ctrl-C の入力時に以下のように動作します。
: 入力中
これまで入力したものをキャンセルしトップレベルに戻る.
: 実行中
実行を中止する.
@see IRB::Context#ignore_sigint... -
IRB
:: Context # ignore _ sigint? -> bool (9107.0) -
Ctrl-C が入力された時に irb を終了するかどうかを返します。
...alse の時は irb を終了します。true の時は以下のように動作します。
: 入力中
これまで入力したものをキャンセルしトップレベルに戻る.
: 実行中
実行を中止する.
デフォルト値は true です。
@see IRB::Context#ignore_sigint=... -
WIN32OLE
_ METHOD # helpcontext -> Integer | nil (6201.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 (6201.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]] (3201.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 # debug _ level -> Integer (3113.0) -
irb のデバッグレベルを返します。
...irb のデバッグレベルを返します。
デフォルト値は 0 です。
@see IRB::Context#debug_level=, IRB::Context#debug?... -
IRB
:: Context # back _ trace _ limit -> Integer (3107.0) -
エラー発生時のバックトレース表示の先頭、末尾の上限の行数を返します。
...エラー発生時のバックトレース表示の先頭、末尾の上限の行数を返します。
デフォルト値は 16 です。
@see IRB::Context#back_trace_limit=...