「recursion」を含む例文一覧(62)

<前へ 1 2
  • int $recurse Sets the value of the RD (recursion desired) bit in the header.
    int $recurse ヘッダの RD (recursion desired) ビットの値を設定する。 - PEAR
  • Set the recursion desired bit in queries.
    再帰要求 (recursion desired) ビットを問い合わせに設定する。 - JM
  • of or relating to a recursion
    再帰に関する、またはそれの - 日本語WordNet
  • ??? - used only for recursion
    ??? - 再帰処理のためだけに使用します。 - PEAR
  • He accelerated a recursion trend toward the style of Chojiro.
    いっそう長次郎回帰を進める。 - Wikipedia日英京都関連文書対訳コーパス
  • entry id - used only for recursion
    エントリ ID。 再帰処理のためだけに使用します。 - PEAR
  • Release a lock, decrementing the recursion level.
    再帰レベルをデクリメントしてロックを解放します。 - Python
  • Source commands maybe nested to a maximum recursion level of ten.
    source コマンドはネストでき、最大の再帰レベルは 10 である。 - JM
  • Note that the resolution process here involves recursion.
    解決過程に再帰が含まれる点に注意すること。 - JM
  • If the representation of objectexposes a recursive entry, the recursive reference will be represented as "Recursion on typename with id=number".
    もしobjectの文字列表現が再帰的な要素を持っているなら、再帰的な参照は"Recursion on typename with id=number"で表示されます。 - Python
  • The maxlevels parameter is used to limit the depth of the recursion; it defaults to10.
    maxlevelsは、下降する最大の深さ(デフォルトは10)を指定します。 - Python
  • can be ignored - internal parameter to track recursion level
    無視することができます。 再帰レベルを追うための内部パラメータです。 - PEAR
  • If the RD bit is set to 0, the server will not perform recursion on the request.
    もしこの値が 0 なら、サーバは再帰問い合わせを行わない。 - PEAR
  • Return the current value of the recursion limit, the maximum depth of the Python interpreter stack.
    最大再帰数は、Pythonインタープリタスタックの最大の深さです。 - Python
  • A user may need to set the limit higher when she has a program that requires deep recursion and a platform that supports a higher limit.
    limitの最大値はプラットフォームによって異なります。 - Python
  • It's very ironic. and i'll show you a little natural recursion here.
    皮肉なことです ここで 自然の再帰的操作をお見せします - 映画・海外ドラマ英語字幕翻訳辞書
  • So it's just like georg cantor said, the recursion continues forever.
    ゲオルク・カントールの言った様に 再帰のプロセスは永遠に続くのです - 映画・海外ドラマ英語字幕翻訳辞書
  • This limit prevents infinite recursion from causing an overflow of the C stack and crashingPython.
    この制限はPythonプログラムが無限に再帰し、Cスタックがオーバーフローしてクラッシュすることを防止するために設けられています。 - Python
  • One example of a method that wrongly uses the bubble up capability of exceptions to return a result from a deep recursion: Example 3-8.
    以下は例外の間違った使用例で、再起処理の結果を例外の「たらいまわし」機能で返そうとしています。 - PEAR
  • The special keywords "CDATA" and "RECURSE" may be used to enable debugging information for CDATA and recursion events.
    特別なキーワードとして"CDATA" および "RECURSE" を使用すると、それぞれCDATA および再起処理イベントのデバッグ出力を有効にできます。 - PEAR
  • This limit prevents infinite recursion from causing an overflow of the C stack and crashing Python. The highest possible limit is platform-dependent.
    この制限はPythonプログラムが無限に再帰し、Cスタックがオーバーフローしてクラッシュすることを防止するために設けられています。 - Python
  • Internally, it uses the concepts of ``owning thread'' and ``recursion level'' inaddition to the locked/unlocked state used by primitive locks.
    再入可能ロックの内部では、プリミティブロックの使うロック/アンロック状態に加え、 ``所有スレッド (owning thread)''と ``再帰レベル (recursion level)'' という概念を用いています。 ロック状態では何らかのスレッドがロックを所有しており、アンロック状態ではいかなるスレッドもロックを所有していません。 - Python
  • For the 30x response codes, recursion is bounded by the value of the maxtries attribute, which defaults to 10.
    レスポンスコード 30x に対しては、最大でmaxtries 属性に指定された数だけ再帰呼び出しを行うようになっています。 この値はデフォルトで 10 です。 - Python
  • In order to protect the kernel against stack overflow, and also to protect against denial of service, there are limits on the maximum recursion depth, and on the maximum number of symbolic links followed.
    カーネルをスタックオーバーフローやサービス拒否 (denial of service) から守るため、再帰の最大の深さとシンボリックリンクを辿る最大回数に制限がある。 - JM
  • Once the lock is unlocked(not owned by any thread), then grab ownership, set the recursion level to one, and return.
    その後、ロックの状態がアンロックになる (いかなるスレッドもロックを所有しない状態になる) と、ロックの所有権を獲得し、再帰レベルを 1 にセットして処理を戻します。 - Python
  • Acquire a lock, blocking or non-blocking.When invoked without arguments: if this thread already owns the lock, increment the recursion level by one, and return immediately.
    ブロックあり、またはブロックなしでロックを獲得します。 引数なしで呼び出した場合: スレッドが既にロックを所有している場合、再帰レベルをインクリメントして即座に処理を戻します。 - Python
  • Instead, an internal interface of the RLock class is used, which reallyunlocks it even when it has been recursively acquired several times.Another internal interface is then used to restore the recursion level when the lock is reacquired.
    その代わり、 ロックが再帰的に複数回獲得されていても確実にアンロックを行えるRLock クラスの内部インタフェースを使います。 その後ロックを再獲得する時に、もう一つの内部インタフェースを使ってロックの再帰レベルを復帰します。 - Python
<前へ 1 2

例文データの著作権について