Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 34 for threading (0.021 sec.)
18.5.7. 同期プリミティブ — Python 3.6.5 ドキュメント 7781
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... フォ: Semaphore BoundedSemaphore asyncio lock API は threading モジュールのクラス ( Lock , Event , Condition , Se ... . Event ¶ class asyncio. Event ( * , loop=None ) ¶ threading.Event と等価で非同期な Event 実装です。 イベントオ ... asyncio. Condition ( lock=None , * , loop=None ) ¶ threading.Condition と等価で非同期な Condition 実装です。 こ ...
https://man.plustar.jp/python/library/asyncio-sync.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 7781
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 扱うスレッドを生成することです; ForkingMixIn および ThreadingMixIn 配合クラス (mix-in classes) を使えば、非同期的 ... ose the socket (unless you used a with statement). ThreadingMixIn から継承してスレッドを利用した接続を行う場合、 ... な通信切断時の処理を明示的に指定する必要があります。 ThreadingMixIn クラスには daemon_threads 属性があり、サーバが ... 明示的に指定します。デフォルトは False で、Pythonは ThreadingMixIn クラスが起動した全てのスレッドが終了するまで実 ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 7781
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ame -------- ---- ---- ---- 8467 11-26-02 22:30 jwzthreading.py -------- ------- 8467 1 file amk@nyman:~/src/py ... p') # Add .zip file to front of path >>> import jwzthreading >>> jwzthreading.__file__ '/tmp/example.zip/jwzthr ... い。(Contributed by Greg Ward.) thread モジュールと threading モジュールの仲間として、プラットフォームがスレッド ... ジュールインターフェイスとして dummy_thread と dummy_threading が追加されました。これはスレッド化を意図する (スレ ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
Python 標準ライブラリ — Python 3.6.5 ドキュメント 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ythonのための外部関数ライブラリ 17. 並行実行 17.1. threading --- スレッドベースの並列処理 17.2. multiprocessing ... ューラ 17.7. queue --- 同期キュークラス 17.8. dummy_threading --- threading の代替モジュール 17.9. _thread --- 低 ...
https://man.plustar.jp/python/library/index.html - [similar]
18.8. signal --- 非同期イベントにハンドラを設定する — Python 3.6.5 ドキュメント 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ナルをスレッド間通信に使うことはできません。代わりに threading モジュールが提供している同期プリミティブを利用でき ... ng system call to fail with InterruptedError . Use threading.get_ident() or the ident attribute of threading.Th ...
https://man.plustar.jp/python/library/signal.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 7557
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... m', 'i', 's']) (Contributed by Raymond Hettinger.) threadingthreading モジュールに新たに同期クラス Barrier が ... トされます。 バリアは例えばこのように使います: from threading import Barrier , Thread def get_votes ( site ): ba ... ールを強制しています。バリアを使ったソリューションが threading.Thread.join() でのそれといかに似ているか気付くと思 ... ontributed by Antoine Pitrou; bpo-7316 .) 同様に、 threading.Semaphore.acquire() にも timeout 引数が追加されまし ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 7477
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nt that is already using the same context manager. threading.RLock is an example of a reentrant context manager ... already been used in a containing with statement. threading.Lock is an example of a reusable, but not reentran ... ager (for a reentrant lock, it is necessary to use threading.RLock instead). Another example of a reusable, but ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 7397
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... レッドからのロギングの例です: import logging import threading import time def worker ( arg ): while not arg [ 's ... %(message)s ' ) info = { 'stop' : False } thread = threading . Thread ( target = worker , args = ( info ,)) thr ... d ) class LogRecordSocketReceiver ( socketserver . ThreadingTCPServer ): """ Simple TCP socket-based logging re ... handler = LogRecordStreamHandler ): socketserver . ThreadingTCPServer . __init__ ( self , ( host , port ), hand ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 7397
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... トの file.__enter__() が self を返しているからです。 threading モジュールのロック・条件変数でも ' with ' ステート ... メントの恩恵にあずかれます: lock = threading . Lock () with lock : # Critical section of code . ... レッドのロック獲得の両方をやってのけています: lock = threading . Lock () with nested ( db_transaction ( db ), loc ... 配列を共有出来ます。 multiprocessing モジュールは、 threading モジュールがスレッドの代わりにプロセスを使ようにな ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 7317
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ボックスを購読 (subscribe) します。 IMAP4. thread ( threading_algorithm , charset , search_criterion [ , ... ] ) ... arch_criterion 引数の前に2つの引数を持っています。 threading_algorithm と charset です。 search コマンドとは違い ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
PREV 1 2 3 4 NEXT