るりまサーチ

最速Rubyリファレンスマニュアル検索!
63件ヒット [1-63件を表示] (0.028秒)
トップページ > クエリ:Process[x] > 種類:クラス[x]

別のキーワード

  1. process fork
  2. process abort
  3. process setrlimit
  4. tracer display_process_id
  5. tracer display_process_id?

検索結果

Net::HTTPProcessing (6001.0)

HTTP レスポンス 102 (Processing) を表現するクラスです。

...HTTP レスポンス 102 (Processing) を表現するクラスです。

詳しくは 2518 を見てください。...

Net::HTTPUnprocessableEntity (6001.0)

HTTP レスポンス 422 (Unprocessable Entity) を表現するクラスです。

...HTTP レスポンス 422 (Unprocessable Entity) を表現するクラスです。

詳しくは 4918 を見てください。...

Shell::CommandProcessor (6001.0)

Shell::ProcessController (6001.0)

Process::Status (3065.0)

プロセスの終了ステータスを表すクラスです。 メソッド Process.#wait2 などの返り値として使われます。

...プロセスの終了ステータスを表すクラスです。
メソッド Process.#wait2 などの返り値として使われます。

=== 使用例

wait を使用した例

fork { exit }
Process
.wait
case
when $?.signaled?
p "child #{$?.pid} was killed by signal #{$?.termsig}"...
...ステータスをサポートしてなければ常にfalse
p "child #{$?.pid} dumped core."
end
when $?.stopped?
# 実際には Process.wait を使用しているので、ここに来ることはない
p "child #{$?.pid} was stopped by signal #{$?.stopsig}"
when $?.exited?...
...了に対して1つの SIGCHLD しか届かない
# 場合があるのでループさせる必要があります

while Process.waitpid(-1, Process::WNOHANG|Process::WUNTRACED)
case
when $?.signaled?
puts " child #{$?.pid} was killed by signal #{$?.termsig}"
if...

絞り込み条件を変える

Process::Tms (3023.0)

Process.#times の返り値を表現する構造体です。

...Process.#times の返り値を表現する構造体です。

この機能がサポートされているプラットフォーム上でプロセスの
処理時間に関する情報を保持します。プラットフォームによっては
使えない値があります。

@see Process.#times...

CSV (7.0)

このクラスは CSV ファイルやデータに対する完全なインターフェイスを提供します。

...or example, <tt>:col_sep</tt>, <tt>:row_sep</tt>, and
<tt>:quote_char</tt> must be transcoded to match your data. Hopefully this
makes the entire process feel transparent, since CSV's defaults should just
magically work for you data. However, you can set these values manually in
the target Encodin...