554件ヒット
[1-100件を表示]
(0.039秒)
ライブラリ
- ビルトイン (78)
- csv (24)
- json (24)
-
net
/ ftp (48) -
net
/ http (48) -
net
/ imap (72) - openssl (60)
-
rubygems
/ source _ info _ cache (36) -
win32
/ registry (12)
クラス
- CSV (12)
-
Gem
:: SourceInfoCache (36) - IO (24)
-
JSON
:: Parser (24) - MatchData (30)
-
Net
:: FTP (48) -
Net
:: IMAP (48) -
Net
:: IMAP :: ContinuationRequest (12) -
Net
:: IMAP :: TaggedResponse (12) -
OpenSSL
:: ASN1 :: Set (24)
モジュール
-
Net
:: HTTPHeader (48) -
OpenSSL
:: ASN1 (24) - Process (24)
-
Win32
:: Registry :: API (12)
キーワード
- ASN1 (12)
- CSV (12)
-
NEWS for Ruby 2
. 0 . 0 (12) -
NEWS for Ruby 2
. 1 . 0 (12) -
NEWS for Ruby 2
. 3 . 0 (10) -
NEWS for Ruby 2
. 4 . 0 (9) -
NEWS for Ruby 2
. 5 . 0 (8) -
NEWS for Ruby 3
. 0 . 0 (5) - Ruby用語集 (12)
- Set (24)
- SetValue (12)
- byteoffset (6)
-
content
_ type= (12) - fetch (12)
-
form
_ data= (12) -
net
/ http (12) - new (48)
- offset (24)
- parse (12)
-
proc
_ set _ safe _ level (12) -
rb
_ set _ end _ proc (12) -
reset
_ cache _ data (12) -
reset
_ cache _ for (12) - retrbinary (24)
-
ruby 1
. 8 . 4 feature (12) -
ruby 1
. 9 feature (12) - seek (12)
-
set
_ cache _ data (12) -
set
_ content _ type (12) -
set
_ form _ data (12) - setrlimit (24)
- storbinary (24)
- store (12)
- sysseek (12)
-
uid
_ fetch (12) -
uid
_ store (12) -
undef
_ setter (12) -
val
_ setter (12)
検索結果
先頭5件
-
Net
:: IMAP :: ContinuationRequest # data -> Net :: IMAP :: ResponseText (18201.0) -
レスポンスのデータを返します。
レスポンスのデータを返します。 -
Net
:: IMAP :: TaggedResponse # data -> Net :: IMAP :: ResponseText (18201.0) -
レスポンスを解析したオブジェクトを返します。
...レスポンスを解析したオブジェクトを返します。
@see Net::IMAP::ResponseText... -
Gem
:: SourceInfoCache # set _ cache _ data(hash) -> true (12202.0) -
直接キャッシュデータをセットします。
直接キャッシュデータをセットします。
このメソッドは主にユニットテストで使用します。
@param hash キャッシュデータとして使用するハッシュを指定します。 -
Gem
:: SourceInfoCache # reset _ cache _ data -> true (12201.0) -
キャッシュデータをリセットします。
キャッシュデータをリセットします。 -
Net
:: HTTPHeader # set _ form _ data(params , sep = & # 39;&& # 39;) -> () (9239.0) -
HTMLのフォームのデータ params から ヘッダフィールドとボディを設定します。
...//emlist[例 form_data][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.form_data = {"q" => ["ruby", "perl"], "lang" => "en"} # => {"q"=>["ruby", "perl"], "lang"=>"en"}
//}
//emlist[例 set_form_data][ruby]{
require 'ne......t/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.set_form_data({"q" => "ruby", "lang" => "en"}, ';') # => "application/x-www-form-urlencoded"
//}... -
MatchData
# byteoffset(n) -> [Integer , Integer] | [nil , nil] (9100.0) -
n 番目の部分文字列のバイト単位のオフセットの 配列 [start, end] を返します。
...のオフセットの
配列 [start, end] を返します。
n番目の部分文字列がマッチしていなければ [nil, nil] を返します。
@param n 部分文字列を指定する数値
@raise IndexError 範囲外の n を指定した場合に発生します。
@see MatchData#offset... -
MatchData
# byteoffset(name) -> [Integer , Integer] | [nil , nil] (9100.0) -
name という名前付きグループに対応する部分文字列のバイト単位のオフセットの 配列 [start, end] を返します。
...)日)?/ =~ "2021年1月"
p $~.byteoffset('year') # => [0, 4]
p $~.byteoffset(:year) # => [0, 4]
p $~.byteoffset('month') # => [7, 8]
p $~.byteoffset(:month) # => [7, 8]
p $~.byteoffset('day') # => [nil, nil]
p $~.byteoffset('century') # => `offset': undefined group name reference: ce......ntury (IndexError)
//}
@see MatchData#offset... -
MatchData
# offset(n) -> [Integer , Integer] | [nil , nil] (9100.0) -
n 番目の部分文字列のオフセットの配列 [start, end] を返 します。
...lf.begin(n), self.end(n) ]
//}
と同じです。n番目の部分文字列がマッチしていなければ
[nil, nil] を返します。
@param n 部分文字列を指定する数値
@raise IndexError 範囲外の n を指定した場合に発生します。
@see MatchData#begin, MatchData#end......end(n) ]
//}
と同じです。n番目の部分文字列がマッチしていなければ
[nil, nil] を返します。
@param n 部分文字列を指定する数値
@raise IndexError 範囲外の n を指定した場合に発生します。
@see MatchData#begin, MatchData#end, MatchData#offset... -
MatchData
# offset(name) -> [Integer , Integer] | [nil , nil] (9100.0) -
name という名前付きグループに対応する部分文字列のオフセットの配列 [start, end] を返 します。
...fset('year') # => [0, 4]
p $~.offset(:year) # => [0, 4]
p $~.offset('month') # => [5, 6]
p $~.offset(:month) # => [5, 6]
p $~.offset('day') # => [nil, nil]
p $~.offset('century') # => `offset': undefined group name reference: century (IndexError)
//}
@see MatchData#begin, MatchData#......end, MatchData#offset... -
OpenSSL
:: ASN1 . # Set(value) -> OpenSSL :: ASN1 :: Set -> OpenSSL :: ASN1 :: Set (6333.0) -
ASN.1 の Set 型の値を表現する Ruby のオブジェクトを 生成します。
...ASN.1 の Set 型の値を表現する Ruby のオブジェクトを
生成します。
OpenSSL::ASN1::Set.new と同じです。
@param value ASN.1値を表すRubyのオブジェクト(OpenSSL::ASN1::ASN1Dataの配列)
@param tag タグ番号
@param tagging タグ付けの方法(:IMPLICIT もし...