480件ヒット
[401-480件を表示]
(0.073秒)
別のキーワード
ライブラリ
- ビルトイン (60)
-
cgi
/ core (12) -
irb
/ output-method (72) -
net
/ http (12) -
net
/ pop (12) -
net
/ smtp (24) - prettyprint (12)
- rake (24)
-
rexml
/ document (108) - rss (24)
-
rubygems
/ package / tar _ output (48) - socket (12)
- win32ole (36)
クラス
- CGI (12)
-
Encoding
:: Converter (60) -
Gem
:: Package :: TarOutput (48) -
IRB
:: OutputMethod (60) -
IRB
:: StdioOutputMethod (12) -
Net
:: HTTP (12) -
Net
:: POP3 (12) -
Net
:: SMTP (24) - PrettyPrint (12)
-
RDoc
:: Options (24) -
REXML
:: Attribute (12) -
REXML
:: Declaration (12) -
REXML
:: DocType (12) -
REXML
:: Document (24) -
REXML
:: Element (12) -
REXML
:: ExternalEntity (12) -
REXML
:: Formatters :: Default (12) -
REXML
:: NotationDecl (12) -
Rake
:: Application (24) - UNIXSocket (12)
-
WIN32OLE
_ PARAM (36)
モジュール
キーワード
-
add
_ gem _ contents (12) -
add
_ signatures (12) - close (12)
-
debug
_ output= (12) -
force
_ output (12) -
force
_ output= (12) - input? (12)
-
insert
_ output (12) - output? (12)
-
output
_ encoding (12) -
output
_ encoding= (12) - pp (12)
- ppx (12)
-
primitive
_ convert (48) - print (36)
- printn (12)
- puts (12)
- retval? (12)
-
send
_ io (12) -
set
_ debug _ output (36) -
tty
_ output= (12) - write (108)
検索結果
先頭5件
- Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize) -> Symbol - Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize , options) -> Symbol - CGI
# print(*strings) - Rake
:: Application # options -> OpenStruct - UNIXSocket
# send _ io(io) -> nil
-
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize) -> Symbol (43.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...=> true # source buffer may be part of larger source
:after_output => true # stop conversion after output before input
: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_s......e
ec.insert_output(ec.primitive_errinfo[3].dump[1..-2])
redo
when :undefined_conversion
c = ec.primitive_errinfo[3].dup.force_encoding(ec.primitive_errinfo[1])
ec.insert_output('\x{%X:%s}' % [c.ord, c.encoding])
redo
when :incomplete_input
ec.insert_output(ec.primitive_er... -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize , options) -> Symbol (43.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...=> true # source buffer may be part of larger source
:after_output => true # stop conversion after output before input
: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_s......e
ec.insert_output(ec.primitive_errinfo[3].dump[1..-2])
redo
when :undefined_conversion
c = ec.primitive_errinfo[3].dup.force_encoding(ec.primitive_errinfo[1])
ec.insert_output('\x{%X:%s}' % [c.ord, c.encoding])
redo
when :incomplete_input
ec.insert_output(ec.primitive_er... -
CGI
# print(*strings) (7.0) -
@todo
...@todo
引数の文字列を標準出力に出力します。
cgi.print は $DEFAULT_OUTPUT.print と等価です。
例:
cgi = CGI.new
cgi.print "This line is a part of content body.\r\n"... -
Rake
:: Application # options -> OpenStruct (7.0) -
コマンドラインで与えられたアプリケーションのオプションを返します。
...em=false, job_stats=false, load_system=false, nosearch=false, rakelib=["rakelib"], show_all_tasks=false, show_prereqs=false, show_task_pattern=nil, show_tasks=nil, silent=false, suppress_backtrace_pattern=nil, thread_pool_size=8, trace=false, trace_output=#<IO:<STDERR>>, trace_rules=false>
end
//}... -
UNIXSocket
# send _ io(io) -> nil (7.0) -
引数 io に対応するファイルディスクリプタをソケットの接続先に送ります。
...す。
require 'socket'
s1, s2 = UNIXSocket.pair
s1.send_io STDOUT
stdout = s2.recv_io
p STDOUT.fileno #=> 1
p stdout.fileno #=> 6
stdout.puts "hello" # outputs "hello\n" to standard output.
@param io 送るファイルディスクリプタ(整数 or IOオブジェクト)... -
WIN32OLE
_ PARAM # input? -> bool (7.0) -
パラメータがクライアントからサーバへ与えるものかを判定します。
...クライアントからサーバへ与える。
WIN32OLE_PARAM#input?が真)、out(サーバがクライアントへ与える。
WIN32OLE_PARAM#output?が真)および、inout(クライアントからサーバ
へ与え、サーバがクライアントへ与える)の3種類の方向属性の... -
WIN32OLE
_ PARAM # retval? -> bool (7.0) -
パラメータが戻り値かどうかを判定します。
...LEオートメーションの規定では、メソッドの戻り値は引数リストの最右端のパ
ラメータをout属性(WIN32OLE_PARAM#output?が真)とすることで実現し
ます。ただし、そのパラメータをOLEオートメーション呼び出しを記述する言語
が...