- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 428 for Resync (0.23 sec)
-
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
} } else { log.warn("Async notify failed: {}", message.getErrorMessage()); } return null; } catch (Exception e) { throw new IOException("Witness async notify RPC failed", e); } } /** * Generates a registration ID from context handle and share name.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0) -
docs/em/docs/tutorial/testing.md
/// tip ๐ ๐ ๐ฌ ๐ข ๐ `def`, ๐ซ `async def`. & ๐ค ๐ฉโ๐ป ๐ ๐ค, ๐ซ โ๏ธ `await`. ๐ โ ๐ โ๏ธ `pytest` ๐ ๐ต ๐คข. /// /// note | ๐ก โน ๐ ๐ช โ๏ธ `from starlette.testclient import TestClient`. **FastAPI** ๐ ๐ `starlette.testclient` `fastapi.testclient` ๐ช ๐, ๐ฉโ๐ป. โ๏ธ โซ๏ธ ๐ ๐ โช๏ธโก๏ธ ๐. /// /// tip
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/dependencies/index.md
์ด๋ ํนํ **๋ง์ *๊ฒฝ๋ก ์๋***์์ **๊ฐ์ ์์กด์ฑ**์ ๊ณ์ํด์ ์ฌ์ฉํ๋ **๊ฑฐ๋ ์ฝ๋ ๊ธฐ๋ฐ**์์์ ์ฌ์ฉํ๋ฉด ์ ์ฉํ ๊ฒ์ ๋๋ค. ## `async`ํ๊ฒ, ํน์ `async`ํ์ง ์๊ฒ ์์กด์ฑ์ด (*๊ฒฝ๋ก ์๋ ํจ์*์์ ์ฒ๋ผ ๋๊ฐ์ด) **FastAPI**์ ์ํด ํธ์ถ๋ ์ ์์ผ๋ฉฐ, ํจ์๋ฅผ ์ ์ํ ๋ ๋์ผํ ๊ท์น์ด ์ ์ฉ๋ฉ๋๋ค. `async def`์ ์ฌ์ฉํ๊ฑฐ๋ ํน์ ์ผ๋ฐ์ ์ธ `def`๋ฅผ ์ฌ์ฉํ ์ ์์ต๋๋ค. ๊ทธ๋ฆฌ๊ณ ์ผ๋ฐ์ ์ธ `def` *๊ฒฝ๋ก ์๋ ํจ์* ์์ `async def`๋ก ์์กด์ฑ์ ์ ์ธํ ์ ์์ผ๋ฉฐ, `async def` *๊ฒฝ๋ก ์๋ ํจ์* ์์ `def`๋ก ์์กด์ฑ์ ์ ์ธํ๋ ๋ฑ์ ๋ฐฉ๋ฒ์ด ์์ต๋๋ค. ์๋ฌด ๋ฌธ์ ์์ต๋๋ค. **FastAPI**๋ ๋ฌด์์ ํ ์ง ์๊ณ ์์ต๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 11.1K bytes - Viewed (0) -
docs/ja/docs/index.md
``` <details markdown="1"> <summary>ใพใใฏ<code>async def</code>ใไฝฟใใพใ...</summary> `async` / `await`ใไฝฟ็จใใใจใใฏใ `async def`ใไฝฟใใพใ: ```Python hl_lines="7 12" from fastapi import FastAPI app = FastAPI() @app.get("/") async def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") async def read_item(item_id: int, q: str = None):
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.3K bytes - Viewed (0) -
docs/fr/docs/tutorial/background-tasks.md
Elle peut รชtre une fonction asynchrone (`async def`) ou une fonction normale (`def`), **FastAPI** saura la gรฉrer correctement. Dans cet exemple, la fonction de tรขche รฉcrira dans un fichier (afin de simuler un envoi d'email). L'opรฉration d'รฉcriture n'utilisant ni `async` ni `await`, on dรฉfinit la fonction avec un `def` normal.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Nov 10 17:23:38 UTC 2024 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockRequestTest.java
when(request.allowChain(any())).thenReturn(true); // When boolean async = request.isResponseAsync(); int size = request.size(); Integer timeout = request.getOverrideTimeout(); boolean canChain = request.allowChain(nextRequest); // Then assertTrue(async); assertEquals(100, size); assertEquals(3000, timeout); assertTrue(canChain);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
docs/ru/docs/index.md
<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"} @app.get("/items/{item_id}")
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 25.8K bytes - Viewed (0) -
docs/pt/docs/tutorial/request_files.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.7K bytes - Viewed (0) -
docs/ko/docs/tutorial/testing.md
**FastAPI** ๋ ๊ฐ๋ฐ์์ ํธ์๋ฅผ ์ํด `starlette.testclient` ๋ฅผ `fastapi.testclient` ๋ก๋ ์ ๊ณตํ ๋ฟ์ ๋๋ค. ์ด๋ ๋จ์ง `Starlette` ์์ ์ง์ ๊ฐ์ ธ์ค๋์ง์ ์ฐจ์ด์ผ ๋ฟ์ ๋๋ค. /// /// tip | ํ FastAPI ์ ํ๋ฆฌ์ผ์ด์ ์ ์์ฒญ์ ๋ณด๋ด๋ ๊ฒ ์ธ์๋ ํ ์คํธ์์ `async` ํจ์๋ฅผ ํธ์ถํ๊ณ ์ถ๋ค๋ฉด (์: ๋น๋๊ธฐ ๋ฐ์ดํฐ๋ฒ ์ด์ค ํจ์), ์ฌํ ํํ ๋ฆฌ์ผ์ [Async Tests](../advanced/async-tests.md){.internal-link target=_blank} ๋ฅผ ์ฐธ์กฐํ์ธ์. /// ## ํ ์คํธ ๋ถ๋ฆฌํ๊ธฐ ์ค์ ์ ํ๋ฆฌ์ผ์ด์ ์์๋ ํ ์คํธ๋ฅผ ๋ณ๋์ ํ์ผ๋ก ๋๋๋ ๊ฒฝ์ฐ๊ฐ ๋ง์ต๋๋ค. ๊ทธ๋ฆฌ๊ณ **FastAPI** ์ ํ๋ฆฌ์ผ์ด์ ๋ ์ฌ๋ฌ ํ์ผ์ด๋ ๋ชจ๋ ๋ฑ์ผ๋ก ๊ตฌ์ฑ๋ ์ ์์ต๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Dec 10 11:24:48 UTC 2024 - 7.6K bytes - Viewed (0) -
api/go1.19.txt
pkg sync/atomic, method (*Uintptr) Load() uintptr #50860 pkg sync/atomic, method (*Uintptr) Store(uintptr) #50860 pkg sync/atomic, method (*Uintptr) Swap(uintptr) uintptr #50860 pkg sync/atomic, type Bool struct #50860 pkg sync/atomic, type Int32 struct #50860 pkg sync/atomic, type Int64 struct #50860 pkg sync/atomic, type Pointer[$0 interface{}] struct #50860 pkg sync/atomic, type Uint32 struct #50860
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Dec 02 16:29:41 UTC 2022 - 17.9K bytes - Viewed (0)