300件ヒット
[1-100件を表示]
(0.087秒)
別のキーワード
ライブラリ
- ビルトイン (12)
-
cgi
/ core (48) -
net
/ http (24) -
net
/ imap (108) - open-uri (12)
-
rexml
/ document (48) -
rexml
/ streamlistener (12) -
webrick
/ httpresponse (36)
クラス
- CGI (24)
- IO (12)
-
Net
:: HTTPGenericRequest (24) -
Net
:: IMAP :: BodyTypeBasic (24) -
Net
:: IMAP :: BodyTypeMessage (24) -
Net
:: IMAP :: BodyTypeMultipart (12) -
Net
:: IMAP :: BodyTypeText (24) -
Net
:: IMAP :: ContentDisposition (24) -
REXML
:: Instruction (48) -
WEBrick
:: HTTPResponse (36)
モジュール
-
CGI
:: QueryExtension (24) -
OpenURI
:: OpenRead (12) -
REXML
:: StreamListener (12)
キーワード
- == (12)
- body= (12)
-
body
_ stream (12) -
body
_ stream= (12) - content= (12)
-
content
_ length (24) -
content
_ length= (12) -
content
_ type (12) - description (36)
- disposition (48)
-
dsp
_ type (12) - header (12)
- notationdecl (12)
- out (12)
- param (12)
- read (12)
- readpartial (12)
- target (12)
検索結果
先頭5件
-
REXML
:: Instruction # content -> String | nil (21114.0) -
XML 処理命令の内容を返します。
...?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/css" href="style.css"?>
<?foobar?>
<root />
EOS
doc[2] # => <?p-i xml-stylesheet ...?>
doc[2].target # => "xml-stylesheet"
doc[2].content # => "type=\"text/css\" href=\"style.css\""
doc[4].target # => "foobar"
doc[4].content # => nil... -
IO
# readpartial(maxlen , outbuf = "") -> String (21077.0) -
IO から長さ maxlen を上限として読み込み、文字列として返します。 即座に得られるデータが存在しないときにはブロックしてデータの到着を待ちます。 即座に得られるデータが 1byte でも存在すればブロックしません。
...
IO から長さ maxlen を上限として読み込み、文字列として返します。
即座に得られるデータが存在しないときにはブロックしてデータの到着を待ちます。
即座に得られるデータが 1byte でも存在すればブロックしません。
バ......動作するよう設計されています。
readpartial がブロックするのは次の全ての条件が満たされたときだけです。
* IO オブジェクト内のバッファが空
* ストリームにデータが到着していない
* ストリームが EOF になっていない......外 EOFError を発生させます。
例えば、パイプに対しては次のように動作します。
r, w = IO.pipe # buffer pipe content
w << "abc" # "" "abc".
r.readpartial(4096) #=> "abc" ""... -
CGI
:: QueryExtension # content _ length -> Integer (9118.0) -
ENV['CONTENT_LENGTH'] を返します。
...ENV['CONTENT_LENGTH'] を返します。... -
CGI
:: QueryExtension # content _ type -> String (9118.0) -
ENV['CONTENT_TYPE'] を返します。
...ENV['CONTENT_TYPE'] を返します。... -
REXML
:: Instruction # content=(value) (9102.0) -
XML 処理命令の内容を変更します。
XML 処理命令の内容を変更します。
@param value 新たなデータ(文字列) -
Net
:: IMAP :: BodyTypeBasic # disposition -> Net :: IMAP :: ContentDisposition | nil (6317.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeMessage # disposition -> Net :: IMAP :: ContentDisposition | nil (6317.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeMultipart # disposition -> Net :: IMAP :: ContentDisposition | nil (6317.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeText # disposition -> Net :: IMAP :: ContentDisposition | nil (6317.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183...