1341件ヒット
[101-200件を表示]
(0.238秒)
別のキーワード
ライブラリ
- ビルトイン (404)
-
cgi
/ html (24) - csv (36)
-
irb
/ cmd / help (12) - matrix (300)
-
minitest
/ spec (1) -
net
/ http (72) -
net
/ imap (72) - openssl (36)
- rexml (12)
-
rexml
/ sax2listener (12) -
rubygems
/ command _ manager (12) -
rubygems
/ package / tar _ reader (12) -
rubygems
/ package / tar _ reader / entry (12) -
rubygems
/ spec _ fetcher (12) -
rubygems
/ specification (24) - stringio (48)
- strscan (120)
-
webrick
/ httpservlet / abstract (12) -
webrick
/ httpservlet / cgihandler (12) -
webrick
/ httpservlet / erbhandler (12) -
webrick
/ httpservlet / filehandler (12) -
webrick
/ httpservlet / prochandler (12) -
win32
/ registry (12) - zlib (48)
クラス
-
ARGF
. class (36) - Array (60)
- CSV (36)
- Dir (48)
- File (12)
- Float (10)
-
Gem
:: CommandManager (12) -
Gem
:: Package :: TarReader (12) -
Gem
:: Package :: TarReader :: Entry (12) -
Gem
:: SpecFetcher (12) -
Gem
:: Specification (24) - IO (72)
-
IRB
:: ExtendCommand :: Help (12) - MatchData (12)
- Matrix (60)
-
Matrix
:: EigenvalueDecomposition (120) -
Matrix
:: LUPDecomposition (120) - Module (1)
-
Net
:: HTTP (72) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeMultipart (12) -
Net
:: IMAP :: BodyTypeText (12) -
Net
:: IMAP :: ContentDisposition (24) - Numeric (10)
-
OpenSSL
:: SSL :: SSLSocket (12) -
OpenSSL
:: X509 :: Store (12) -
OpenSSL
:: X509 :: StoreContext (12) -
REXML
:: ParseException (12) - Rational (9)
- Regexp (33)
- String (93)
- StringIO (48)
- StringScanner (120)
- Symbol (9)
-
WEBrick
:: HTTPServlet :: AbstractServlet (12) -
WEBrick
:: HTTPServlet :: CGIHandler (12) -
WEBrick
:: HTTPServlet :: ERBHandler (12) -
WEBrick
:: HTTPServlet :: FileHandler (12) -
WEBrick
:: HTTPServlet :: ProcHandler (12) -
Win32
:: Registry (12) -
Zlib
:: GzipReader (24) -
Zlib
:: GzipWriter (24)
モジュール
-
CGI
:: HtmlExtension (24) -
REXML
:: SAX2Listener (12)
キーワード
- charpos (12)
- check (12)
-
check
_ until (12) - d (12)
-
delete
_ at (12) - det (12)
- determinant (12)
- disposition (60)
-
do
_ POST (60) -
dsp
_ type (12) - eigen (12)
- eigensystem (12)
-
eigenvalue
_ matrix (12) - eigenvalues (12)
-
eigenvector
_ matrix (12) -
eigenvector
_ matrix _ inv (12) - eigenvectors (12)
- execute (12)
-
find
_ command _ possibilities (12) - flock (12)
- form (24)
- index (12)
-
infect
_ with _ assertions (1) - insert (12)
- l (12)
-
legacy
_ repos (12) - lup (12)
-
lup
_ decomposition (12) - match (48)
- match? (27)
- param (12)
- pivots (12)
- pointer (12)
- pointer= (12)
- pos= (72)
- position (12)
- positive? (29)
- post (24)
- post2 (24)
-
post
_ connection _ check (12) -
post
_ match (24) - progress (12)
- purpose= (24)
- reopen (36)
-
request
_ post (24) - rewind (12)
- rindex (12)
-
scan
_ until (12) - seek (12)
- singular? (12)
-
skip
_ until (12) - slice (36)
- slice! (24)
- solve (12)
- tell (84)
-
to
_ a (24) -
to
_ ary (24) - transpose (24)
- u (12)
- ungetc (12)
- v (12)
-
v
_ inv (12)
検索結果
先頭5件
-
StringScanner
# pos -> Integer (21226.0) -
現在のスキャンポインタのインデックスを返します。
...デックスを返します。
//emlist[例][ruby]{
require 'strscan'
s = StringScanner.new('test string')
s.pos # => 0
s.scan(/\w+/) # => "test"
s.pos # => 4
s.scan(/\w+/) # => nil
s.pos # => 4
s.scan(/\s+/) # => " "
s.pos # => 5
//}
@see StringScanner#charpos... -
Matrix
:: LUPDecomposition # p -> Matrix (21102.0) -
LUP分解の置換行列部分を返します。
...LUP分解の置換行列部分を返します。... -
Dir
# pos=(pos) (12442.0) -
ディレクトリストリームの読み込み位置を pos に移動させます。 pos は Dir#tell で与えられた値でなければなりま せん。
...込み位置を pos に移動させます。
pos は Dir#tell で与えられた値でなければなりま
せん。
@param pos 変更したい位置を整数で与えます。
@raise IOError 既に自身が close している場合に発生します。
//emlist[例][ruby]{
Dir.open("testdir") d... -
Net
:: HTTP # post2(path , data , header = nil) {|response| . . . . } -> Net :: HTTPResponse (12419.0) -
サーバ上の path にあるエンティティに対し文字列 data を POST で送ります。 返り値は Net::HTTPResponse のインスタンスです。
...上の path にあるエンティティに対し文字列 data を
POST で送ります。
返り値は Net::HTTPResponse のインスタンスです。
header が nil
でなければ、リクエストを送るときにその内容を HTTP ヘッダとして
送ります。 header は { 'Accept' =......TPResponse
オブジェクトをブロックに渡します。
POST する場合にはヘッダに Content-Type: を指定する必要があります。
もし header に指定しなかったならば、 Content-Type として
"application/x-www-form-urlencoded" を用います。
@param path POST......。
@param data POSTするデータを与えます。
@param header リクエストの HTTP ヘッダをハッシュで指定します。
post2 は時代遅れなので使わないでください。
//emlist[例][ruby]{
response = http.request_post('/cgi-bin/nice.rb', 'datadatadata...')
p response... -
Net
:: HTTP # request _ post(path , data , header = nil) {|response| . . . . } -> Net :: HTTPResponse (12419.0) -
サーバ上の path にあるエンティティに対し文字列 data を POST で送ります。 返り値は Net::HTTPResponse のインスタンスです。
...上の path にあるエンティティに対し文字列 data を
POST で送ります。
返り値は Net::HTTPResponse のインスタンスです。
header が nil
でなければ、リクエストを送るときにその内容を HTTP ヘッダとして
送ります。 header は { 'Accept' =......TPResponse
オブジェクトをブロックに渡します。
POST する場合にはヘッダに Content-Type: を指定する必要があります。
もし header に指定しなかったならば、 Content-Type として
"application/x-www-form-urlencoded" を用います。
@param path POST......。
@param data POSTするデータを与えます。
@param header リクエストの HTTP ヘッダをハッシュで指定します。
post2 は時代遅れなので使わないでください。
//emlist[例][ruby]{
response = http.request_post('/cgi-bin/nice.rb', 'datadatadata...')
p response... -
Net
:: IMAP :: BodyTypeBasic # disposition -> Net :: IMAP :: ContentDisposition | nil (12401.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeMessage # disposition -> Net :: IMAP :: ContentDisposition | nil (12401.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeMultipart # disposition -> Net :: IMAP :: ContentDisposition | nil (12401.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
Net
:: IMAP :: BodyTypeText # disposition -> Net :: IMAP :: ContentDisposition | nil (12401.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183...