1016万例文収録!

「global lock」に関連した英語例文の一覧と使い方 - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > global lockに関連した英語例文

セーフサーチ:オン

不適切な検索結果を除外する

不適切な検索結果を除外しない

セーフサーチについて

global lockの部分一致の例文一覧と使い方

該当件数 : 22



例文

8.1 Thread State and the Global Interpreter Lock 例文帳に追加

8.1 スレッド状態 (thread state) とグローバルインタプリタロック (global interpreter lock) - Python

Subsections 8.1 Thread State and the Global Interpreter Lock 例文帳に追加

8.1 スレッド状態 (thread state) とグローバルインタプリタロック (global interpreter lock) - Python

Global Interpreter Lock handling in event loops. 例文帳に追加

イベントループ中のグローバルインタープリタの取り扱い - Python

Initialize and acquire the global interpreter lock. 例文帳に追加

グローバルインタプリタロックを初期化し、獲得します。 - Python

例文

Acquire the global interpreter lock. 例文帳に追加

グローバルインタプリタロックを獲得します。 - Python


例文

Release the global interpreter lock. 例文帳に追加

グローバルインタプリタロックを解放します。 - Python

2.10 autoGIL -- Global Interpreter Lock handling in event loops 例文帳に追加

2.10 autoGIL -- イベントループ中のグローバルインタープリタの取り扱い - Python

Most code manipulating the global interpreter lock has the following simple structure:例文帳に追加

グローバルインタプリタロックを操作数ほとんどのコードは、以下のような単純な構造を持ちます: - Python

Reset the current thread state to NULL and release the global interpreter lock.例文帳に追加

現在のスレッド状態をリセットして NULL にし、グローバルインタプリタロックを解放します。 - Python

例文

INFORMATION PROCESSING SYSTEM AND GLOBAL INTERNODE LOCK METHOD TO BE USED THEREFOR例文帳に追加

情報処理システム及びそれに用いるグローバルインターノードロック方法 - 特許庁

例文

(The global interpreter lock must be held before calling this function and is still held when itreturns.)例文帳に追加

(この関数を呼び出す前にはグローバルインタプリタロックを保持しておかねばならず、ロックは関数が戻ったときも保持されています。 - Python

This is done so that dynamically loaded extensions compiled with thread support enabled can be loaded by an interpreter that was compiled with disabled thread support. The global interpreter lock is used to protect the pointer to the current thread state.例文帳に追加

グローバルインタプリタロックは、現在のスレッド状態を指すポインタを保護するために使われます。 - Python

The global interpreter lock is also shared by all threads, regardless of to which interpreter they belong.例文帳に追加

グローバルインタプリタロックもまた、スレッドがどのインタプリタに属しているかに関わらずすべてのスレッドで共有されています。 - Python

Acquire the global interpreter lock and set the current thread state to tstate, which should not be NULL.例文帳に追加

グローバルインタプリタロックを獲得し、現在のスレッド状態をtstate に設定します。 tstate は NULLであってはなりません。 - Python

Install an observer callback in the event loop (CFRunLoop) for the current thread, that will lock and unlock the Global Interpreter Lock(GIL) at appropriate times, allowing other Python threads to run while the event loop is idle.Availability: OSX 10.1 or later.例文帳に追加

現在のスレッドのイベントループ(CFRunLoop)中のオブザーバにコールバックを行ない、適切な時にグローバルインタープリタロック(GIL)を、イベントループが使用されていない間、他の Python スレッドの起動ができるようにロックしたり、ロックの解除をしたりします。 有効性:OSX 10.1以降 - Python

Because when threads are created from C, they don't have the global interpreter lock, nor is there a thread state data structure for them.例文帳に追加

なぜここまで詳しく説明しようとするかおわかりでしょうか? それは、C でスレッドを生成した場合、そのスレッドにはグローバルインタプリタロックがなく、スレッド状態データ構造体もないからです。 - Python

A global snoop control unit 34 performs a lock control for access requests, in which the destination is the local memory unit, among broadcasted access requests.例文帳に追加

グローバルスヌープ制御部34は、ブロードキャストされたアクセス要求のうち、宛先がローカルの記憶装置であるものについてロック制御を行なう。 - 特許庁

The current global economic slowdown is impacting this company too, and orders received for the Hard Lock Nut are decreasing, mainly due to major manufacturers holding back on capital expenditures.例文帳に追加

現下の内外経済の悪化は、同社にも影響を与えており、大手メーカー等による新規設備投資の減少に伴ってナットの注文が減少している。 - 経済産業省

When releasing the lock and saving the thread state, the current thread state pointer must be retrieved before the lock is released (since another thread could immediately acquire the lock and store its own thread state in the global variable).Conversely, when acquiring the lock and restoring the thread state,the lock must be acquired before storing the thread state pointer.Why am I going on with so much detail about this?例文帳に追加

ロックを解放してスレッド状態を退避する際、ロックを解放する前に現在のスレッド状態ポインタを取得しておかなければなりません (他のスレッドがすぐさまロックを獲得して、自らのスレッド状態をグローバル変数に保存してしまうかもしれないからです)。 逆に、ロックを獲得してスレッド状態を復帰する際には、グローバル変数にスレッド状態ポインタを保存する前にロックを獲得しておかなければなりません。 - Python

(Like all other Python/C API functions, the global interpreter lock must be held before calling this function and is still held when it returns; however, unlike most other Python/C API functions, there needn't be a current thread state on entry.)Extension modules are shared between (sub-)interpreters as follows:the first time a particular extension is imported, it is initializednormally, and a (shallow) copy of its module's dictionary issquirreled away.例文帳に追加

(他の Python/C API 関数のように、この関数を呼び出す前にはグローバルインタプリタロック(global interpreter lock) が保持されていなければならず、関数が処理を戻した際にも保持されたままになります; しかし、他の Python/C API 関数とは違い、関数から戻ったときの現在のスレッド状態が関数に入るときと同じとは限らないので注意してください)。 拡張モジュールは以下のような形で (サブ) インタプリタ間で共有されます: ある特定の拡張モジュールを最初に import すると、モジュールを通常通りに初期化し、そのモジュールの辞書の(浅い) コピーをしまい込んでおきます。 - Python

When this call returns, it is guaranteed that the lock has been created and that the calling thread has acquired it.It is not safe to call this function when it is unknownwhich thread (if any) currently has the global interpreter lock.This function is not available when thread support is disabled at compile time.例文帳に追加

どのスレッドが現在グローバルインタプリタロックを (存在する場合) 持っているか分からない時にこの関数を使うのは安全ではありません 。 この関数はコンパイル時にスレッドサポートを無効化すると利用できません。 - Python

例文

To make the state of an optimum liquid density obtainable in the case of connecting a liquid exhausting hose to a cock housing by using a cam lock joint, in a plastic-made liquid pouring cock formed as a butterfly valve cock or a global valve cock for a container for transporting and storing a liquid.例文帳に追加

液体の輸送および貯蔵用容器のための蝶型バルブコックまたは球状バルブコックとして構成されたプラスチック製液体注出用コックにおいて、カムロック継ぎ手を用いてコックハウジングに液体排出用ホースを接続する場合に最適の液密状態が得られるようにする。 - 特許庁

索引トップ用語の索引



  
Copyright Ministry of Economy, Trade and Industry. All Rights Reserved.
  
Copyright © Japan Patent office. All Rights Reserved.
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
Copyright 2001-2004 Python Software Foundation.All rights reserved.
Copyright 2000 BeOpen.com.All rights reserved.
Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved.
Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2024 GRAS Group, Inc.RSS