Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 49 for done (0.004 sec.)
- 18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 15500
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...ture -- suspends the coroutine until the future is done, then returns the future's result, or raises an ex...which returns when the hello_world() coroutine is done loop . run_until_complete ( hello_world ()) loop ....which returns when the display_date() coroutine is done loop . run_until_complete ( display_date ( loop ))...とき例外を送出します。 Callbacks registered with add_done_callback() are always called via the event loop's... - https://man.plustar.jp/python/library/asyncio-task.html - [similar]
- 18.5.8. キュー — Python 3.6.5 ドキュメント 10685
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...3.4.4 で変更: 新たなメソッド join() ならびに task_done() 。 empty ( ) ¶ キューが空ならば True を、そうでな...るときは常に加算され、コンシューマースレッドが task_done() を呼び出してアイテムの回収とその全処理の完了が示...します。 qsize ( ) ¶ キュー内のアイテム数です。 task_done ( ) ¶ キューに入っていたタスクが完了したことを示し...れます。タスクの取得に get() を使用し、その後の task_done() の呼び出しでタスクの処理が完了したことをキューに... - https://man.plustar.jp/python/library/asyncio-queue.html - [similar]
- 17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 10685
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...するために 2つのメソッドが提供されます。 Queue. task_done ( ) ¶ 過去にキューに入れられたタスクが完了した事を...ます。タスクの取り出しに使われた各 get() の後に task_done() を呼び出すと、取り出したタスクに対する処理が完了...された (キューに put() された全てのitemに対して task_done() が呼び出されたことを意味します) 時に復帰します。...カウントが増やされます。コンシューマスレッドが task_done() を呼び出して、itemを受け取ってそれに対する処理が... - https://man.plustar.jp/python/library/queue.html - [similar]
- 18.5.9. asyncio での開発 — Python 3.6.5 ドキュメント 9629
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...い。 if not fut . cancelled (): fut . set_result ( 'done' ) AbstractEventLoop.call_soon() で、Future の set...retrieved future : < Task finished coro =< coro () done , defined at asyncio / coroutines . py : 139 > exc...retrieved future : < Task finished coro =< bug () done , defined at test . py : 3 > exception = Exception...ed but it is pending! task: <Task pending create() done at test.py:5 wait_for=<Future pending cb=[Task._wa... - https://man.plustar.jp/python/library/asyncio-dev.html - [similar]
- 17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 9327
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...Python 2.5 の queue.Queue クラスで導入された task_done() と join() メソッドがないことが違う点です。 もし...ーから削除される各タスクのために JoinableQueue.task_done() を呼び出さなければ なりません 。さもないと、いつ...イムアウトを伝えるために送出されます。 Queue は task_done() や join() を除く queue.Queue のすべてのメソッドを...¶ JoinableQueue は Queue のサブクラスであり、 task_done() や join() メソッドが追加されているキューです。 t... - https://man.plustar.jp/python/library/multiprocessing.html - [similar]
- Logging クックブック — Python 3.6.5 ドキュメント 8587
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg
...xiliary_module . some_function () logger . info ( 'done with auxiliary_module.some_function()' ) そして補助...ing something' ) a = 1 + 1 self . logger . info ( 'done doing something' ) def some_function (): module_lo...69 - spam_application.auxiliary.Auxiliary - INFO - done doing something 2005-03-23 23:47:11,670 - spam_app...005-03-23 23:47:11,673 - spam_application - INFO - done with auxiliary_module.some_function() 複数のスレッ... - https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
- 17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 8587
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...しが実行中でキャンセルできない場合 True を返します。 done ( ) ¶ 呼び出しが正常にキャンセルされたか終了した場...送出することなく完了した場合、 None を返します。 add_done_callback ( fn ) ¶ 呼び出し可能な fn オブジェクトを...2 要素含む名前付きのタプルを返します。1 つめの集合 done には、待機の完了前に完了したフューチャ (完了または...キャンセル済み) が含まれます。2 つめの集合 not_done には、未完了のフューチャが含まれます。 timeout で結... - https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
- 35.8. pty --- 擬似端末ユーティリティ — Python 3.6.5 ドキュメント 8436
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
.... spawn ( shell , read ) script . write (( 'Script done on %s \n ' % time . asctime ()) . encode ()) print...( 'Script done, file is' , filename ) 関連キーワード: pty , プロセ... - https://man.plustar.jp/python/library/pty.html - [similar]
- DTrace と SystemTap で CPython を測定する — Python 3.6.5 ドキュメント 8285
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » DTra
...tion-return 29568 python18035 python3.6 collect gc-done 29569 python18035 python3.6 collect gc-start 29570...mTap probe descriptors) Provider: python Name: gc__done Location: 0x00000000004374e1, Base: 0x000000000063...) と同じように arg0 は走査する対象の世代です。 gc__done ( long collected ) ¶ Python インタプリタによる循環... - https://man.plustar.jp/python/howto/instrumentation.html - [similar]
- 11.7. glob --- Unix 形式のパス名のパターン展開 — Python 3.6.5 ドキュメント 8285
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...returned in arbitrary order. No tilde expansion is done, but * , ? , and character ranges expressed with [...] will be correctly matched. This is done by using the os.scandir() and fnmatch.fnmatch() fu... - https://man.plustar.jp/python/library/glob.html - [similar]
