- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 225 for hawaii (0.08 sec)
-
docs/em/docs/tutorial/background-tasks.md
## โ ๐ ๐ข โ ๐ข ๐ ๐ฅ ๐. โซ๏ธ ๐ฉ ๐ข ๐ ๐ช ๐จ ๐ข. โซ๏ธ ๐ช `async def` โ๏ธ ๐ `def` ๐ข, **FastAPI** ๐ ๐ญ โ ๐ต โซ๏ธ โ. ๐ ๐ผ, ๐ ๐ข ๐ โ ๐ (โ ๐จ ๐ง). & โ ๐ ๏ธ ๐ซ โ๏ธ `async` & `await`, ๐ฅ ๐ฌ ๐ข โฎ๏ธ ๐ `def`: {* ../../docs_src/background_tasks/tutorial001.py hl[6:9] *} ## ๐ฎ ๐ฅ ๐ ๐ ๐ *โก ๐ ๏ธ ๐ข*, ๐ถโโ๏ธ ๐ ๐ ๐ข *๐ฅ ๐* ๐ โฎ๏ธ ๐ฉโ๐ฌ `.add_task()`:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/QueuesTest.java
Producer producer = new Producer(q, 1); // producing one, will ask for two Future<?> producerThread = threadPool.submit(producer); producer.beganProducing.await(); // make sure we time out Stopwatch timer = Stopwatch.createStarted(); int drained = drain(q, new ArrayList<>(), 2, 10, MILLISECONDS, interruptibly); assertThat(drained).isAtMost(1);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 12.2K bytes - Viewed (0) -
docs/em/docs/index.md
def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` <details markdown="1"> <summary>โ๏ธ โ๏ธ <code>async def</code>...</summary> ๐ฅ ๐ ๐ โ๏ธ `async` / `await`, โ๏ธ `async def`: ```Python hl_lines="9 14" from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") async def read_root(): return {"Hello": "World"}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 17.1K bytes - Viewed (0) -
docs/he/docs/index.md
return {"item_id": item_id, "q": q} ``` <details markdown="1"> <summary>ืื ืืฉืชืืฉื ื - <code>async def</code>...</summary> ืื ืืงืื ืฉืืื ืืฉืชืืฉ ื - `async` / `await`, ืืฉืชืืฉื ื - `async def`: ```Python hl_lines="9 14" from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") async def read_root():
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.2K bytes - Viewed (0) -
docs/en/docs/tutorial/testing.md
{* ../../docs_src/app_testing/tutorial001.py hl[2,12,15:18] *} /// tip Notice that the testing functions are normal `def`, not `async def`. And the calls to the client are also normal calls, not using `await`. This allows you to use `pytest` directly without complications. /// /// note | Technical Details You could also use `from starlette.testclient import TestClient`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.6K bytes - Viewed (0) -
docs/uk/docs/index.md
return {"item_id": item_id, "q": q} ``` <details markdown="1"> <summary>ะะฑะพ ะฒะธะบะพัะธััะฐะนัะต <code>async def</code>...</summary> ะฏะบัะพ ะฒะฐั ะบะพะด ะฒะธะบะพัะธััะพะฒัั `async` / `await`, ัะบะพัะธััะฐะนัะตัั `async def`: ```Python hl_lines="9 14" from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") async def read_root():
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 24.2K bytes - Viewed (0) -
docs/de/docs/tutorial/background-tasks.md
In diesem Fall schreibt die Taskfunktion in eine Datei (den Versand einer E-Mail simulierend). Und da der Schreibvorgang nicht `async` und `await` verwendet, definieren wir die Funktion mit normalem `def`: {* ../../docs_src/background_tasks/tutorial001.py hl[6:9] *} ## Den Hintergrundtask hinzufรผgen
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessClientTest.java
// Test implementation } public boolean waitForNotification(long timeoutMs) throws InterruptedException { return notificationLatch.await(timeoutMs, TimeUnit.MILLISECONDS); } public WitnessNotification getLastNotification() { return lastNotification; } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 9.8K bytes - Viewed (0) -
docs/en/docs/advanced/dataclasses.md
As always, in FastAPI you can combine `def` and `async def` as needed. If you need a refresher about when to use which, check out the section _"In a hurry?"_ in the docs about [`async` and `await`](../async.md#in-a-hurry){.internal-link target=_blank}. 9. This *path operation function* is not returning dataclasses (although it could), but a list of dictionaries with internal data.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.1K bytes - Viewed (0) -
docs/de/docs/advanced/dataclasses.md
Wenn Sie eine Auffrischung darรผber benรถtigen, wann welche Anwendung sinnvoll ist, lesen Sie den Abschnitt โIn Eile?โ in der Dokumentation zu [`async` und `await`](../async.md#in-eile){.internal-link target=_blank}. 9. Diese *Pfadoperation-Funktion* gibt keine Datenklassen zurรผck (obwohl dies mรถglich wรคre), sondern eine Liste von Dictionarys mit internen Daten.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 10:12:35 UTC 2024 - 4.5K bytes - Viewed (0)