検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 138 for 優先 (0.004 sec.)
現在のプロセスの優先度を変更する 12633
« proc_get_status proc_open » PHP Manual プログラム実行関数 現在のプロセスの優先度を変更する pro ... (PHP 5, PHP 7, PHP 8) proc_nice — 現在のプロセスの優先度を変更する 説明 proc_nice ( int $priority ): bool ... proc_nice() は、現在のプロセスの優先度を priority で指定された値に変更します。 priority ... が正数の場合、 現在のプロセスの優先度をより低くし、 priority が負数の場合は優先度が上が ... る関数とは関係ありません。 パラメータ priority 新しい優先度の値。この値はプラットフォームによっては異なるかも ...
https://man.plustar.jp/php/function.proc-nice.html - [similar]
Win32 ベース優先度クラス 11257
« Win32 エラーコード Win32 リカバリアクション » PHP Manual 定義済み定数 Win32 ベース優先度クラス ... Win32 ベース優先度クラス 定数 値 説明 WIN32_ABOVE_NORMAL_PRIORITY_CL ... よりも高いけれど WIN32_HIGH_PRIORITY_CLASS よりは低い優先度のプロセス。 WIN32_BELOW_NORMAL_PRIORITY_CLASS 0x0 ... りも高いけれど WIN32_NORMAL_PRIORITY_CLASS よりは低い優先度のプロセス。 WIN32_HIGH_PRIORITY_CLASS 0x00000080 ... 時間制約の厳しいプロセス。 このプロセスのスレッドは、優先度クラスが NORMAL あるいは IDLE であるすべてのプロセ ...
https://man.plustar.jp/php/win32service.constants.basepriorities.html - [similar]
演算子の優先順位 11090
« 演算子 算術演算子 » PHP Manual 演算子 演算子の優先順位 演算子の優先順位 演算子の優先順位は、二 ... ん。 これは乗算演算子("*")は、加算演算子("+")より高い優先順位を有するか らです。必要に応じて強制的に優先順位を ... と評価するためには、 (1 + 5) * 3 とします。 演算子の優先順位が等しい場合は、その結合性によって評価順 (右から ... = $c のグループ分けは $a = ($b = $c) となります。 優先順位が同じで結合しない演算子を並べることはできません ... す。 一方 1 <= 1 == 1 は問題ありません。 == 演算子の優先順位が <= 演算子より低いからです。 演算子の結合は、 ...
https://man.plustar.jp/php/language.operators.precedence.html - [similar]
プロセスの優先度を変更する 10539
« pcntl_rfork pcntl_signal_dispatch » PHP Manual PCNTL 関数 プロセスの優先度を変更する pcntl_set ... PHP 5, PHP 7, PHP 8) pcntl_setpriority — プロセスの優先度を変更する 説明 pcntl_setpriority ( int $priority ... CESS ): bool pcntl_setpriority() は、 process_id の優先度を設定します。 パラメータ priority priority は一般 ... 的には -20 から 20 までの値です。 デフォルトの優先度は 0 で、数字が小さいほど 優先順位が上となります。 ... システムの型やカーネルの バージョンによって優先度の扱いは違うので、詳細についてはシステムの setprio ...
https://man.plustar.jp/php/function.pcntl-setpriority.html - [similar]
プロセスの優先度を取得する 10216
« pcntl_get_last_error pcntl_rfork » PHP Manual PCNTL 関数 プロセスの優先度を取得する pcntl_getp ... PHP 5, PHP 7, PHP 8) pcntl_getpriority — プロセスの優先度を取得する 説明 pcntl_getpriority ( ? int $process ... int | false pcntl_getpriority() は、 process_id の優先度を設定します。システムの型やカーネルの バージョンに ... よって優先度の扱いは違うので、詳細についてはシステムの getprio ... のいずれか。 戻り値 pcntl_getpriority() はプロセスの優先度を返します。 エラー時には false を返します。数字が ...
https://man.plustar.jp/php/function.pcntl-getpriority.html - [similar]
要素の優先順位を比較し、ヒープ内の適切な位置に置く 9116
« SplPriorityQueue SplPriorityQueue::count » PHP Manual SplPriorityQueue 要素の優先順位を比較し、 ... 0, PHP 7, PHP 8) SplPriorityQueue::compare — 要素の優先順位を比較し、ヒープ内の適切な位置に置く 説明 public ... ます。 パラメータ priority1 比較したい最初のノードの優先順位。 priority2 比較したい 2 番目のノードの優先順位 ... 0、 小さい場合は負の整数値となります。 注意 : 同一の優先順位の要素が複数存在する場合は、 キューから取り出す際 ...
https://man.plustar.jp/php/splpriorityqueue.compare.html - [similar]
優先度付きキューが壊れているかを調べる 9008
« SplPriorityQueue::insert SplPriorityQueue::isEmpty » PHP Manual SplPriorityQueue 優先度付きキュ ... 3.0, PHP 7, PHP 8) SplPriorityQueue::isCorrupted — 優先度付きキューが壊れているかを調べる 説明 public SplPr ... ラメータ この関数にはパラメータはありません。 戻り値 優先度付きキューが壊れていたら true を、そうでなければ f ... alse を返します。 関連キーワード: 優先 , キュー , SplPriorityQueue , パラメータ , insert ...
https://man.plustar.jp/php/splpriorityqueue.iscorrupted.html - [similar]
SplPriorityQueue クラス 8230
« SplMinHeap::compare SplPriorityQueue::compare » PHP Manual データ構造 SplPriorityQueue クラス ... PHP 7, PHP 8) はじめに SplPriorityQueue クラスは、優先順位つきキューの主要な機能を提供します。 最大ヒープを ... 使用して実装しています。 注意 : 優先度が等しい要素の順番は 未定義 です。 優先度が等しい要 ... (): bool } 目次 SplPriorityQueue::compare — 要素の優先順位を比較し、ヒープ内の適切な位置に置く SplPriority ... ューに要素を挿入する SplPriorityQueue::isCorrupted — 優先度付きキューが壊れているかを調べる SplPriorityQueue: ...
https://man.plustar.jp/php/class.splpriorityqueue.html - [similar]
SSH サーバーに接続する 7800
« ssh2_auth_pubkey_file ssh2_disconnect » PHP Manual SSH2 関数 SSH サーバーに接続する ssh2_conne ... サポートする値* kex 通知する鍵交換メソッドのリスト。優先する順にカンマ区切りにする。 diffie-hellman-group1-s ... nge-sha1 hostkey 通知するホスト鍵メソッドのリスト。優先する順にカンマ区切りにする。 ssh-rsa および ssh-dss ... ライアントからサーバーに送信されるメッセージのために優先する暗号化、 圧縮、メッセージ認証コード (MAC) メソッ ... ーバーからクライアントに送信されるメッセージのために優先する暗号化、 圧縮、メッセージ認証コード (MAC) メソッ ...
https://man.plustar.jp/php/function.ssh2-connect.html - [similar]
演算子 7800
« 式 演算子の優先順位 » PHP Manual 言語リファレンス 演算子 演算子 目次 演算子の優先順位 算術演算 ... よいでしょう)。 PHP の演算子の完全な一覧は、 演算子の優先順位 の欄にあります。この節では演算子の優先順位と結合 ... 数の演算子を組み合わせたときにどう評価されるのかは、優先順位と結合性で決まります。 関連キーワード: 加算 , 分 ...
https://man.plustar.jp/php/language.operators.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT