るりまサーチ

最速Rubyリファレンスマニュアル検索!
354件ヒット [1-100件を表示] (0.080秒)
トップページ > クエリ:t[x] > クエリ:HTTP[x] > ライブラリ:ビルトイン[x]

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

クラス

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

Encoding::UTF8_MAC -> Encoding (6114.0)

UTF8-MAC、アップルによって修正された Normalization Form D(分解済み)という形式のUTF-8です。

...UTF8-MAC、アップルによって修正された Normalization Form D(分解済み)という形式のUTF-8です。

@see http://developer.apple.com/jp/technotes/tn1150.html,
http
://developer.apple.com/jp/technotes/tn2078.html...

Encoding::UTF_8_HFS -> Encoding (6114.0)

UTF8-MAC、アップルによって修正された Normalization Form D(分解済み)という形式のUTF-8です。

...UTF8-MAC、アップルによって修正された Normalization Form D(分解済み)という形式のUTF-8です。

@see http://developer.apple.com/jp/technotes/tn1150.html,
http
://developer.apple.com/jp/technotes/tn2078.html...

Encoding::UTF_8_MAC -> Encoding (6114.0)

UTF8-MAC、アップルによって修正された Normalization Form D(分解済み)という形式のUTF-8です。

...UTF8-MAC、アップルによって修正された Normalization Form D(分解済み)という形式のUTF-8です。

@see http://developer.apple.com/jp/technotes/tn1150.html,
http
://developer.apple.com/jp/technotes/tn2078.html...

Dir.chroot(path) -> 0 (6108.0)

ルートディレクトリを path に変更します。

...を path に変更します。

スーパーユーザだけがルートディレクトリを変更できます。
ルートディレクトリの変更に成功すれば 0 を返します。
各プラットフォームのマニュアルの chroot の項も参照して下さい。

@param path ディ...
...トリのパスを文字列で指定します。

@raise Errno::EXXX 失敗した場合に発生します。

//emlist[例][ruby]{
p Dir.glob("*") #=> ["file1", "file2]
Dir.chroot("./")
p Dir.glob("/*") #=> ["/file1", "/file2]
//}

@see http://opengroup.org/onlinepubs/007908799/xsh/chroot.html...

Encoding::SJIS_SOFTBANK -> Encoding (6108.0)

SJIS-SoftBank エンコーディングです。

...SJIS-SoftBank エンコーディングです。

Shift_JIS, CP932 の亜種です。
SoftBank の携帯電話で使われる絵文字が含まれています。

@see http://creation.mb.softbank.jp/mc/tech/tech_pic/pic_index.html...

絞り込み条件を変える

Encoding::SJIS_SoftBank -> Encoding (6108.0)

SJIS-SoftBank エンコーディングです。

...SJIS-SoftBank エンコーディングです。

Shift_JIS, CP932 の亜種です。
SoftBank の携帯電話で使われる絵文字が含まれています。

@see http://creation.mb.softbank.jp/mc/tech/tech_pic/pic_index.html...

Encoding::UTF8_SOFTBANK -> Encoding (6108.0)

UTF8-SoftBank エンコーディングです。

...UTF8-SoftBank エンコーディングです。

UTF-8 の亜種です。
SoftBank の携帯電話で使われる絵文字が含まれています。

@see http://creation.mb.softbank.jp/mc/tech/tech_pic/pic_index.html...

Encoding::UTF8_SoftBank -> Encoding (6108.0)

UTF8-SoftBank エンコーディングです。

...UTF8-SoftBank エンコーディングです。

UTF-8 の亜種です。
SoftBank の携帯電話で使われる絵文字が含まれています。

@see http://creation.mb.softbank.jp/mc/tech/tech_pic/pic_index.html...

Module#inspect -> String (6108.0)

モジュールやクラスの名前を文字列で返します。

...スパスの例としては「CGI::Session」「Net::HTTP」が挙げられます。

@return 名前のないモジュール / クラスに対しては、name は nil を、それ以外はオブジェクト ID の文字列を返します。

//emlist[例][ruby]{
module A
module B
end

p B.name...
...lass C
end
end

p A.name #=> "A"
p A::B.name #=> "A::B"
p A::C.name #=> "A::C"

# 名前のないモジュール / クラス
p Module.new.name #=> nil
p Class.new.name #=> nil
p Module.new.to_s #=> "#<Module:0x00007f90b09112c8>"
p Class.new.to_s #=> "#<Class:0x00007fa5c40b41b0>"
//}...
<< 1 2 3 ... > >>