Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 34 for threading (0.026 sec.)
17.8. dummy_threading --- threading の代替モジュール — Python 3.6.5 ドキュメン... 14539
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 17. 並行実行 » 17.8. dummy_threading --- threading の代替モジュール ¶ ソースコード: Lib ... /dummy_threading.py このモジュールは threading モジュールのインター ... 作られたものです。 おすすめの使い道は: try : import threading except ImportError : import dummy_threading as thr ... O を使っている場合によく起きます。 関連キーワード: threading , モジュール , ドキュメント , import , dummy , 索引 ...
https://man.plustar.jp/python/library/dummy_threading.html - [similar]
17.1. threading --- スレッドベースの並列処理 — Python 3.6.5 ドキュメント 12015
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 17. 並行実行 » 17.1. threading --- スレッドベースの並列処理 ¶ ソースコード: Lib/t ... ントも参照してください。 また、 _thread がないために threading を使えないような状況向けに dummy_threading を提供し ... れます。 このモジュールは以下の関数を定義しています: threading. active_count ( ) ¶ 生存中の Thread オブジェクトの ... この数は enumerate() の返すリストの長さと同じです。 threading. current_thread ( ) ¶ 関数を呼び出している処理のス ...
https://man.plustar.jp/python/library/threading.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 11312
ナビゲーション 索引 モジュール | 次へ | 前へ | 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]
17. 並行実行 — Python 3.6.5 ドキュメント 9091
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... チタスク) に依存します。ここに概観を示します: 17.1. threading --- スレッドベースの並列処理 17.1.1. スレッドローカ ... の一部で使われるサポートモジュールです: 17.8. dummy_threading --- threading の代替モジュール 17.9. _thread --- 低 ... クト , モジュール , 実行 , 並行 , 関数 , プロセス , threading , popen , クラス , 並列 前のトピックへ 16.16. ctyp ... honのための外部関数ライブラリ 次のトピックへ 17.1. threading --- スレッドベースの並列処理 ナビゲーション 索引 モ ...
https://man.plustar.jp/python/library/concurrency.html - [similar]
ライブラリと拡張 FAQ — Python 3.6.5 ドキュメント 8707
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... にはどうしますか? ¶ _thread モジュールではなく、必ず threading モジュールを使ってください。 threading モジュールは ... するのに十分な時間のスリープを加えることです: import threading , time def thread_task ( name , n ): for i in rang ... n ): print ( name , i ) for i in range ( 10 ): T = threading . Thread ( target = thread_task , args = ( str ( i ... n ): print ( name , i ) for i in range ( 10 ): T = threading . Thread ( target = thread_task , args = ( str ( i ...
https://man.plustar.jp/python/faq/library.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 8468
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... lacement for the _thread module. _thread Low-level threading API. a abc Abstract base classes according to PEP ... ctest Test pieces of code within docstrings. dummy_threading Drop-in replacement for the threading module. e em ... sockets. multiprocessing.dummy Dumb wrapper around threading. multiprocessing.managers Share data between proce ... ion test suite. textwrap Text wrapping and filling threading Thread-based parallelism. time Time access and con ...
https://man.plustar.jp/python/py-modindex.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 8404
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... header 11.4. マルチスレッディング ¶ スレッド処理 (threading) とは、順序的な依存関係にない複数のタスクを分割する ... のがあります。 以下のコードでは、高水準のモジュール threading でメインのプログラムを動かしながら背後で別のタスク ... を動作させられるようにする方法を示しています: import threading , zipfile class AsyncZip ( threading . Thread ): d ... ef __init__ ( self , infile , outfile ): threading . Thread . __init__ ( self ) self . infile = infil ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 8324
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 。これはPythonのスレッドサポートの状況に依存します。 threading モジュールを参照してください。 The module implemen ... ds = [] for i in range ( num_worker_threads ): t = threading . Thread ( target = worker ) t . start () threads ... -- イベントスケジューラ 次のトピックへ 17.8. dummy_threading --- threading の代替モジュール ナビゲーション 索引 ...
https://man.plustar.jp/python/library/queue.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 8084
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... _init__ メソッドで獲得したのか、あるいは (たとえば threading モジュールからの同期オブジェクトを) __enter__ メソ ... ィクスを追加する簡単な方法になります。( bpo-13857 ) threading ¶ いずれもかつてインスタンスを返すファクトリ関数で ... あった threading.Condition , threading.Semaphore , threading.Bounde ... dSemaphore , threading.Event , threading.Timer がクラスになったので、サブ ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
17.9. _thread --- 低水準の スレッド API — Python 3.6.5 ドキュメント 7940
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... セマフォ ( binary semaphores ))が提供されています。 threading モジュールは、このモジュール上で、より使い易く高級 ... ut , 終了 , 例外 , 関数 前のトピックへ 17.8. dummy_threading --- threading の代替モジュール 次のトピックへ 17.1 ...
https://man.plustar.jp/python/library/_thread.html - [similar]
PREV 1 2 3 4 NEXT