504件ヒット
[1-100件を表示]
(0.127秒)
ライブラリ
クラス
- CGI (24)
- Mutex (2)
-
Net
:: FTP (12) -
Net
:: HTTP (48) -
Net
:: IMAP (12) -
Net
:: IMAP :: StatusData (24) -
OpenSSL
:: OCSP :: BasicResponse (24) -
OpenSSL
:: OCSP :: Response (24) -
PTY
:: ChildExited (12) -
Process
:: Status (180) - SystemExit (12)
- Thread (24)
-
Thread
:: Mutex (10) -
WEBrick
:: HTTPResponse (84)
モジュール
-
OpenURI
:: Meta (12)
キーワード
- & (12)
- == (12)
- >> (12)
-
add
_ status (12) - attr (12)
- coredump? (12)
- exited? (12)
- exitstatus (12)
- header (12)
- inspect (12)
- mailbox (12)
- out (12)
- pid (12)
- post2 (24)
-
reason
_ phrase (12) -
reason
_ phrase= (12) -
request
_ post (24) -
set
_ error (12) -
set
_ redirect (12) - signaled? (12)
- sleep (12)
- status= (12)
-
status
_ line (12) -
status
_ string (12) - stop? (12)
- stopped? (12)
- stopsig (12)
- success? (12)
- termsig (12)
-
to
_ i (12) -
to
_ s (12) - wakeup (12)
検索結果
先頭5件
- OpenSSL
:: OCSP :: BasicResponse # status -> [[OpenSSL :: OCSP :: CertificateId , Integer , Integer , Time|nil , Time , Time|nil , [OpenSSL :: X509 :: Extension]]] - PTY
:: ChildExited # status -> Process :: Status - OpenSSL
:: OCSP :: Response # status -> Integer - Net
:: IMAP # status(mailbox , attr) -> {String => Integer} - OpenURI
:: Meta # status -> [String]
-
OpenSSL
:: OCSP :: BasicResponse # status -> [[OpenSSL :: OCSP :: CertificateId , Integer , Integer , Time|nil , Time , Time|nil , [OpenSSL :: X509 :: Extension]]] (21368.0) -
証明書の状態の問い合わせの結果を返します。
...* OpenSSL::OCSP::V_CERTSTATUS_GOOD 正常
* OpenSSL::OCSP::V_CERTSTATUS_REVOKED 失効
* OpenSSL::OCSP::V_CERTSTATUS_UNKNOWN 不明
失効理由コードは以下のいずれかを返します。
* OpenSSL::OCSP::REVOKED_STATUS_NOSTATUS
* OpenSSL::OCSP::REVOKED_STATUS_UNSPECIFIED
* OpenS......SP::REVOKED_STATUS_KEYCOMPROMISE
* OpenSSL::OCSP::REVOKED_STATUS_CACOMPROMISE
* OpenSSL::OCSP::REVOKED_STATUS_AFFILIATIONCHANGED
* OpenSSL::OCSP::REVOKED_STATUS_SUPERSEDED
* OpenSSL::OCSP::REVOKED_STATUS_CESSATIONOFOPERATION
* OpenSSL::OCSP::REVOKED_STATUS_CERTIFICATEHOLD
* OpenSSL::OCSP......VOKED_STATUS_REMOVEFROMCRL
失効時刻は証明書が失効した時刻を表します。失効していない場合は nil を
返します。
最終更新時刻は失効情報が更新された時刻を表します。この時刻が現在時刻より
先である場合には、この Response... -
PTY
:: ChildExited # status -> Process :: Status (21319.0) -
子プロセスの終了ステータスをProcess::Statusオブジェクトで返します。
...子プロセスの終了ステータスをProcess::Statusオブジェクトで返します。... -
OpenSSL
:: OCSP :: Response # status -> Integer (21144.0) -
ステータスコードを整数で返します。
...penSSL::OCSP::RESPONSE_STATUS_SUCCESSFUL
* OpenSSL::OCSP::RESPONSE_STATUS_MALFORMEDREQUEST
* OpenSSL::OCSP::RESPONSE_STATUS_INTERNALERROR
* OpenSSL::OCSP::RESPONSE_STATUS_TRYLATER
* OpenSSL::OCSP::RESPONSE_STATUS_SIGREQUIRED
* OpenSSL::OCSP::RESPONSE_STATUS_UNAUTHORIZED
@see OpenSSL::OCSP......::Response#status_string... -
Net
:: IMAP # status(mailbox , attr) -> {String => Integer} (21130.0) -
STATUS コマンドを送り、mailbox のステータスを得ます。
...STATUS コマンドを送り、mailbox のステータスを得ます。
問い合わせたいステータスは attr に文字列の配列で渡します。
返り値は アトリビュート文字列をキーとするハッシュです。
詳しくは 2060 の 6.3.10 を参考にしてくださ......い。
例:
p imap.status("inbox", ["MESSAGES", "RECENT"])
#=> {"RECENT"=>0, "MESSAGES"=>44}
@param mailbox 問い合わせ対象のメールボックス(文字列)
@param attr 問合せたいアトリビュート名(文字列)の配列
@raise Net::IMAP::NoResponseError メールボックス... -
OpenURI
:: Meta # status -> [String] (21114.0) -
対象となるリソースのステータスコードと reason phrase を文字列の配列として返します。
...対象となるリソースのステータスコードと reason phrase を文字列の配列として返します。
//emlist[例][ruby]{
require 'open-uri'
open('http://example.com/') {|f|
p f.status #=> ["200", "OK"]
}
//}......対象となるリソースのステータスコードと reason phrase を文字列の配列として返します。
//emlist[例][ruby]{
require 'open-uri'
URI.open('http://example.com/') {|f|
p f.status #=> ["200", "OK"]
}
//}... -
Net
:: FTP # status -> String (21102.0) -
現在の状態を返します。
...現在の状態を返します。
@raise Net::FTPTempError 応答コードが 4yz のときに発生します。
@raise Net::FTPPermError 応答コードが 5yz のときに発生します。
@raise Net::FTPProtoError 応答コードが RFC 的に正しくない場合に発生します。... -
WEBrick
:: HTTPResponse # status -> Integer (21102.0) -
レスポンスのステータスコードを表す整数を返します。 デフォルトは WEBrick::HTTPStatus::RC_OK です。
...レスポンスのステータスコードを表す整数を返します。
デフォルトは WEBrick::HTTPStatus::RC_OK です。... -
SystemExit
# status -> Integer (18126.0) -
例外オブジェクトに保存された終了ステータスを返します。
...します。
終了ステータスは Kernel.#exit や SystemExit.new などで設定されます。
例:
begin
exit 1
rescue SystemExit => err
p err.status # => 1
end
begin
raise SystemExit.new(1, "dummy exit")
rescue SystemExit => err
p err.status # => 1
end... -
Process
:: Status # exitstatus -> Integer | nil (12101.0) -
exited? が真の場合プロセスが返した終了ステータスの整数を、そ うでない場合は nil を返します。
exited? が真の場合プロセスが返した終了ステータスの整数を、そ
うでない場合は nil を返します。