168件ヒット
[1-100件を表示]
(0.037秒)
別のキーワード
ライブラリ
- ビルトイン (12)
-
cgi
/ html (24) - mkmf (36)
-
net
/ http (24) - resolv (12)
-
rexml
/ document (36) -
rexml
/ sax2listener (12) - un (12)
クラス
-
Net
:: HTTP (24) - Proc (12)
-
REXML
:: Instruction (36) -
Resolv
:: DNS :: Resource :: IN :: SRV (12)
モジュール
-
CGI
:: HtmlExtension (24) - Kernel (48)
-
REXML
:: SAX2Listener (12)
キーワード
- == (12)
- a (24)
- content (12)
-
create
_ makefile (12) -
dir
_ config (12) - ln (12)
- modified? (12)
- post (24)
-
processing
_ instruction (12) -
source
_ location (12)
検索結果
先頭5件
-
REXML
:: Instruction # target -> String (18208.0) -
XML 処理命令のターゲットを返します。
...quire 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/css" href="style.css"?>
<root />
EOS
doc[2] # => <?p-i xml-stylesheet ...?>
doc[2].target # => "xml-stylesheet"
doc[2].content # => "type=\"text/css\" href=\"style.css\""
//}... -
Resolv
:: DNS :: Resource :: IN :: SRV # target -> Resolv :: DNS :: Name (18202.0) -
対象のホストのホスト名を返します。
対象のホストのホスト名を返します。 -
Kernel
# dir _ config(target , idefault = nil , ldefault = nil) -> [String , String] (292.0) -
configure オプション --with-TARGET-dir, --with-TARGET-include, --with-TARGET-lib をユーザが extconf.rb に指定できるようにします。
...configure オプション
--with-TARGET-dir,
--with-TARGET-include,
--with-TARGET-lib
をユーザが extconf.rb に指定できるようにします。
--with-TARGET-dir オプションは
システム標準ではない、
ヘッダファイルやライブラリがあるディレクトリをま......指定するために使います。
ユーザが extconf.rb に --with-TARGET-dir=PATH を指定したときは
$CFLAGS に "-IPATH/include" を、
$LDFLAGS に "-LPATH/lib" を、
それぞれ追加します。
--with-TARGET-include オプションは
システム標準ではないヘッダファ......f.rb に --with-TARGET-include=PATH を指定したときは
$CFLAGS に PATH を追加します。
--with-TARGET-lib オプションは
システム標準ではないライブラリのディレクトリを指定するために使います。
ユーザが extconf.rb に --with-TARGET-lib=PATH を... -
Kernel
# modified?(target , times) -> Time | nil (256.0) -
target が times の全ての要素よりも新しい場合は target の更新時刻を返します。 そうでない場合は nil を返します。target が存在しない場合も nil を返します。
...
target が times の全ての要素よりも新しい場合は target の更新時刻を返します。
そうでない場合は nil を返します。target が存在しない場合も nil を返します。
@param target 対象のファイル名を指定します。
@param times Time の配列... -
Kernel
# create _ makefile(target , srcprefix = nil) -> true (208.0) -
@todo
...ラリを
ビルドするための Makefile を生成します。
extconf.rb は普通このメソッドの呼び出しで終ります。
@param target ターゲットとなる拡張ライブラリの名前を指定します。
例えば、拡張ライブラリで "Init_foo" とい... -
REXML
:: SAX2Listener # processing _ instruction(target , data) -> () (208.0) -
XML 処理命令(PI)に対し呼び出されるコールバックメソッドです。
...XML 処理命令(PI)に対し呼び出されるコールバックメソッドです。
@param target ターゲット名が文字列で渡されます
@param data 処理命令の内容が文字列で渡されます... -
Net
:: HTTP # post(path , data , header = nil , dest = nil) -> Net :: HTTPResponse (119.0) -
サーバ上の path にあるエンティティに対し文字列 data を POST で送ります。
...http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')
# version 1.2
response = http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')
# using block
File.open('save.html', 'w') {|f|
http.post('/cgi-bin/search.rb', 'query=subject&target=ruby') do |str|
f.write str
end
}
//}
@s... -
Net
:: HTTP # post(path , data , header = nil , dest = nil) {|body _ segment| . . . . } -> Net :: HTTPResponse (119.0) -
サーバ上の path にあるエンティティに対し文字列 data を POST で送ります。
...http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')
# version 1.2
response = http.post('/cgi-bin/search.rb', 'query=subject&target=ruby')
# using block
File.open('save.html', 'w') {|f|
http.post('/cgi-bin/search.rb', 'query=subject&target=ruby') do |str|
f.write str
end
}
//}
@s... -
Proc
# source _ location -> [String , Integer] | nil (119.0) -
ソースコードのファイル名と行番号を配列で返します。
...list[例][ruby]{
# /path/to/target.rb を実行
proc {}.source_location # => ["/path/to/target.rb", 1]
proc {}.source_location # => ["/path/to/target.rb", 2]
(eval "proc {}").source_location # => ["(eval)", 1]
method(:p).to_proc.source_location # => nil
//}
@see Method#sourc...