Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 46 for thread (0.043 sec.)
18.5.2. イベントループ — Python 3.6.5 ドキュメント 7704
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... The default policy defines context as the current thread, and manages an event loop per thread that interac ... ts with asyncio . If the current thread doesn't already have an event loop associated with ... oop() method creates one when called from the main thread, but raises RuntimeError otherwise. 18.5.2.6. グロ ...
https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 7704
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... たなメールボックスを購読 (subscribe) します。 IMAP4. thread ( threading_algorithm , charset , search_criterion ... [ , ... ] ) ¶ thread コマンドは search にスレッドの概念を加えた変形版で ... なり、空白で区切られており、親子関係を示しています。 thread コマンドは search_criterion 引数の前に2つの引数を持 ... っています。 threading_algorithm と charset です。 search コマンドとは ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 7643
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ン 3.2 で追加. ソースコード: Lib/concurrent/futures/thread.py および Lib/concurrent/futures/process.py concur ... の高水準のインタフェースを提供します。 非同期実行は ThreadPoolExecutor を用いてスレッドで実行することも、 Pro ... 実行を表現する Future オブジェクトを返します。 with ThreadPoolExecutor ( max_workers = 1 ) as executor : futu ... erformance compared to the default size of 1. With ThreadPoolExecutor , chunksize has no effect. バージョン ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 7643
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... ironment where the top-level script is run. _dummy_thread Drop-in replacement for the _thread module. _threa ... d Low-level threading API. a abc Abstract base classes according to P ... nt.futures Execute computations concurrently using threads or processes. configparser Configuration file par ... ctest Test pieces of code within docstrings. dummy_threading Drop-in replacement for the threading module. e ...
https://man.plustar.jp/python/py-modindex.html - [similar]
DTrace と SystemTap で CPython を測定する — Python 3.6.5 ドキュメント 7582
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » DTra ... 2); lineno = $arg3; printf("%s => %s in %s:%d\\n", thread_indent(1), funcname, filename, lineno); } probe pr ... 2); lineno = $arg3; printf("%s <= %s in %s:%d\\n", thread_indent(-1), funcname, filename, lineno); } この例は ... hon.function.entry { printf("%s => %s in %s:%d\n", thread_indent(1), funcname, filename, lineno); } probe py ... on.function.return { printf("%s <= %s in %s:%d\n", thread_indent(-1), funcname, filename, lineno); } The fol ...
https://man.plustar.jp/python/howto/instrumentation.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 7582
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rocessing/ 17.2.1. はじめに ¶ multiprocessing は、 threading と似た API で複数のプロセスの生成をサポートする ... 両方で動作します。 multiprocessing モジュールでは、 threading モジュールには似たものが存在しない API も導入さ ... rt() メソッドを呼び出します。この Process クラスは threading.Thread クラスと同様の API を持っています。まずは ... ん。 17.2.1.4. プロセス間の同期 ¶ multiprocessing は threading モジュールと等価な同期プリミティブを備えています ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
Python 標準ライブラリ — Python 3.6.5 ドキュメント 7155
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ythonのための外部関数ライブラリ 17. 並行実行 17.1. threading --- スレッドベースの並列処理 17.2. multiprocess ... ューラ 17.7. queue --- 同期キュークラス 17.8. dummy_threading --- threading の代替モジュール 17.9. _thread -- ... - 低水準の スレッド API 17.10. _dummy_thread --- _thread の代替モジュール 18. プロセス間通信とネ ...
https://man.plustar.jp/python/library/index.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 7155
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rom subprocess import Popen , PIPE import sys from threading import Thread from urllib.parse import urlparse ... dout = PIPE , stderr = PIPE , cwd = binpath ) t1 = Thread ( target = self . reader , args = ( p . stdout , ' ... stdout' )) t1 . start () t2 = Thread ( target = self . reader , args = ( p . stderr , ' ...
https://man.plustar.jp/python/library/venv.html - [similar]
8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 7155
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... クト、code オブジェクトです。 バージョン 3.2 で変更: thread.lock, threading.Lock, code オブジェクトのサポートが ... 注釈 If you create a finalizer object in a daemonic thread just as the program exits then there is the possib ... oes not get called at exit. However, in a daemonic thread atexit.register() , try: ... finally: ... and with ...
https://man.plustar.jp/python/library/weakref.html - [similar]
18. プロセス間通信とネットワーク — Python 3.6.5 ドキュメント 7094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 作成 , タスク , 関数 前のトピックへ 17.10. _dummy_thread --- _thread の代替モジュール 次のトピックへ 18.1. ...
https://man.plustar.jp/python/library/ipc.html - [similar]
PREV 1 2 3 4 5 NEXT