576件ヒット
[1-100件を表示]
(0.201秒)
別のキーワード
ライブラリ
- ビルトイン (72)
-
cgi
/ html (264) -
irb
/ input-method (120) - logger (24)
-
rdoc
/ markup (12) -
rubygems
/ package / tar _ input (72) - zlib (12)
クラス
-
Encoding
:: Converter (60) -
Encoding
:: InvalidByteSequenceError (12) -
Gem
:: Package :: TarInput (72) -
IRB
:: FileInputMethod (24) -
IRB
:: InputMethod (24) -
IRB
:: ReadlineInputMethod (36) -
IRB
:: StdioInputMethod (36) - Logger (24)
-
RDoc
:: Markup (12) -
Zlib
:: GzipFile :: Error (12)
モジュール
-
CGI
:: HtmlExtension (264)
キーワード
-
add
_ html (12) - checkbox (24)
-
checkbox
_ group (24) - close (12)
- debug (24)
- each (12)
- encoding (36)
-
extract
_ entry (12) -
file
_ field (24) -
file
_ name (12) - gets (48)
- hidden (24)
-
incomplete
_ input? (12) - line (24)
-
load
_ gemspec (12) -
password
_ field (24) -
primitive
_ convert (48) -
primitive
_ errinfo (12) -
radio
_ group (24) - reset (24)
- submit (24)
-
text
_ field (24) -
zipped
_ stream (12)
検索結果
先頭5件
-
Zlib
:: GzipFile :: Error # input -> String | nil (21202.0) -
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。
...読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。... -
Gem
:: Package :: TarInput # load _ gemspec(io) -> Gem :: Specification | nil (15201.0) -
YAML 形式の gemspec を io から読み込みます。
...YAML 形式の gemspec を io から読み込みます。
@param io 文字列か IO オブジェクトを指定します。
@see Gem::Specification.from_yaml... -
IRB
:: FileInputMethod # encoding -> Encoding (9201.0) -
読み込んだファイルの文字エンコーディングを返します。
読み込んだファイルの文字エンコーディングを返します。 -
IRB
:: ReadlineInputMethod # encoding -> Encoding (9201.0) -
自身の文字エンコーディングを返します。
自身の文字エンコーディングを返します。 -
IRB
:: StdioInputMethod # encoding -> Encoding (9201.0) -
自身の文字エンコーディングを返します。
自身の文字エンコーディングを返します。 -
Encoding
:: InvalidByteSequenceError # incomplete _ input? -> bool (9114.0) -
エラー発生時に入力文字列が不足している場合に真を返します。
...g::Converter.new("EUC-JP", "ISO-8859-1")
begin
ec.convert("abc\xA1z")
rescue Encoding::InvalidByteSequenceError
p $!
#=> #<Encoding::InvalidByteSequenceError: "\xA1" followed by "z" on EUC-JP>
p $!.incomplete_input? #=> false
end
begin
ec.convert("abc\xA1")
ec.finish
rescue Encoding......::InvalidByteSequenceError
p $! #=> #<Encoding::InvalidByteSequenceError: incomplete "\xA1" on EUC-JP>
p $!.incomplete_input? #=> true
end
//}... -
Gem
:: Package :: TarInput # metadata -> Gem :: Specification (9101.0) -
メタデータを返します。
メタデータを返します。 -
Gem
:: Package :: TarInput # zipped _ stream(entry) -> StringIO (9101.0) -
与えられた entry の圧縮したままの StringIO を返します。
...与えられた entry の圧縮したままの StringIO を返します。
@param entry エントリを指定します。... -
IRB
:: FileInputMethod # gets -> String (9101.0) -
読み込んだファイルから文字列を 1 行読み込みます。
読み込んだファイルから文字列を 1 行読み込みます。