348件ヒット
[301-348件を表示]
(0.021秒)
クラス
-
Digest
:: Base (24) -
OpenSSL
:: SSL :: SSLContext (12) -
RSS
:: Maker :: ChannelBase (24) -
RSS
:: Maker :: ChannelBase :: CategoriesBase :: CategoryBase (24) -
RSS
:: Maker :: ChannelBase :: SkipDaysBase :: DayBase (24) -
RSS
:: Maker :: ChannelBase :: SkipHoursBase :: HourBase (24) -
RSS
:: Maker :: ImageBase (24) -
RSS
:: Maker :: ItemsBase :: ItemBase (24) -
RSS
:: Maker :: RSSBase (60) -
RSS
:: Maker :: TextinputBase (24) -
RubyVM
:: InstructionSequence (24) -
Thread
:: Backtrace :: Location (24)
モジュール
-
CGI
:: HtmlExtension (12) -
RSS
:: SyndicationModel (24)
キーワード
-
base
_ label (24) -
ca
_ file= (12) - clone (12)
- content (36)
- content= (36)
- description (48)
- description= (48)
- dup (12)
- label (24)
-
rss
_ version (12) - standalone (12)
- standalone= (12)
-
sy
_ updateBase (12) -
sy
_ updateBase= (12) - version (12)
- version= (12)
検索結果
先頭4件
-
Digest
:: Base # dup -> Digest :: Base (6103.0) -
ダイジェストオブジェクトの複製を作ります。
ダイジェストオブジェクトの複製を作ります。 -
OpenSSL
:: SSL :: SSLContext # ca _ file=(ca) (3013.0) -
接続相手の検証のために使う、信頼している CA 証明書ファイルのパスを 設定します。
... base64 encoding) ...
-----END CERTIFICATE-----
(ここに証明書の説明)
-----BEGIN CERTIFICATE-----
... (CA certificate in base64 encoding) ...
-----END CERTIFICATE-----
デフォルトは nil です。
@param ca CA証明書ファイルのパス文字列
@see OpenSSL::SSL::SSLCon... -
RubyVM
:: InstructionSequence # label -> String (3007.0) -
self が表す命令シーケンスのラベルを返します。通常、メソッド名、クラス名、 モジュール名などで構成されます。
...tionSequence.compile('num = 1 + 2')
# => <RubyVM::InstructionSequence:<compiled>@<compiled>>
iseq.label
# => "<compiled>"
例2: RubyVM::InstructionSequence.compile_file を使用した場合
# /tmp/method.rb
def hello
puts "hello, world"
end
# irb
> iseq = RubyVM::InstructionS......equence.compile_file('/tmp/method.rb')
> iseq.label # => "<main>"
例3:
# /tmp/method2.rb
def hello
puts "hello, world"
end
RubyVM::InstructionSequence.of(method(:hello)).label
# => "hello"
@see RubyVM::InstructionSequence#base_label... -
Thread
:: Backtrace :: Location # label -> String (3007.0) -
self が表すフレームのラベルを返します。通常、メソッド名、クラス名、モ ジュール名などで構成されます。
...フレームのラベルを返します。通常、メソッド名、クラス名、モ
ジュール名などで構成されます。
例: Thread::Backtrace::Location の例1を用いた例
//emlist[][ruby]{
loc = c(0..1).first
loc.label # => "a"
//}
@see Thread::Backtrace::Location#base_label...