252件ヒット
[1-100件を表示]
(0.170秒)
ライブラリ
- ビルトイン (12)
-
cgi
/ core (36) -
net
/ http (24) -
net
/ imap (108) - open-uri (12)
-
rexml
/ document (24) -
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 (24) -
WEBrick
:: HTTPResponse (36)
モジュール
-
CGI
:: QueryExtension (12) -
OpenURI
:: OpenRead (12)
キーワード
- body= (12)
-
body
_ stream (12) -
body
_ stream= (12) -
content
_ length (12) -
content
_ length= (12) -
content
_ type (12) - description (36)
- disposition (48)
-
dsp
_ type (12) - header (12)
- out (12)
- param (12)
- read (12)
- readpartial (12)
- target (12)
検索結果
先頭5件
-
REXML
:: Instruction # content -> String | nil (21120.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... -
CGI
:: QueryExtension # content _ type -> String (15218.0) -
ENV['CONTENT_TYPE'] を返します。
...ENV['CONTENT_TYPE'] を返します。... -
IO
# readpartial(maxlen , outbuf = "") -> String (15177.0) -
IO から長さ maxlen を上限として読み込み、文字列として返します。 即座に得られるデータが存在しないときにはブロックしてデータの到着を待ちます。 即座に得られるデータが 1byte でも存在すればブロックしません。
...
IO から長さ maxlen を上限として読み込み、文字列として返します。
即座に得られるデータが存在しないときにはブロックしてデータの到着を待ちます。
即座に得られるデータが 1byte でも存在すればブロックしません。
バ......dpartial はブロックを最小限に抑えることによって、
パイプ、ソケット、端末などのストリームに対して適切に動作するよう設計されています。
readpartial がブロックするのは次の全ての条件が満たされたときだけです。
* IO......なっていない
これらの条件が満たされる場合、何らかのデータが到着するか EOF になるまで readpartial はブロックします。
readpartial の結果は以下のようになります。
(1) バッファが空でなければ、そのバッファのデータを... -
Net
:: IMAP :: BodyTypeBasic # disposition -> Net :: IMAP :: ContentDisposition | nil (12517.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeMessage # disposition -> Net :: IMAP :: ContentDisposition | nil (12517.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeMultipart # disposition -> Net :: IMAP :: ContentDisposition | nil (12517.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeText # disposition -> Net :: IMAP :: ContentDisposition | nil (12517.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeBasic # description -> String | nil (12217.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeMessage # description -> String | nil (12217.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045...