1284件ヒット
[101-200件を表示]
(0.047秒)
ライブラリ
- ビルトイン (273)
-
net
/ http (24) -
net
/ imap (180) - open-uri (24)
- openssl (132)
- readline (36)
- socket (240)
-
webrick
/ cgi (12) -
webrick
/ config (12) -
webrick
/ httpauth (24) -
webrick
/ httpauth / basicauth (84) -
webrick
/ httpproxy (12) -
webrick
/ log (180) - win32ole (12)
クラス
- Array (21)
- BasicObject (168)
- BasicSocket (240)
- Encoding (48)
-
Net
:: IMAP :: BodyTypeBasic (156) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeMultipart (12) -
OpenSSL
:: OCSP :: BasicResponse (84) -
OpenSSL
:: OCSP :: Request (12) -
OpenSSL
:: OCSP :: Response (24) - String (12)
- Time (12)
-
WEBrick
:: BasicLog (180) -
WEBrick
:: CGI (12) -
WEBrick
:: HTTPAuth :: BasicAuth (84) -
WEBrick
:: HTTPProxyServer (12) -
WIN32OLE
_ PARAM (12)
モジュール
-
Net
:: HTTPHeader (24) - OpenURI (24)
- Readline (36)
-
WEBrick
:: Config (12) -
WEBrick
:: HTTPAuth (24)
キーワード
- ! (12)
- != (12)
- << (12)
- == (12)
- BasicAuth (12)
- OCSP (12)
-
SJIS
_ DOCOMO (12) -
SJIS
_ DoCoMo (12) -
UTF8
_ DOCOMO (12) -
UTF8
_ DoCoMo (12) -
_ _ id _ _ (12) -
_ _ send _ _ (24) -
add
_ nonce (12) -
add
_ status (12) - authenticate (12)
-
basic
_ auth (24) -
basic
_ quote _ characters (12) -
basic
_ word _ break _ characters (12) - body (12)
- challenge (12)
-
check
_ nonce (12) - close (12)
-
completer
_ word _ break _ characters (12) -
connect
_ address (12) -
content
_ id (12) -
copy
_ nonce (12) - create (12)
- debug (12)
- debug? (12)
- description (12)
- disposition (12)
-
do
_ not _ reverse _ lookup (24) - encoding (12)
- equal? (12)
- error (12)
- error? (12)
- extension (12)
- fatal (12)
- fatal? (12)
-
for
_ fd (12) - getpeereid (12)
- getpeername (12)
- getsockname (12)
- getsockopt (12)
- info (12)
- info? (12)
-
instance
_ eval (24) -
instance
_ exec (12) - language (12)
- level (12)
-
local
_ address (12) - log (12)
- logger (24)
- main (12)
-
make
_ passwd (12) - md5 (12)
-
media
_ subtype (12) -
media
_ type (12) -
method
_ missing (12) - multipart? (12)
-
net
/ http (12) - new (48)
-
open
_ uri (24) - pack (21)
- pack テンプレート文字列 (12)
- param (12)
- parts (12)
-
proxy
_ basic _ auth (24) - realm (12)
- recv (12)
-
recv
_ nonblock (12) - recvmsg (12)
-
recvmsg
_ nonblock (12) -
remote
_ address (12) - retval? (12)
-
ruby 1
. 8 . 3 feature (12) - send (12)
- sendmsg (12)
-
sendmsg
_ nonblock (12) - setsockopt (24)
- shutdown (12)
- sign (12)
-
singleton
_ method _ added (12) -
singleton
_ method _ removed (12) -
singleton
_ method _ undefined (12) - size (12)
- status (12)
- strftime (12)
- subtype (12)
- unpack (12)
- userdb (12)
- verify (12)
- warn (12)
- warn? (12)
- xmlrpc (3)
検索結果
先頭5件
- WEBrick
:: BasicLog . new(log _ file = nil , level = WEBrick :: BasicLog :: INFO) -> WEBrick :: BasicLog - WEBrick
:: HTTPAuth :: BasicAuth . new(config , default = Config :: BasicAuth) -> WEBrick :: HTTPAuth :: BasicAuth - BasicSocket
. for _ fd(fd) -> BasicSocket - OpenSSL
:: OCSP :: BasicResponse . new -> OpenSSL :: OCSP :: BasicResponse - Net
:: IMAP :: BodyTypeBasic # encoding -> String
-
WEBrick
:: BasicLog . new(log _ file = nil , level = WEBrick :: BasicLog :: INFO) -> WEBrick :: BasicLog (3300.0) -
WEBrick::BasicLog オブジェクトを生成して返します。
...WEBrick::BasicLog オブジェクトを生成して返します。
@param log_file ログを記録する先のオブジェクトを指定します。メソッド << が定義されている必要があります。
通常は String オブジェクトか IO オブジェクトです......録します。
ログレベルは重要度の順に FATAL, ERROR, WARN, INFO, DEBUG の5段階があります。
FATAL の重要度が一番高く DEBUG が一番低いです。
require 'webrick'
logger = WEBrick::BasicLog.new('testfile', WEBrick::BasicLog::FATAL)... -
WEBrick
:: HTTPAuth :: BasicAuth . new(config , default = Config :: BasicAuth) -> WEBrick :: HTTPAuth :: BasicAuth (3300.0) -
BasicAuth オブジェクトを生成します。config は設定を保存したハッシュです。
...
BasicAuth オブジェクトを生成します。config は設定を保存したハッシュです。
config で有効なハッシュキーは以下の通りです。
:Realm =>
:UserDB =>
:Logger =>
:AutoReloadUserDB =>
realm を表す文字列 :Realm には与......ジェクトを与えます。また、:AutoReloadUserDB には
WEBrick::HTTPAuth::Htpasswd#get_passwd の
reload_db に渡す引数を与えます。
@param config 設定を保持しているハッシュを指定します。
@param default デフォルトは WEBrick::Config::BasicAuth です。... -
BasicSocket
. for _ fd(fd) -> BasicSocket (3200.0) -
ファイルディスクリプタ fd に対する新しいソケットを生成します。
...ます。
返り値のクラスはどのクラスの for_fd を呼びだしたかによって決まります。
require 'socket'
BasicSocket.for_fd(fd) # BasicSocket のインスタンスを返す
TCPSocket.for_fd(fd) # TCPSocket のインスタンスを返す
@param fd ファイルデ... -
OpenSSL
:: OCSP :: BasicResponse . new -> OpenSSL :: OCSP :: BasicResponse (3200.0) -
空の BasicResponse オブジェクトを生成します。
...空の BasicResponse オブジェクトを生成します。
@see OpenSSL::OCSP::Response.create... -
Net
:: IMAP :: BodyTypeBasic # encoding -> String (3132.0) -
Content-Transfer-Encoding の値を文字列で返します。
...Content-Transfer-Encoding の値を文字列で返します。
@see 2045... -
OpenSSL
:: OCSP :: BasicResponse # status -> [[OpenSSL :: OCSP :: CertificateId , Integer , Integer , Time|nil , Time , Time|nil , [OpenSSL :: X509 :: Extension]]] (3130.0) -
証明書の状態の問い合わせの結果を返します。
...の配列が渡されます。
結果をどのように解釈すべきか、より詳しくは 2560 や X.509 を見てください。
例:
res.basic.status
# => [
# [#<OpenSSL::OCSP::CertificateId:0x00000000e3c290>, # certificate ID
# 0,......# reason code
# nil, # revoked time
# 2011-06-29 05:24:43 UTC, # update time
# 2011-07-06 05:24:43 UTC, # next update time
# []]... -
BasicObject
# _ _ send _ _ (name , *args) -> object (3124.0) -
オブジェクトのメソッド name を args を引数にして呼び出し、メソッドの結果を返します。
...#delete) - delete " + args.join(',')
end
def send(name, *args)
"(Mail#send) - #{name} #{args.join(',')}"
end
end
mail = Mail.new
mail.send :delete, "gentle", "readers" # => "(Mail#send) - delete gentle,readers"
mail.__send__ :delete, "gentle", "readers" # => "(Mail#delete) - delete... -
BasicObject
# _ _ send _ _ (name , *args) { . . . . } -> object (3124.0) -
オブジェクトのメソッド name を args を引数にして呼び出し、メソッドの結果を返します。
...#delete) - delete " + args.join(',')
end
def send(name, *args)
"(Mail#send) - #{name} #{args.join(',')}"
end
end
mail = Mail.new
mail.send :delete, "gentle", "readers" # => "(Mail#send) - delete gentle,readers"
mail.__send__ :delete, "gentle", "readers" # => "(Mail#delete) - delete... -
Net
:: IMAP :: BodyTypeBasic # content _ id -> String | nil (3116.0) -
Content-ID の値を文字列で返します。
...Content-ID の値を文字列で返します。
@see 2045...