1636件ヒット
[201-300件を表示]
(0.076秒)
ライブラリ
- ビルトイン (202)
- benchmark (12)
-
cgi
/ html (96) - date (12)
- e2mmap (12)
-
irb
/ context (24) - logger (84)
- mkmf (12)
-
net
/ http (132) - openssl (36)
- psych (12)
-
rdoc
/ markup (12) -
rdoc
/ markup / formatter (24) -
rexml
/ document (60) - rss (60)
-
rubygems
/ format (72) -
rubygems
/ installer (12) -
rubygems
/ old _ format (72) -
rubygems
/ platform (132) -
rubygems
/ source _ index (12) -
rubygems
/ source _ info _ cache (24) -
rubygems
/ spec _ fetcher (24) -
rubygems
/ specification (60) -
rubygems
/ version _ option (12) - scanf (162)
- stringio (12)
-
syslog
/ logger (36) -
webrick
/ httprequest (12) -
webrick
/ httputils (132) -
webrick
/ log (24) - zlib (12)
クラス
-
ARGF
. class (12) -
Benchmark
:: Tms (12) - Date (12)
-
Encoding
:: Converter (48) -
Gem
:: Format (72) -
Gem
:: Installer (12) -
Gem
:: OldFormat (72) -
Gem
:: Platform (132) -
Gem
:: SourceIndex (12) -
Gem
:: SourceInfoCache (24) -
Gem
:: SpecFetcher (24) -
Gem
:: Specification (60) - Hash (76)
- IO (24)
-
IRB
:: Context (24) - Logger (48)
-
Logger
:: Formatter (36) -
Net
:: HTTP (72) -
OpenSSL
:: PKey :: EC :: Group (24) -
Psych
:: Nodes :: Node (12) -
RDoc
:: Markup (12) -
RDoc
:: Markup :: Formatter (24) -
RDoc
:: Options (36) -
REXML
:: Formatters :: Default (12) -
REXML
:: Formatters :: Pretty (48) -
RSS
:: NotWellFormedError (24) -
Scanf
:: FormatSpecifier (66) -
Scanf
:: FormatString (60) - String (54)
- StringIO (12)
-
Syslog
:: Logger (24) -
Syslog
:: Logger :: Formatter (12) - Time (12)
-
WEBrick
:: HTTPRequest (12) -
WEBrick
:: HTTPUtils :: FormData (132) -
WEBrick
:: Log (24) -
Zlib
:: GzipWriter (12)
モジュール
-
CGI
:: HtmlExtension (96) - DublinCoreModel (36)
- Exception2MessageMapper (12)
-
Gem
:: VersionOption (12) - Kernel (24)
-
Net
:: HTTPHeader (60) -
OpenSSL
:: Buffering (12)
キーワード
- << (12)
- == (12)
- === (12)
- =~ (12)
- [] (12)
-
add
_ platform _ option (12) -
add
_ tag (12) -
append
_ data (12) - call (24)
- compact (12)
- compact= (12)
-
content
_ type (12) -
content
_ type= (12) - conversion (6)
- convert (24)
-
count
_ space? (6) - cpu (12)
- cpu= (12)
-
datetime
_ format (24) -
datetime
_ format= (24) -
dc
_ format (12) -
dc
_ format= (12) -
dc
_ formats (12) -
def
_ exception (6) -
each
_ data (12) - element (12)
- fetch (12)
-
file
_ entries (24) -
file
_ entries= (24) - filename (12)
- filename= (12)
-
find
_ matching (12) -
form
_ data= (12) - format (12)
-
formatted
_ program _ filename (12) - formatter (36)
- formatter= (36)
-
gem
_ path (24) -
gem
_ path= (24) -
image
_ format (12) -
last
_ match _ tried (6) -
last
_ spec (6) -
last
_ spec _ tried (6) - letter (6)
- line (12)
- list (12)
- match (12)
- matched (6)
-
matched
_ count (6) -
matched
_ string (6) -
mid
_ match? (6) -
multipart
_ form (48) - name (12)
- name= (12)
-
original
_ platform (12) -
original
_ platform= (12) - os (12)
- os= (12)
- platform (12)
- platform= (12)
-
point
_ conversion _ form (12) -
point
_ conversion _ form= (12) - post (24)
- post2 (24)
-
primitive
_ convert (48) - printf (60)
- prune (6)
- query (12)
-
re
_ string (6) -
request
_ post (24) - requirements= (12)
-
return
_ format (12) -
return
_ format= (12) - scanf (36)
- search (24)
-
search
_ with _ source (12) -
set
_ content _ type (12) -
set
_ form _ data (12) - space (6)
- spec (24)
- spec= (24)
-
spec
_ count (6) - strftime (24)
-
string
_ left (6) -
time
_ format (12) -
time
_ format= (12) -
to
_ a (12) -
to
_ ary (12) -
to
_ re (6) -
to
_ s (36) - transform (12)
-
transform
_ keys (20) -
transform
_ keys! (20) -
transform
_ values (18) -
transform
_ values! (18) -
unicode
_ normalize (11) -
unicode
_ normalize! (11) -
unicode
_ normalized? (11) - unpack1 (9)
- version (12)
- version= (12)
- width (18)
- width= (12)
- write (12)
検索結果
先頭5件
-
Net
:: HTTPHeader # form _ data=(params) (6139.0) -
HTMLのフォームのデータ params から ヘッダフィールドとボディを設定します。
...ールド Content-Type: には
'application/x-www-form-urlencoded' が設定されます。
@param params HTML のフォームデータの Hash を与えます。
@param sep データのセパレータを文字列で与えます。
//emlist[例 form_data][ruby]{
require 'net/http'
uri = URI.parse.......request_uri)
req.form_data = {"q" => ["ruby", "perl"], "lang" => "en"} # => {"q"=>["ruby", "perl"], "lang"=>"en"}
//}
//emlist[例 set_form_data][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.set_form_data({"q" => "rub......y", "lang" => "en"}, ';') # => "application/x-www-form-urlencoded"
//}... -
Net
:: HTTPHeader # set _ form _ data(params , sep = & # 39;&& # 39;) -> () (6139.0) -
HTMLのフォームのデータ params から ヘッダフィールドとボディを設定します。
...ールド Content-Type: には
'application/x-www-form-urlencoded' が設定されます。
@param params HTML のフォームデータの Hash を与えます。
@param sep データのセパレータを文字列で与えます。
//emlist[例 form_data][ruby]{
require 'net/http'
uri = URI.parse.......request_uri)
req.form_data = {"q" => ["ruby", "perl"], "lang" => "en"} # => {"q"=>["ruby", "perl"], "lang"=>"en"}
//}
//emlist[例 set_form_data][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.set_form_data({"q" => "rub......y", "lang" => "en"}, ';') # => "application/x-www-form-urlencoded"
//}... -
OpenSSL
:: PKey :: EC :: Group # point _ conversion _ form -> Symbol (6108.0) -
点のエンコーディング方式を返します。
...:compressed
* :uncompressed
* :hybrid
詳しくは X9.62 (ECDSA) などを参照してください。
@raise OpenSSL::PKey::EC::Group::Error 得られたエンコーディングが未知の値であった
場合に発生します。
@see OpenSSL::PKey::EC::Group#point_conversion_form=... -
OpenSSL
:: PKey :: EC :: Group # point _ conversion _ form=(sym) (6108.0) -
点のエンコーディング方式を設定します。
...エンコーディング方式を設定します。
以下のいずれかを設定します。
* :compressed
* :uncompressed
* :hybrid
詳しくは X9.62 (ECDSA) などを参照してください。
@param sym 設定する方式(Symbol)
@see OpenSSL::PKey::EC::Group#point_conversion_form... -
Benchmark
:: Tms # format(fmtstr = nil , *args) -> String (6101.0) -
self を指定されたフォーマットで整形して返します。
...self を指定されたフォーマットで整形して返します。
このメソッドは Kernel.#format のようにオブジェクトを整形しますが、
以下の拡張を使用することができます。
: %u
user CPU time で置き換えられます。Benchmark::Tms#utime
: %y......:Tms#real
: %n
ラベルで置き換えられます(Mnemonic: n of "*n*ame")。Benchmark::Tms#label
@param fmtstr フォーマット文字列です。
省略された場合は、Benchmark::Tms::FORMAT が使用されます。
@param args フォーマットされる引数です。... -
DublinCoreModel
# dc _ format (6101.0) -
@todo
@todo -
DublinCoreModel
# dc _ format= (6101.0) -
@todo
@todo -
DublinCoreModel
# dc _ formats (6101.0) -
@todo
@todo -
Gem
:: Installer # formatted _ program _ filename(filename) -> String (6101.0) -
Ruby のコマンドと同じプレフィックスとサフィックスを付けたファイル名を返します。
Ruby のコマンドと同じプレフィックスとサフィックスを付けたファイル名を返します。
@param filename 実行ファイルのファイル名を指定します。