473件ヒット
[1-100件を表示]
(0.071秒)
種類
- インスタンスメソッド (408)
- 定数 (36)
- ライブラリ (24)
- 文書 (5)
ライブラリ
-
irb
/ context (12) -
irb
/ ext / history (24) -
irb
/ ext / save-history (60) - openssl (156)
- psych (12)
-
rdoc
/ context (144) -
rexml
/ document (24) - win32ole (12)
クラス
-
IRB
:: Context (96) -
OpenSSL
:: ASN1 :: ASN1Data (12) -
OpenSSL
:: SSL :: SSLContext (132) -
OpenSSL
:: X509 :: StoreContext (12) -
Psych
:: SyntaxError (12) -
RDoc
:: Context (144) -
REXML
:: DocType (12) -
REXML
:: Element (12) -
WIN32OLE
_ TYPE (12)
キーワード
-
DEFAULT
_ PARAMS (12) - METHODS (12)
-
NEWS for Ruby 3
. 0 . 0 (5) - TYPES (12)
-
add
_ class (12) -
add
_ class _ or _ module (12) -
add
_ module (12) -
add
_ to (12) -
each
_ method (12) -
eval
_ history (12) -
eval
_ history= (12) -
find
_ local _ symbol (12) -
find
_ symbol (12) - helpcontext (12)
-
history
_ file (12) -
history
_ file= (12) -
init
_ save _ history (12) -
irb
/ ext / history (12) -
irb
/ ext / save-history (12) - key (12)
- key= (12)
-
method
_ list (12) -
ongoing
_ visibility= (12) -
prompt
_ mode (12) -
save
_ history (12) -
save
_ history= (12) -
session
_ cache _ stats (12) -
set
_ visibility _ for (12) -
tag
_ class (12) - verify (12)
-
verify
_ callback (12) -
verify
_ callback= (12) -
verify
_ depth (12) -
verify
_ depth= (12) -
verify
_ mode (12) -
verify
_ mode= (12) - visibility (12)
検索結果
先頭5件
-
REXML
:: DocType # context -> { Symbol => object } (21213.0) -
DTD が属する文書の「コンテキスト」を返します。
...DTD が属する文書の「コンテキスト」を返します。
具体的には親ノードである REXML::Document オブジェクトの
REXML::Element#context を返します。
コンテキストの具体的な内容については REXML::Element#context を
参照してください。... -
Psych
:: SyntaxError # context -> String (21101.0) -
エラーが生じたコンテキストを文字列で返します。
エラーが生じたコンテキストを文字列で返します。 -
REXML
:: Element # context -> {Symbol => object} | nil (18207.0) -
要素の「コンテキスト」を Hash で返します。
...テキストとは text node (REXML::Text) での特別な文字、特に空白について
の取り扱いについての設定です。
以下の Symbol をハッシュのキーとして使います。
: :respect_whitespace
空白を考慮して欲しい要素の名前の集合を文字列の......ます。
すべてのノードを raw mode で取り扱って欲しい場合は :all を指定します。
raw mode においては、text 中の特殊文字は一切変換されません。
REXML::Element#raw も参照してください。
@see REXML::Element.new, REXML::Element#context=... -
RDoc
:: Context # find _ local _ symbol(symbol) (9216.0) -
Finds a method, constant, attribute, module or files named +symbol+ in this context
...Finds a method, constant, attribute, module or files named +symbol+ in
this context... -
OpenSSL
:: SSL :: SSLContext # key -> OpenSSL :: PKey :: PKey | nil (9200.0) -
OpenSSL::SSL::SSLContext#cert で得られる自分自身を証明するための 証明書の公開鍵に対応する秘密鍵を返します。
...OpenSSL::SSL::SSLContext#cert で得られる自分自身を証明するための
証明書の公開鍵に対応する秘密鍵を返します。
@see OpenSSL::SSL::SSLContext#key=... -
RDoc
:: Context # find _ symbol(symbol , method=nil) (9200.0) -
Look up the given symbol. If method is non-nil, then we assume the symbol references a module that contains that method
...Look up the given symbol. If method is non-nil, then we assume
the symbol references a module that contains that method... -
IRB
:: Context # eval _ history -> Integer | nil (9106.0) -
実行結果の履歴の最大保存件数を Integer か nil で返します。
...履歴の最大保存件数を Integer か nil で返します。
@return 履歴の最大保存件数を Integer か nil で返します。0 を返し
た場合は無制限に保存します。nil を返した場合は追加の保存は行いません。
@see IRB::Context#eval_history=... -
IRB
:: Context # eval _ history=(val) (9106.0) -
実行結果の履歴の最大保存件数を val に設定します。
...実行結果の履歴の最大保存件数を val に設定します。
.irbrc ファイル中で IRB.conf[:EVAL_HISTORY] を設定する事でも同様の事が
行えます。
@param val 実行結果の履歴の最大保存件数を Integer か nil で指定し
ます。0 を指定......た場合は無制限に履歴を保存します。現在の値よ
りも小さい値を指定した場合は履歴がその件数に縮小されます。
nil を指定した場合は履歴の追加がこれ以上行われなくなります。
@see IRB::Context#eval_history... -
IRB
:: Context # history _ file -> String | nil (9100.0) -
履歴ファイルのパスを返します。
...履歴ファイルのパスを返します。
@return 履歴ファイルのパスを String か nil で返します。nil を返し
た場合は、~/.irb_history に履歴が保存されます。
@see lib:irb#history...