958件ヒット
[101-200件を表示]
(0.076秒)
ライブラリ
- ビルトイン (580)
-
cgi
/ core (24) - csv (60)
- forwardable (24)
-
irb
/ context (24) -
net
/ ftp (36) -
net
/ imap (24) - open-uri (12)
- openssl (24)
- rake (36)
- rss (48)
-
rubygems
/ remote _ fetcher (24) - scanf (18)
- socket (12)
-
webrick
/ httpresponse (12)
クラス
- Array (48)
- CSV (60)
-
Encoding
:: Converter (12) -
Enumerator
:: ArithmeticSequence (14) -
Enumerator
:: Lazy (48) - Exception (8)
-
Gem
:: RemoteFetcher (24) -
IRB
:: Context (24) -
Net
:: FTP (36) -
Net
:: IMAP (24) -
OpenSSL
:: X509 :: CRL (24) -
RSS
:: Maker :: ChannelBase (24) -
RSS
:: Rss :: Channel (24) - Range (118)
- Regexp (12)
-
RubyVM
:: AbstractSyntaxTree :: Node (14) -
Scanf
:: FormatString (18) -
Socket
:: AncillaryData (12) - String (216)
- Thread (18)
-
WEBrick
:: HTTPResponse (12)
モジュール
-
CGI
:: QueryExtension :: Value (24) - Enumerable (72)
- Forwardable (24)
-
OpenURI
:: Meta (12) -
Rake
:: TaskManager (36)
キーワード
- << (12)
- =~ (12)
- [] (72)
- []= (12)
-
add
_ row (12) - begin (12)
-
chunk
_ while (12) -
col
_ sep (12) - delegate (12)
- each (12)
- end (12)
- first (60)
-
instance
_ delegate (12) - lastBuildDate (24)
- lastBuildDate= (24)
-
last
_ column (7) -
last
_ comment (12) -
last
_ description (12) -
last
_ description= (12) -
last
_ error (12) -
last
_ lineno (7) -
last
_ match _ tried (6) -
last
_ modified (12) -
last
_ response (12) -
last
_ response _ code (12) -
last
_ spec (6) -
last
_ spec _ tried (6) -
last
_ update (12) -
last
_ update= (12) -
last
_ value (12) - lastresp (12)
- max (46)
-
open
_ uri _ or _ path (12) - puts (12)
-
report
_ on _ exception (9) -
report
_ on _ exception= (9) - request (12)
- responses (12)
- select (12)
-
set
_ last _ value (12) - slice (72)
- slice! (72)
-
slice
_ after (24) -
slice
_ before (24) -
slice
_ when (12) -
take
_ while (24) - zip (24)
検索結果
先頭5件
-
Encoding
:: Converter # last _ error -> Exception | nil (6114.0) -
直前に変換器で発生した例外に相当する例外オブジェクトを返します。 直前の変換で例外が発生していない場合は nil を返します。
...859-1")
p ec.primitive_convert(src="\xf1abcd", dst="") #=> :invalid_byte_sequence
p ec.last_error #=> #<Encoding::InvalidByteSequenceError: "\xF1" followed by "a" on UTF-8>
p ec.primitive_convert(src, dst, nil, 1) #=> :destination_buffer_full
p ec.last_error #=> nil
//}... -
Rake
:: TaskManager # last _ comment -> String (6109.0) -
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
...詳細説明を追跡するためのメソッドです。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app1
desc "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end
desc "test2"
task :test_rake_app2 do |task|
end
//}... -
Rake
:: TaskManager # last _ description -> String (6109.0) -
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
...詳細説明を追跡するためのメソッドです。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app1
desc "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end
desc "test2"
task :test_rake_app2 do |task|
end
//}... -
Net
:: FTP # last _ response -> String (6108.0) -
サーバからの最後の応答を文字列で返します。
...サーバからの最後の応答を文字列で返します。
例えばログイン(Net::FTP#login)に成功した場合には
"230 Login successful.\n" を返します。
@see Net::FTP#last_response_code... -
Net
:: FTP # last _ response _ code -> String (6108.0) -
サーバからの最後の応答のコードを文字列で返します。
...サーバからの最後の応答のコードを文字列で返します。
例えばログイン(Net::FTP#login)に成功した場合には
"230" を返します。
数字の意味は 959 参照してください。
@see Net::FTP#last_response... -
Net
:: FTP # lastresp -> String (6108.0) -
サーバからの最後の応答のコードを文字列で返します。
...サーバからの最後の応答のコードを文字列で返します。
例えばログイン(Net::FTP#login)に成功した場合には
"230" を返します。
数字の意味は 959 参照してください。
@see Net::FTP#last_response... -
OpenSSL
:: X509 :: CRL # last _ update=(time) (6108.0) -
CRL が最後に更新された日時を Time オブジェクトで設定します。
...CRL が最後に更新された日時を Time オブジェクトで設定します。
@param time 最終更新日時
@raise OpenSSL::X509::CRLError 設定に失敗した場合に発生します
@see OpenSSL::X509::CRL#last_update... -
RubyVM
:: AbstractSyntaxTree :: Node # last _ column -> Integer (6108.0) -
ソースコード中で、self を表すテキストが最後に現れる列番号を返します。
...ソースコード中で、self を表すテキストが最後に現れる列番号を返します。
列番号は0-originで、バイト単位で表されます。
//emlist[][ruby]{
node = RubyVM::AbstractSyntaxTree.parse('1 + 1')
p node.last_column # => 5
//}... -
RubyVM
:: AbstractSyntaxTree :: Node # last _ lineno -> Integer (6108.0) -
ソースコード中で、self を表すテキストが最後に現れる行番号を返します。
...ソースコード中で、self を表すテキストが最後に現れる行番号を返します。
行番号は1-originです。
//emlist[][ruby]{
node = RubyVM::AbstractSyntaxTree.parse('1 + 1')
p node.last_lineno # => 1
//}... -
IRB
:: Context # last _ value -> object (6102.0) -
irb 中での最後の実行結果を返します。
irb 中での最後の実行結果を返します。