1085件ヒット
[1-100件を表示]
(0.159秒)
別のキーワード
ライブラリ
- English (48)
- ビルトイン (84)
-
cgi
/ html (264) - etc (252)
-
irb
/ input-method (120) - logger (24)
-
rdoc
/ markup (12) - readline (12)
-
rexml
/ document (12) -
rubygems
/ package / tar _ input (108) -
rubygems
/ requirement (12) -
rubygems
/ specification (24) -
rubygems
/ version (24) - zlib (12)
クラス
-
Encoding
:: Converter (60) -
Encoding
:: InvalidByteSequenceError (12) -
Gem
:: Package :: TarInput (96) -
Gem
:: Requirement (12) -
Gem
:: Specification (24) -
Gem
:: Version (24) -
IRB
:: FileInputMethod (24) -
IRB
:: InputMethod (24) -
IRB
:: ReadlineInputMethod (36) -
IRB
:: StdioInputMethod (36) - Logger (24)
-
RDoc
:: Markup (12) -
REXML
:: Text (12) -
Zlib
:: GzipFile :: Error (12)
モジュール
-
CGI
:: HtmlExtension (264) - Etc (252)
- Kernel (60)
- Readline (12)
キーワード
-
$ INPUT _ LINE _ NUMBER (12) -
$ INPUT _ RECORD _ SEPARATOR (12) -
$ NR (12) -
$ RS (12) -
NEWS for Ruby 3
. 0 . 0 (5) -
PC
_ 2 _ SYMLINKS (12) -
PC
_ ALLOC _ SIZE _ MIN (12) -
PC
_ ASYNC _ IO (12) -
PC
_ CHOWN _ RESTRICTED (12) -
PC
_ FILESIZEBITS (12) -
PC
_ LINK _ MAX (12) -
PC
_ MAX _ CANON (12) -
PC
_ MAX _ INPUT (12) -
PC
_ NAME _ MAX (12) -
PC
_ NO _ TRUNC (12) -
PC
_ PATH _ MAX (12) -
PC
_ PIPE _ BUF (12) -
PC
_ PRIO _ IO (12) -
PC
_ REC _ INCR _ XFER _ SIZE (12) -
PC
_ REC _ MAX _ XFER _ SIZE (12) -
PC
_ REC _ MIN _ XFER _ SIZE (12) -
PC
_ REC _ XFER _ ALIGN (12) -
PC
_ SYMLINK _ MAX (12) -
PC
_ SYNC _ IO (12) -
PC
_ TIMESTAMP _ RESOLUTION (12) -
PC
_ VDISABLE (12) - TarInput (12)
-
add
_ html (12) - cgi (12)
-
cgi
/ session (12) - checkbox (24)
-
checkbox
_ group (24) - close (12)
- create (24)
- debug (24)
- each (12)
- encoding (36)
-
extract
_ entry (12) -
file
_ field (24) -
file
_ name (12) -
from
_ yaml (12) - gets (48)
- hidden (24)
-
incomplete
_ input? (12) -
lex
_ getline (12) - line (24)
-
load
_ gemspec (12) - new (24)
- normalize (12)
-
normalize
_ yaml _ input (12) - open (12)
-
password
_ field (24) -
primitive
_ convert (48) -
primitive
_ errinfo (12) - print (12)
-
radio
_ group (24) - readline (12)
- reset (24)
-
ruby 1
. 6 feature (12) -
rubygems
/ package / tar _ input (12) -
rubygems
/ security (12) - submit (24)
-
text
_ field (24) -
zipped
_ stream (12)
検索結果
先頭5件
-
Zlib
:: GzipFile :: Error # input -> String | nil (21201.0) -
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。
...読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。... -
rubygems
/ package / tar _ input (18000.0) -
gem-format な tar ファイルを読み込む Gem::Package::TarReader のラッ パークラスを提供するライブラリです。
...gem-format な tar ファイルを読み込む Gem::Package::TarReader のラッ
パークラスを提供するライブラリです。... -
Gem
:: Package :: TarInput # load _ gemspec(io) -> Gem :: Specification | nil (15200.0) -
YAML 形式の gemspec を io から読み込みます。
...YAML 形式の gemspec を io から読み込みます。
@param io 文字列か IO オブジェクトを指定します。
@see Gem::Specification.from_yaml... -
Gem
:: Package :: TarInput (12000.0) -
gem-format な tar ファイルを読み込む Gem::Package::TarReader のラッ パークラスです。
...gem-format な tar ファイルを読み込む Gem::Package::TarReader のラッ
パークラスです。... -
Gem
:: Specification . normalize _ yaml _ input(input) -> String (9308.0) -
YAML 形式の gemspec を正しくフォーマットします。
...YAML 形式の gemspec を正しくフォーマットします。
@param input 文字列か IO オブジェクトを指定します。... -
IRB
:: FileInputMethod # encoding -> Encoding (9200.0) -
読み込んだファイルの文字エンコーディングを返します。
読み込んだファイルの文字エンコーディングを返します。 -
IRB
:: ReadlineInputMethod # encoding -> Encoding (9200.0) -
自身の文字エンコーディングを返します。
自身の文字エンコーディングを返します。 -
IRB
:: StdioInputMethod # encoding -> Encoding (9200.0) -
自身の文字エンコーディングを返します。
自身の文字エンコーディングを返します。 -
Encoding
:: InvalidByteSequenceError # incomplete _ input? -> bool (9113.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
//}...