るりまサーチ

最速Rubyリファレンスマニュアル検索!
60件ヒット [1-60件を表示] (0.014秒)

別のキーワード

  1. cgi form
  2. cgi/html form
  3. cgi multipart_form
  4. htmlextension form
  5. cgi/html multipart_form

キーワード

検索結果

Gem::SourceInfoCache#search(pattern, platform_only = false, all = false) -> [Gem::Specification] (18208.0)

与えられた条件を満たす Gem::Specification のリストを返します。

...ンスを指定します。

@param platform_only 真を指定するとプラットフォームが一致するもののみを返します。デフォルトは偽です。

@param all 真を指定するとキャッシュを更新してから検索を実行します。

@see Gem::SourceIndex#search...

Gem::SourceIndex#search(gem_pattern, platform_only = false) -> [Gem::Specification] (18202.0)

引数で指定された条件を満たす Gem のリストを返します。

...満たす Gem のリストを返します。

@param gem_pattern 検索したい Gem を表す Gem::Dependency のインスタンスを指定します。

@param platform_only 真を指定するとプラットフォームが一致するもののみを返します。デフォルトは偽です。...

Gem::SourceInfoCache#search_with_source(pattern, only_platform = false, all = false) -> Array (6202.0)

与えられた条件を満たす Gem::Specification と URL のリストを返します。

...ストを返します。

@param pattern 検索したい Gem を表す Gem::Dependency のインスタンスを指定します。

@param only_platform 真を指定するとプラットフォームが一致するもののみを返します。デフォルトは偽です。

@param all 真を指定す...

Net::HTTP#post(path, data, header = nil, dest = nil) -> Net::HTTPResponse (25.0)

サーバ上の path にあるエンティティに対し文字列 data を POST で送ります。

...Content-Type: を指定する必要があります。
もし header に指定しなかったならば、 Content-Type として
"application/x-www-form-urlencoded" を用います。

dest は時代遅れの引数です。利用しないでください。
dest を指定した場合には
ボディ...
...ersion 1.1
response, body = http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')

# version 1.2
response = http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')

# using block
File.open('save.html', 'w') {|f|
http.post('/cgi-bin/search.rb', 'query=subject&target=ruby') do |str|...

Net::HTTP#post(path, data, header = nil, dest = nil) {|body_segment| .... } -> Net::HTTPResponse (25.0)

サーバ上の path にあるエンティティに対し文字列 data を POST で送ります。

...Content-Type: を指定する必要があります。
もし header に指定しなかったならば、 Content-Type として
"application/x-www-form-urlencoded" を用います。

dest は時代遅れの引数です。利用しないでください。
dest を指定した場合には
ボディ...
...ersion 1.1
response, body = http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')

# version 1.2
response = http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')

# using block
File.open('save.html', 'w') {|f|
http.post('/cgi-bin/search.rb', 'query=subject&target=ruby') do |str|...

絞り込み条件を変える