432件ヒット
[1-100件を表示]
(0.026秒)
種類
- インスタンスメソッド (312)
- 特異メソッド (72)
- クラス (24)
- 定数 (12)
- 文書 (12)
ライブラリ
- ビルトイン (48)
-
net
/ imap (48) - open-uri (24)
- openssl (144)
- socket (96)
-
webrick
/ config (12) -
webrick
/ httpauth / basicauth (36) -
webrick
/ httpproxy (12)
クラス
- BasicObject (36)
- BasicSocket (96)
-
Net
:: IMAP :: BodyTypeBasic (48) -
OpenSSL
:: OCSP :: BasicResponse (84) -
OpenSSL
:: OCSP :: Request (12) -
OpenSSL
:: OCSP :: Response (24) - Time (12)
-
WEBrick
:: HTTPAuth :: BasicAuth (36) -
WEBrick
:: HTTPProxyServer (12)
モジュール
- OpenURI (24)
-
WEBrick
:: Config (12)
キーワード
- BasicAuth (12)
- BasicResponse (12)
- Response (12)
-
add
_ nonce (12) -
add
_ status (12) - authenticate (12)
- challenge (12)
-
check
_ nonce (12) -
connect
_ address (12) -
content
_ id (12) -
copy
_ nonce (12) - create (12)
- description (12)
- disposition (12)
- extension (12)
- getsockopt (12)
- new (36)
-
open
_ uri (24) -
recv
_ nonblock (12) - recvmsg (12)
-
recvmsg
_ nonblock (12) -
ruby 1
. 8 . 3 feature (12) - sendmsg (12)
-
sendmsg
_ nonblock (12) - setsockopt (12)
- sign (12)
-
singleton
_ method _ added (12) -
singleton
_ method _ removed (12) -
singleton
_ method _ undefined (12) - status (12)
- strftime (12)
- verify (12)
検索結果
先頭5件
-
OpenSSL
:: OCSP :: Response # basic -> OpenSSL :: OCSP :: BasicResponse | nil (21301.0) -
Response オブジェクトが保持している BasicResponse オブジェクトを 返します。
...Response オブジェクトが保持している BasicResponse オブジェクトを
返します。
@see OpenSSL::OCSP::BasicResponse... -
OpenSSL
:: OCSP :: BasicResponse # add _ nonce(val=nil) -> self (12100.0) -
BasicResponse に nonce を追加します。
...BasicResponse に nonce を追加します。
引数を省略すると、ランダムな nonce を生成し利用します。
通常はこのメソッドを使わず OpenSSL::OCSP::BasicResponse#copy_nonce を
用います。
@param val 追加する nonce の値(文字列)... -
OpenSSL
:: OCSP :: BasicResponse # copy _ nonce(request) -> Integer (12100.0) -
request から nonce の値をコピーします。
...request から nonce の値をコピーします。
@param request コピー元のnonceを保持している Request (OpenSSL::OCSP::Request オブジェクト)... -
OpenSSL
:: OCSP :: BasicResponse (12022.0) -
OCSP の Basic OCSP Response を表すクラスです。
...OCSP の Basic OCSP Response を表すクラスです。
レスポンスの実質的な内容(証明書が失効しているかどうか)
はこのクラスのオブジェクトが保持します。
OCSP レスポンダからのレスポンス自体は
OpenSSL::OCSP::Response のオブジェクト......が表現していて、
このオブジェクトの OpenSSL::OCSP::Response#basic によって
BasicResponse のオブジェクトを得ます。... -
Net
:: IMAP :: BodyTypeBasic # disposition -> Net :: IMAP :: ContentDisposition | nil (9300.0) -
Content-Dispotition の値を返します。
...Content-Dispotition の値を返します。
Net::IMAP::ContentDisposition オブジェクトを返します。
@see 1806, 2183... -
BasicSocket
# recvmsg _ nonblock(maxmesglen=nil , flags=0 , maxcontrollen=nil , opts={}) -> [String , Addrinfo , Integer , *Socket :: AncillaryData] (9200.0) -
recvmsg(2) を用いてノンブロッキング方式でメッセージを受け取ります。
...け取ります。
ブロッキングの有無以外は BasicSocket#recvmsg と同じです。
詳しくはそちらを参照してください。
@param maxmesglen 受け取るメッセージの最大長
@param flags フラグ
@param maxcontrollen 受け取る補助データの最大長
@param op... -
BasicSocket
# sendmsg _ nonblock(mesg , flags=0 , dest _ sockaddr=nil , *controls) -> Integer (9200.0) -
sendmsg(2) を用いてノンブロッキング方式でメッセージを送ります。
... BasicSocket#sendmsg を見てください。
@return 送ったバイト数
@param mesg メッセージ文字列
@param flags フラグ(Socket::MSG_* という定数の bitwise OR を取ったもの)
@param dest_sockaddr 通信先のアドレス
@param controls 補助データの配列
@see BasicSo... -
BasicObject
# singleton _ method _ added(name) -> object (9100.0) -
特異メソッドが追加された時にインタプリタから呼び出されます。
...emlist[例][ruby]{
class Foo
def singleton_method_added(name)
puts "singleton method \"#{name}\" was added"
end
end
obj = Foo.new
def obj.foo
end
#=> singleton method "foo" was added
//}
@see Module#method_added,BasicObject#singleton_method_removed,BasicObject#singleton_method_undefined... -
BasicObject
# singleton _ method _ removed(name) -> object (9100.0) -
特異メソッドが Module#remove_method に より削除された時にインタプリタから呼び出されます。
...singleton_method_removed(name)
puts "singleton method \"#{name}\" was removed"
end
end
obj = Foo.new
def obj.foo
end
class << obj
remove_method :foo
end
#=> singleton method "foo" was removed
//}
@see Module#method_removed,BasicObject#singleton_method_added,BasicObject#singleton_method_...