1123件ヒット
[1101-1123件を表示]
(0.019秒)
ライブラリ
- ビルトイン (180)
-
cgi
/ core (12) -
cgi
/ html (24) - e2mmap (6)
-
fiddle
/ import (12) -
irb
/ cmd / chws (48) -
irb
/ cmd / help (24) -
irb
/ cmd / load (72) -
irb
/ cmd / nop (60) -
irb
/ cmd / pushws (72) -
irb
/ cmd / subirb (96) -
irb
/ ext / save-history (12) -
irb
/ ext / use-loader (24) -
irb
/ extend-command (168) - json (48)
-
mutex
_ m (24) -
net
/ http (8) - nkf (12)
- openssl (36)
- rake (24)
- sync (6)
- thwait (6)
クラス
-
ARGF
. class (12) - Enumerator (24)
- IO (96)
-
IRB
:: ExtendCommand :: ChangeWorkspace (12) -
IRB
:: ExtendCommand :: CurrentWorkingWorkspace (12) -
IRB
:: ExtendCommand :: Foreground (12) -
IRB
:: ExtendCommand :: Help (12) -
IRB
:: ExtendCommand :: IrbCommand (12) -
IRB
:: ExtendCommand :: Jobs (12) -
IRB
:: ExtendCommand :: Kill (12) -
IRB
:: ExtendCommand :: Load (12) -
IRB
:: ExtendCommand :: Nop (48) -
IRB
:: ExtendCommand :: PopWorkspace (12) -
IRB
:: ExtendCommand :: PushWorkspace (12) -
IRB
:: ExtendCommand :: Require (12) -
IRB
:: ExtendCommand :: Source (12) -
IRB
:: ExtendCommand :: Workspaces (12) - Module (36)
- Object (12)
-
OpenSSL
:: SSL :: SSLContext (24) -
Rake
:: FileList (12) - Regexp (12)
- ThreadsWait (6)
モジュール
-
CGI
:: HtmlExtension (24) -
CGI
:: QueryExtension (12) - Exception2MessageMapper (6)
-
Fiddle
:: Importer (12) -
IRB
:: ContextExtender (24) -
IRB
:: ExtendCommandBundle (144) -
IRB
:: HistorySavingAbility (12) -
JSON
:: Generator :: GeneratorMethods :: Object (12) -
JSON
:: Generator :: GeneratorMethods :: String :: Extend (12) -
Mutex
_ m (24) -
Sync
_ m (6)
キーワード
- ChangeWorkspace (12)
- ContextExtender (12)
- CurrentWorkingWorkspace (12)
- EXTENDED (12)
- Extend (24)
- ExtendCommandBundle (12)
- Foreground (12)
- HTTPNotExtended (8)
- Help (12)
- IrbCommand (12)
- Jobs (12)
- Kill (12)
- Load (12)
-
NEWS for Ruby 2
. 2 . 0 (11) -
NEWS for Ruby 2
. 5 . 0 (8) -
NEWS for Ruby 2
. 7 . 0 (6) -
NEWS for Ruby 3
. 1 . 0 (4) - NKF (12)
-
NO
_ OVERRIDE (12) - Nop (12)
- OCSP (12)
-
OVERRIDE
_ ALL (12) -
OVERRIDE
_ PRIVATE _ ONLY (12) - PopWorkspace (12)
- PushWorkspace (12)
- Require (12)
- Source (12)
- Workspaces (12)
-
ca
_ file= (12) -
def
_ extend _ command (24) -
drb
/ extservm (12) - execute (180)
- extend (12)
-
extend
_ object (42) - extended (24)
- extern (12)
- html (24)
-
inplace
_ mode= (12) -
install
_ alias _ method (12) -
install
_ extend _ commands (24) -
irb
/ extend-command (12) -
irb
_ context (24) -
irb
_ exit (12) -
irb
_ load (12) -
irb
_ original _ method _ name (12) -
irb
_ require (12) -
json
_ create (12) -
mu
_ extended (12) - multipart? (12)
- new (12)
- next (12)
-
next
_ values (12) -
next
_ wait (6) - pipe (96)
-
rake
_ extension (12) -
rb
_ extend _ object (12) -
rb
_ mod _ extend _ object (12) -
rb
_ obj _ extend (12) -
renegotiation
_ cb= (12) -
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 2 feature (12) -
ruby 1
. 8 . 3 feature (12) -
ruby 1
. 8 . 4 feature (12) -
stack
_ extend (12) -
sync
_ extend (6) -
to
_ json (12)
検索結果
-
IO
. pipe(enc _ str , **opts) -> [IO] (16.0) -
pipe(2) を実行して、相互につながった2つの IO オブジェクトを要素とする配列を返します。
...である場合
最初のものが外部エンコーディング、次が内部エンコーディングを意味します。
@param ext_enc 読み込み側の外部エンコーディングを Encoding オブジェクトで指定します。
@param int_enc 読み込み側の内部......るキーワード引数(see IO.new)
@raise Errno::EXXX IO オブジェクトの作成に失敗した場合に発生します。
r, w = IO.pipe
p [r, w] # => [#<IO:0x401b90f8>, #<IO:0x401b7718>]
Thread.new do
w.puts "foo"
w.close
end
p r.gets # => "foo\n"... -
IO
. pipe(enc _ str , **opts) {|read _ io , write _ io| . . . } -> object (16.0) -
pipe(2) を実行して、相互につながった2つの IO オブジェクトを要素とする配列を返します。
...である場合
最初のものが外部エンコーディング、次が内部エンコーディングを意味します。
@param ext_enc 読み込み側の外部エンコーディングを Encoding オブジェクトで指定します。
@param int_enc 読み込み側の内部......るキーワード引数(see IO.new)
@raise Errno::EXXX IO オブジェクトの作成に失敗した場合に発生します。
r, w = IO.pipe
p [r, w] # => [#<IO:0x401b90f8>, #<IO:0x401b7718>]
Thread.new do
w.puts "foo"
w.close
end
p r.gets # => "foo\n"...