るりまサーチ

最速Rubyリファレンスマニュアル検索!
367件ヒット [1-100件を表示] (0.129秒)
トップページ > クエリ:i[x] > クエリ:header[x] > クエリ:name[x]

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. ipaddr to_i
  5. kernel $-i

検索結果

<< 1 2 3 ... > >>

Gem::Package::TarHeader#name -> String (21217.0)

tar のヘッダに含まれる name を返します。

...tar のヘッダに含まれる name を返します。...

Net::HTTPHeader#each_capitalized_name {|name| .... } -> () (15340.0)

保持しているヘッダ名を正規化 ('x-my-header' -> 'X-My-Header') して、ブロックに渡します。

...規化
('x-my-header' -> 'X-My-Header')
して、ブロックに渡します。

//emlist[例][ruby]{
require 'net/http'

uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.each_capitalized_name { |key| puts key }

# => Accept-Encoding
# => Accept
# =...

Gem::Package::TarHeader#linkname -> String (15300.0)

tar のヘッダに含まれる linkname を返します。

...tar のヘッダに含まれる linkname を返します。...

Net::HTTPHeader#canonical_each {|name, value| .... } -> () (9214.0)

ヘッダフィールドの正規化名とその値のペアを ブロックに渡し、呼びだします。

...ヘッダフィールドの正規化名とその値のペアを
ブロックに渡し、呼びだします。

正規化名は name に対し
name
.downcase.split(/-/).capitalize.join('-')
で求まる文字列です。...

Net::HTTPHeader#each_capitalized {|name, value| .... } -> () (9214.0)

ヘッダフィールドの正規化名とその値のペアを ブロックに渡し、呼びだします。

...ヘッダフィールドの正規化名とその値のペアを
ブロックに渡し、呼びだします。

正規化名は name に対し
name
.downcase.split(/-/).capitalize.join('-')
で求まる文字列です。...

絞り込み条件を変える

Socket::Constants::IF_NAMESIZE -> Integer (9206.0)

インターフェース名文字列の最大長さ。

...インターフェース名文字列の最大長さ。

@see net/if.h(header)...

Socket::IF_NAMESIZE -> Integer (9206.0)

インターフェース名文字列の最大長さ。

...インターフェース名文字列の最大長さ。

@see net/if.h(header)...

Gem::Package::TarHeader#gname -> String (9200.0)

tar のヘッダに含まれるグループ名を返します。

tar のヘッダに含まれるグループ名を返します。

Gem::Package::TarHeader#uname -> String (9200.0)

tar のヘッダに含まれるユーザ名を返します。

tar のヘッダに含まれるユーザ名を返します。

Kernel#check_signedness(type, headers = nil, opts = nil) -> "signed" | "unsigned" | nil (6432.0)

Returns the signedness of the given +type+. You may optionally specify additional +headers+ to search in for the +type+. If the +type+ is found and is a numeric type, a macro is passed as a preprocessor constant to the compiler using the +type+ name, in uppercase, prepended with 'SIGNEDNESS_OF_', followed by the +type+ name, followed by '=X' where 'X' is positive integer if the +type+ is unsigned, or negative integer if the +type+ is signed. For example, if size_t is defined as unsigned, then check_signedness('size_t') would returned +1 and the SIGNEDNESS_OF_SIZE_T=+1 preprocessor macro would be passed to the compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is done.

...eturns the signedness of the given +type+. You may optionally
specify additional +headers+ to search in for the +type+.

I
f the +type+ is found and is a numeric type, a macro is passed as a
preprocessor constant to the compiler using the +type+ name, in
uppercase, prepended with 'SIGNEDNESS_OF...
...followed by the +type+
name
, followed by '=X' where 'X' is positive integer if the +type+ is
unsigned, or negative integer if the +type+ is signed.

For example, if size_t is defined as unsigned, then
check_signedness('size_t') would returned +1 and the
SIGNEDNESS_OF_SIZE_T=+1 preprocessor ma...
...cro would be passed to the
compiler, and SIGNEDNESS_OF_INT=-1 if check_signedness('int') is
done....

絞り込み条件を変える

<< 1 2 3 ... > >>