Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 33 for LOCK (0.050 sec.)
What's New in Python 2.5 — Python 3.6.5 ドキュメント 7668
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... では、あなたは今ではこう書くことが出来ます: try : block - 1 ... except Exception1 : handler - 1 ... except ... Exception2 : handler - 2 ... else : else - block finally : final - block block-1 内のコードが実行さ ... 実行されます、以下同文。例外が起こらなければ、 else-block が実行されます。 以前に何が起こったのかに拠らず、コ ... ドブロック完了時やどれかの例外が処理されれば final-block が実行されます。例外ハンドラ内や else-block でエラ ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
ライブラリと拡張 FAQ — Python 3.6.5 ドキュメント 7524
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... ? グローバルインタプリタロック (Global Interpreter Lock) を取り除くことはできないのですか? 入力と出力 ファ ... sleep ( 0.1 ) while True : try : arg = q . get ( block = False ) except queue . Empty : print ( 'Worker' ... がスレッドセーフになるのですか? ¶ global interpreter lock (GIL) が内部で使われ、Python VM で一度に一つだけの ... ! グローバルインタプリタロック (Global Interpreter Lock) を取り除くことはできないのですか? ¶ マルチスレッド ...
https://man.plustar.jp/python/faq/library.html - [similar]
Python/C API リファレンスマニュアル — Python 3.6.5 ドキュメント 7444
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... とグローバルインタプリタロック (global interpreter lock) サブインタプリタサポート 非同期通知 プロファイルと ...
https://man.plustar.jp/python/c-api/index.html - [similar]
8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 7444
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e オブジェクトです。 バージョン 3.2 で変更: thread.lock, threading.Lock, code オブジェクトのサポートが追加 ...
https://man.plustar.jp/python/library/weakref.html - [similar]
17. 並行実行 — Python 3.6.5 ドキュメント 7379
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ドローカルデータ 17.1.2. Thread オブジェクト 17.1.3. Lock オブジェクト 17.1.4. RLock オブジェクト 17.1.5. Co ...
https://man.plustar.jp/python/library/concurrency.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 7379
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... already using the same context manager. threading.RLock is an example of a reentrant context manager, as a ... een used in a containing with statement. threading.Lock is an example of a reusable, but not reentrant, co ... ntext manager (for a reentrant lock, it is necessary to use threading.RLock instead). ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
34.2. msvcrt --- MS VC++実行時システムの有用なルーチン群 — Python 3.6.5 ドキュ... 7379
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... うになりました。 34.2.1. ファイル操作関連 ¶ msvcrt. locking ( fd , mode , nbytes ) ¶ C 言語による実行時シス ... は個別にロック解除しなければなりません。 msvcrt. LK_LOCK ¶ msvcrt. LK_RLCK ¶ 指定されたバイト列にロックをか ...
https://man.plustar.jp/python/library/msvcrt.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 7379
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 例を挙げておきましょう。以下はファイルオブジェクトに lock() メソッドを追加します: class LockableFile ( file ... ): def lock ( self , operation , length = 0 , start = 0 , when ... ce = 0 ): import fcntl return fcntl . lockf ( self . fileno (), operation , length , start , ... ァイルオブジェクトのメソッドを全てエミュレートしつつ lock() を追加しているクラスが含まれていますが、このクラ ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
18.5. asyncio --- 非同期 I/O、イベントループ、コルーチンおよびタスク — Python 3... 7315
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 5.7. 同期プリミティブ 18.5.7.1. ロック 18.5.7.1.1. Lock 18.5.7.1.2. Event 18.5.7.1.3. Condition 18.5.7.2. ...
https://man.plustar.jp/python/library/asyncio.html - [similar]
18. プロセス間通信とネットワーク — Python 3.6.5 ドキュメント 7315
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 5.7. 同期プリミティブ 18.5.7.1. ロック 18.5.7.1.1. Lock 18.5.7.1.2. Event 18.5.7.1.3. Condition 18.5.7.2. ...
https://man.plustar.jp/python/library/ipc.html - [similar]
PREV 1 2 3 4 NEXT