1227件ヒット
[201-300件を表示]
(0.118秒)
ライブラリ
クラス
- Array (21)
- Bignum (6)
-
Digest
:: Base (36) - Fixnum (6)
- Integer (24)
-
Net
:: FTP (144) -
Net
:: IMAP (24) -
OpenSSL
:: BN (12) -
OpenSSL
:: SSL :: SSLContext (12) - Pathname (36)
-
RSS
:: Maker :: ChannelBase (408) -
RSS
:: Maker :: ChannelBase :: CategoriesBase (12) -
RSS
:: Maker :: ChannelBase :: CategoriesBase :: CategoryBase (48) -
RSS
:: Maker :: ChannelBase :: SkipDaysBase (12) -
RSS
:: Maker :: ChannelBase :: SkipDaysBase :: DayBase (24) -
RSS
:: Maker :: ChannelBase :: SkipHoursBase (12) -
RSS
:: Maker :: ChannelBase :: SkipHoursBase :: HourBase (24) -
RSS
:: Maker :: ImageBase (24) -
RSS
:: Maker :: ItemsBase :: ItemBase (96) -
RSS
:: Maker :: RSSBase (36) -
RSS
:: Maker :: TextinputBase (24) -
RubyVM
:: InstructionSequence (24) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) - String (24)
-
Thread
:: Backtrace :: Location (24)
モジュール
-
CGI
:: HtmlExtension (12) -
RSS
:: BaseTrackBackModel (60) -
RSS
:: SyndicationModel (24)
キーワード
- about (12)
- about= (12)
-
base
_ label (24) - basename (30)
-
block
_ length (12) -
ca
_ file= (12) - categories (24)
- channel (12)
- clone (12)
- cloud (12)
- comments (12)
- comments= (12)
- content (36)
- content= (36)
- copyright (12)
- copyright= (12)
- date (12)
- date= (12)
- description (48)
- description= (48)
- docs (12)
- docs= (12)
- domain (12)
- domain= (12)
- dup (12)
- enclosure (12)
- encoding (12)
- encoding= (12)
- generator (12)
- generator= (12)
- get (24)
- getbinaryfile (24)
- gettextfile (24)
- guid (12)
- inspect (18)
- label (24)
- language (12)
- language= (12)
- lastBuildDate (12)
- lastBuildDate= (12)
- link (12)
- link= (12)
- managingEditor (12)
- managingEditor= (12)
-
new
_ category (12) -
new
_ day (12) -
new
_ hour (12) - pack (21)
- pubDate (12)
- pubDate= (12)
- put (24)
- putbinaryfile (24)
- puttextfile (24)
- realpath (12)
-
relative
_ path _ from (12) - skipDays (12)
- skipHours (12)
- sort (12)
- source (12)
-
sy
_ updateBase (12) -
sy
_ updateBase= (12) - title (12)
- title= (12)
-
to
_ i (12) -
to
_ s (30) -
trackback
_ about (12) -
trackback
_ about= (12) -
trackback
_ abouts (12) -
trackback
_ ping (12) -
trackback
_ ping= (12) - ttl (12)
- ttl= (12)
-
uid
_ sort (12) - unpack (12)
- webMaster (12)
- webMaster= (12)
検索結果
先頭5件
-
RSS
:: Maker :: ItemsBase :: ItemBase # description (12101.0) -
@todo
@todo -
RSS
:: Maker :: ItemsBase :: ItemBase # description=() (12101.0) -
@todo
@todo -
RSS
:: Maker :: ItemsBase :: ItemBase # enclosure (12101.0) -
@todo
@todo -
RSS
:: Maker :: ItemsBase :: ItemBase # source (12101.0) -
@todo
@todo -
RSS
:: Maker :: ChannelBase :: CategoriesBase :: CategoryBase # domain (12001.0) -
@todo
@todo -
RSS
:: Maker :: ChannelBase :: CategoriesBase :: CategoryBase # domain=() (12001.0) -
@todo
@todo -
Digest
:: Base # clone -> Digest :: Base (9203.0) -
ダイジェストオブジェクトの複製を作ります。
ダイジェストオブジェクトの複製を作ります。 -
RubyVM
:: InstructionSequence # base _ label -> String (9120.0) -
self が表す命令シーケンスの基本ラベルを返します。
...す。
例1:irb で実行した場合
iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
# => <RubyVM::InstructionSequence:<compiled>@<compiled>>
iseq.base_label
# => "<compiled>"
例2: RubyVM::InstructionSequence.compile_file を使用した場合
# /tmp/method.rb
def hello......# irb
> iseq = RubyVM::InstructionSequence.compile_file('/tmp/method.rb')
> iseq.base_label # => "<main>"
例3:
# /tmp/method2.rb
def hello
puts "hello, world"
end
RubyVM::InstructionSequence.of(method(:hello)).base_label
# => "hello"
@see RubyVM::InstructionSequence#label... -
Shell
:: CommandProcessor # basename(filename , suffix = "") -> String (9117.0) -
File クラスにある同名のクラスメソッドと同じです.
...イル名を表す文字列を指定します。
@param suffix サフィックスを文字列で与えます。'.*' という文字列を与えた場合、'*' はワイルドカードとして働き
'.' を含まない任意の文字列にマッチします。
@see File.basename... -
Thread
:: Backtrace :: Location # base _ label -> String (9108.0) -
self が表すフレームの基本ラベルを返します。通常、 Thread::Backtrace::Location#label から修飾を取り除いたもので構成 されます。
...hread::Backtrace::Location#label から修飾を取り除いたもので構成
されます。
//emlist[例][ruby]{
# foo.rb
class Foo
attr_accessor :locations
def initialize(skip)
@locations = caller_locations(skip)
end
end
Foo.new(0..2).locations.map do |call|
puts call.base_label
en......d
# => initialize
# new
# <main>
//}
@see Thread::Backtrace::Location#label...