-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathasyncio-future.po
395 lines (340 loc) · 16.3 KB
/
asyncio-future.po
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2021, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# tomo, 2020
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-01 16:06+0000\n"
"PO-Revision-Date: 2020-05-30 11:56+0000\n"
"Last-Translator: tomo, 2020\n"
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
"ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: ../../library/asyncio-future.rst:8
msgid "Futures"
msgstr "Future"
#: ../../library/asyncio-future.rst:10
msgid ""
"**Source code:** :source:`Lib/asyncio/futures.py`, :source:`Lib/asyncio/"
"base_futures.py`"
msgstr ""
"**ソースコード:** :source:`Lib/asyncio/futures.py`, :source:`Lib/asyncio/"
"base_futures.py`"
#: ../../library/asyncio-future.rst:15
msgid ""
"*Future* objects are used to bridge **low-level callback-based code** with "
"high-level async/await code."
msgstr ""
"*Future* オブジェクトは **低水準のコールバックベースのコード** と高水準の "
"async/await コードとの間を橋渡しします。"
#: ../../library/asyncio-future.rst:20
msgid "Future Functions"
msgstr "Future の関数"
#: ../../library/asyncio-future.rst:24
msgid "Return ``True`` if *obj* is either of:"
msgstr "オブジェクト *obj* が下記のいずれかであれば ``True`` を返します:"
#: ../../library/asyncio-future.rst:26
msgid "an instance of :class:`asyncio.Future`,"
msgstr ":class:`asyncio.Future` クラスのインスタンス"
#: ../../library/asyncio-future.rst:27
msgid "an instance of :class:`asyncio.Task`,"
msgstr ":class:`asyncio.Task` クラスのインスタンス"
#: ../../library/asyncio-future.rst:28
msgid "a Future-like object with a ``_asyncio_future_blocking`` attribute."
msgstr "``_asyncio_future_blocking`` 属性を持った Future 的なオブジェクト"
#: ../../library/asyncio-future.rst:36
msgid "Return:"
msgstr "下記のいずれかを返します:"
#: ../../library/asyncio-future.rst:38
msgid ""
"*obj* argument as is, if *obj* is a :class:`Future`, a :class:`Task`, or a "
"Future-like object (:func:`isfuture` is used for the test.)"
msgstr ""
"*obj* が :class:`Future` オブジェクト、 :class:`Task` オブジェクト、または "
"Future 的なオブジェクト (:func:`isfuture` 関数を使って検査します) である場合"
"には *obj* そのもの"
#: ../../library/asyncio-future.rst:42
msgid ""
"a :class:`Task` object wrapping *obj*, if *obj* is a coroutine (:func:"
"`iscoroutine` is used for the test); in this case the coroutine will be "
"scheduled by ``ensure_future()``."
msgstr ""
"引数 *obj* がコルーチンである (:func:`iscoroutine` 関数を使って検査します) 場"
"合には *obj* をラップした :class:`Task` オブジェクト; この場合コルーチンは "
"``ensure_future()`` によりスケジュールされます。"
#: ../../library/asyncio-future.rst:47
msgid ""
"a :class:`Task` object that would await on *obj*, if *obj* is an awaitable (:"
"func:`inspect.isawaitable` is used for the test.)"
msgstr ""
"引数 *obj* が awaitable である (:func:`inspect.isawaitable` 関数を使って検査"
"します) 場合には *obj* を await する :class:`Task` オブジェクト"
#: ../../library/asyncio-future.rst:50
msgid "If *obj* is neither of the above a :exc:`TypeError` is raised."
msgstr ""
"引数 *obj* が上記のいずれにもあてはまらない場合は :exc:`TypeError` 例外を送出"
"します。"
#: ../../library/asyncio-future.rst:54
msgid ""
"See also the :func:`create_task` function which is the preferred way for "
"creating new Tasks."
msgstr ""
"Task を生成するより好ましい方法である :func:`create_task` 関数も参照してくだ"
"さい。"
#: ../../library/asyncio-future.rst:57
msgid "The function accepts any :term:`awaitable` object."
msgstr ""
"この関数はどんな :term:`awaitable` なオブジェクトでも受け入れるようになりまし"
"た。"
#: ../../library/asyncio-future.rst:63
msgid ""
"Wrap a :class:`concurrent.futures.Future` object in a :class:`asyncio."
"Future` object."
msgstr ""
":class:`concurrent.futures.Future` オブジェクトを :class:`asyncio.Future` オ"
"ブジェクトでラップします。"
#: ../../library/asyncio-future.rst:68
msgid "Future Object"
msgstr "Future オブジェクト"
#: ../../library/asyncio-future.rst:72
msgid ""
"A Future represents an eventual result of an asynchronous operation. Not "
"thread-safe."
msgstr ""
"Future は非同期処理の最終結果を表すクラスです。スレッドセーフではありません。"
#: ../../library/asyncio-future.rst:75
msgid ""
"Future is an :term:`awaitable` object. Coroutines can await on Future "
"objects until they either have a result or an exception set, or until they "
"are cancelled."
msgstr ""
"Future は :term:`awaitable` オブジェクトです。コルーチンは Future オブジェク"
"トが結果を返すか、例外をセットするか、もしくはキャンセルされるまで待機する "
"(await) ことができます。"
#: ../../library/asyncio-future.rst:79
msgid ""
"Typically Futures are used to enable low-level callback-based code (e.g. in "
"protocols implemented using asyncio :ref:`transports <asyncio-transports-"
"protocols>`) to interoperate with high-level async/await code."
msgstr ""
"典型的には、 Future は低水準のコールバックベースのコード (たとえば asyncio "
"の :ref:`transports <asyncio-transports-protocols>` を使って実装されたプロト"
"コル) が高水準の async/await と相互運用することを可能にするために利用されま"
"す。"
#: ../../library/asyncio-future.rst:84
msgid ""
"The rule of thumb is to never expose Future objects in user-facing APIs, and "
"the recommended way to create a Future object is to call :meth:`loop."
"create_future`. This way alternative event loop implementations can inject "
"their own optimized implementations of a Future object."
msgstr ""
"経験則は Future オブジェクトをユーザー向けの API であらわに利用しないことで"
"す。推奨される Future オブジェクトの生成方法は :meth:`loop.create_future` を"
"呼び出すことです。これによりイベントループの代替実装は、自身に最適化された "
"Future オブジェクトの実装を合わせて提供することができます。"
#: ../../library/asyncio-future.rst:90
msgid "Added support for the :mod:`contextvars` module."
msgstr ":mod:`contextvars` モジュールのサポートを追加。"
#: ../../library/asyncio-future.rst:95
msgid "Return the result of the Future."
msgstr "Future の結果を返します。"
#: ../../library/asyncio-future.rst:97
msgid ""
"If the Future is *done* and has a result set by the :meth:`set_result` "
"method, the result value is returned."
msgstr ""
"Future が *完了* していて、 :meth:`set_result` メソッドにより設定された結果を"
"持っている場合は結果の値を返します。"
#: ../../library/asyncio-future.rst:100
msgid ""
"If the Future is *done* and has an exception set by the :meth:"
"`set_exception` method, this method raises the exception."
msgstr ""
"Future が *完了* していて、 :meth:`set_exception` メソッドにより設定された例"
"外を持っている場合はその例外を送出します。"
#: ../../library/asyncio-future.rst:103 ../../library/asyncio-future.rst:188
msgid ""
"If the Future has been *cancelled*, this method raises a :exc:"
"`CancelledError` exception."
msgstr ""
"Future が *キャンセルされた* 場合、このメソッドは :exc:`CancelledError` 例外"
"を送出します。"
#: ../../library/asyncio-future.rst:106
msgid ""
"If the Future's result isn't yet available, this method raises a :exc:"
"`InvalidStateError` exception."
msgstr ""
"Future の結果が未設定の場合、このメソッドは :exc:`InvalidStateError` 例外を送"
"出します。"
#: ../../library/asyncio-future.rst:111
msgid "Mark the Future as *done* and set its result."
msgstr "Future を *完了* とマークし、結果を設定します。"
#: ../../library/asyncio-future.rst:113 ../../library/asyncio-future.rst:120
msgid ""
"Raises a :exc:`InvalidStateError` error if the Future is already *done*."
msgstr ""
"Future がすでに *完了* している場合 :exc:`InvalidStateError` 例外を送出しま"
"す。"
#: ../../library/asyncio-future.rst:118
msgid "Mark the Future as *done* and set an exception."
msgstr "Future を *完了* とマークし、例外を設定します。"
#: ../../library/asyncio-future.rst:125
msgid "Return ``True`` if the Future is *done*."
msgstr "Future が *完了* しているなら ``True`` を返します。"
#: ../../library/asyncio-future.rst:127
msgid ""
"A Future is *done* if it was *cancelled* or if it has a result or an "
"exception set with :meth:`set_result` or :meth:`set_exception` calls."
msgstr ""
"Future は *キャンセルされた* か、または :meth:`set_result` メソッドや :meth:"
"`set_exception` メソッドの呼び出しにより結果や例外が設定された場合に *完了* "
"とみなされます。"
#: ../../library/asyncio-future.rst:133
msgid "Return ``True`` if the Future was *cancelled*."
msgstr "Future が *キャンセルされた* 場合に ``True`` を返します。"
#: ../../library/asyncio-future.rst:135
msgid ""
"The method is usually used to check if a Future is not *cancelled* before "
"setting a result or an exception for it::"
msgstr ""
"通常の場合、このメソッドは Future に処理結果や例外を設定する前に Future が *"
"キャンセルされていない* ことを確認するために使用されます::"
#: ../../library/asyncio-future.rst:143
msgid "Add a callback to be run when the Future is *done*."
msgstr "Future が *完了* したときに実行されるコールバックを追加します。"
#: ../../library/asyncio-future.rst:145
msgid "The *callback* is called with the Future object as its only argument."
msgstr "*callback* は Future オブジェクトだけを引数にとって呼び出されます。"
#: ../../library/asyncio-future.rst:148
msgid ""
"If the Future is already *done* when this method is called, the callback is "
"scheduled with :meth:`loop.call_soon`."
msgstr ""
"このメソッドが呼び出される時点ですでに Future が *完了* している場合、コール"
"バックは :meth:`loop.call_soon` メソッドによりスケジュールされます。"
#: ../../library/asyncio-future.rst:151
msgid ""
"An optional keyword-only *context* argument allows specifying a custom :"
"class:`contextvars.Context` for the *callback* to run in. The current "
"context is used when no *context* is provided."
msgstr ""
"オプションのキーワード引数 *context* を使って、コールバック*callback* を実行"
"する際のコンテキスト :class:`contextvars.Context` を設定することができます。"
"コンテキスト *context* が指定されない場合は現在のコンテキストが使われます。"
#: ../../library/asyncio-future.rst:155
msgid ""
":func:`functools.partial` can be used to pass parameters to the callback, e."
"g.::"
msgstr ""
"コールバックにパラメータを渡すには、次の例のように :func:`functools.partial` "
"を使うことができます::"
#: ../../library/asyncio-future.rst:162
msgid ""
"The *context* keyword-only parameter was added. See :pep:`567` for more "
"details."
msgstr ""
"キーワード引数 *context* が追加されました。詳細は :pep:`567` を参照してくださ"
"い。"
#: ../../library/asyncio-future.rst:168
msgid "Remove *callback* from the callbacks list."
msgstr "コールバックリストから *callback* を削除します。"
#: ../../library/asyncio-future.rst:170
msgid ""
"Returns the number of callbacks removed, which is typically 1, unless a "
"callback was added more than once."
msgstr ""
"削除されたコールバックの数を返します。コールバックが複数回追加されていない限"
"り、通常は1が返ります。"
#: ../../library/asyncio-future.rst:175
msgid "Cancel the Future and schedule callbacks."
msgstr "Future をキャンセルし、コールバックをスケジュールします。"
#: ../../library/asyncio-future.rst:177
msgid ""
"If the Future is already *done* or *cancelled*, return ``False``. Otherwise, "
"change the Future's state to *cancelled*, schedule the callbacks, and return "
"``True``."
msgstr ""
"Future がすでに *完了* または *キャンセル* された場合、 ``False`` を返しま"
"す。そうでない場合 Future の状態を *キャンセル* に変更した上でコールバックを"
"スケジュールし、 ``True`` を返します。"
#: ../../library/asyncio-future.rst:183
msgid "Return the exception that was set on this Future."
msgstr "この Future オブジェクトに設定された例外を返します。"
#: ../../library/asyncio-future.rst:185
msgid ""
"The exception (or ``None`` if no exception was set) is returned only if the "
"Future is *done*."
msgstr ""
"例外 (または例外が設定されていないときは ``None``) は Future が *完了* してい"
"る場合のみ返されます。"
#: ../../library/asyncio-future.rst:191
msgid ""
"If the Future isn't *done* yet, this method raises an :exc:"
"`InvalidStateError` exception."
msgstr ""
"Future が *未完了* の場合、このメソッドは :exc:`InvalidStateError` 例外を送出"
"します。"
#: ../../library/asyncio-future.rst:196
msgid "Return the event loop the Future object is bound to."
msgstr "Future オブジェクトが束縛されているイベントループを返します。"
#: ../../library/asyncio-future.rst:203
msgid ""
"This example creates a Future object, creates and schedules an asynchronous "
"Task to set result for the Future, and waits until the Future has a result::"
msgstr ""
"この例は Future オブジェクトを生成し、Future に結果を設定するための非同期タス"
"クを生成してスケジュールし、そして Future に結果が設定されるまで待機します::"
#: ../../library/asyncio-future.rst:238
msgid ""
"The Future object was designed to mimic :class:`concurrent.futures.Future`. "
"Key differences include:"
msgstr ""
"Future オブジェクトは :class:`concurrent.futures.Future` を模倣してデザインさ"
"れました。両者の重要な違いは以下の通りです:"
#: ../../library/asyncio-future.rst:241
msgid ""
"unlike asyncio Futures, :class:`concurrent.futures.Future` instances cannot "
"be awaited."
msgstr ""
"asyncio の Futures と異なり、 :class:`concurrent.futures.Future` インスタンス"
"は待ち受けできません。"
#: ../../library/asyncio-future.rst:244
msgid ""
":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` do not "
"accept the *timeout* argument."
msgstr ""
":meth:`asyncio.Future.result` と :meth:`asyncio.Future.exception` は "
"*timeout* 引数を取りません。"
#: ../../library/asyncio-future.rst:247
msgid ""
":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` raise an :"
"exc:`InvalidStateError` exception when the Future is not *done*."
msgstr ""
":meth:`asyncio.Future.result` と :meth:`asyncio.Future.exception` は Future "
"が *未完了* の場合に :exc:`InvalidStateError` 例外を送出します。"
#: ../../library/asyncio-future.rst:251
msgid ""
"Callbacks registered with :meth:`asyncio.Future.add_done_callback` are not "
"called immediately. They are scheduled with :meth:`loop.call_soon` instead."
msgstr ""
":meth:`asyncio.Future.add_done_callback` メソッドによって登録されたコールバッ"
"クは、即座に呼び出されません。代わりにコールバックは :meth:`loop.call_soon` "
"によりスケジュールされます。"
#: ../../library/asyncio-future.rst:255
msgid ""
"asyncio Future is not compatible with the :func:`concurrent.futures.wait` "
"and :func:`concurrent.futures.as_completed` functions."
msgstr ""
"asyncio の Future は :func:`concurrent.futures.wait` および :func:"
"`concurrent.futures.as_completed` との互換性がありません。"