るりまサーチ

最速Rubyリファレンスマニュアル検索!
2647件ヒット [101-200件を表示] (0.022秒)
トップページ > クエリ:status[x]

別のキーワード

  1. _builtin status
  2. openssl status
  3. cgi http_status
  4. getoptlong status_yet
  5. getoptlong status_started

ライブラリ

モジュール

キーワード

検索結果

<< < 1 2 3 4 ... > >>

WEBrick::GenericServer#status -> Symbol (18101.0)

現在のサーバのステータスを Symbol オブジェクトで返します。 値は :Running(活動中), :Shutdown(終了処理中), :Stop(完全に停止) のいずれかです。

現在のサーバのステータスを Symbol オブジェクトで返します。
値は :Running(活動中), :Shutdown(終了処理中), :Stop(完全に停止) のいずれかです。

WEBrick::HTTPResponse#status -> Integer (18101.0)

レスポンスのステータスコードを表す整数を返します。 デフォルトは WEBrick::HTTPStatus::RC_OK です。

...レスポンスのステータスコードを表す整数を返します。
デフォルトは WEBrick::HTTPStatus::RC_OK です。...

OpenSSL::OCSP::REVOKED_STATUS_NOSTATUS -> Integer (12217.0)

OpenSSL::OCSP::BasicResponse#status の失効理由コードで、 BasicResponse にコードが含まれていないことを意味します。

...OpenSSL::OCSP::BasicResponse#status の失効理由コードで、
BasicResponse にコードが含まれていないことを意味します。...

Process::Status#exitstatus -> Integer | nil (9100.0)

exited? が真の場合プロセスが返した終了ステータスの整数を、そ うでない場合は nil を返します。

exited? が真の場合プロセスが返した終了ステータスの整数を、そ
うでない場合は nil を返します。

WEBrick::HTTPStatus::Status (9000.0)

HTTP のステータスコードの親クラスです。

HTTP のステータスコードの親クラスです。

絞り込み条件を変える

static const char * thread_status_name(enum thread_status status) (6300.0)

Process.last_status -> Process::Status | nil (6226.0)

カレントスレッドで最後に終了した子プロセスのステータスを返します。

...

Process.wait Process.spawn("ruby", "-e", "exit 13")
Process.last_status # => #<Process::Status: pid 4825 exit 13>

カレントスレッドで子プロセスを実行したことがない場合は nil を返します。

Process.last_status # => nil

@see Process::Status
@see $?...

OpenSSL::OCSP::BasicResponse#add_status(cid, status, reason, revtime, thisupd, nextupd, exts) -> self (6214.0)

証明書の状態の問い合わせの結果をオブジェクトに追加します。

...をオブジェクトに追加します。

詳しくは OpenSSL::OCSP::BasicResponse#status を見てください。

@param cid 問い合わせの(OpenSSL::OCSP::CertificateId オブジェクト)
@param status ステータスコード(整数)
@param reason 失効理由コード(整数)
@param revt...

WEBrick::HTTPResponse#status=(status) (6214.0)

レスポンスのステータスコードを整数で指定します。 reason_phrase も適切なものに設定されます。

...数で指定します。
reason_phrase も適切なものに設定されます。

@param status ステータスコードを整数で指定します。

require 'webrick'
res = WEBrick::HTTPResponse.new( { :HTTPVersion => "1.1" } )
res.status = 404

p res.reason_phrase #=> "Not Found"...
<< < 1 2 3 4 ... > >>