- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 135 for Synchronous (0.07 seconds)
-
docs/fr/docs/deployment/manually.md
## Serveurs ASGI { #asgi-servers } Allons un peu plus en détail. FastAPI utilise un standard pour construire des frameworks web Python et des serveurs appelé <abbr title="Asynchronous Server Gateway Interface - Interface passerelle serveur asynchrone">ASGI</abbr>. FastAPI est un framework web ASGI.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
} return response; } catch (Exception e) { throw new IOException("Witness heartbeat RPC failed", e); } } /** * Requests asynchronous notifications from the witness service. * * @param contextHandle the context handle from registration * @return the async notify response containing notificationsCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 12.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
} } } private void notifyOperationFailure(CommonServerMessageBlock op, Exception error) { // This would need to be implemented based on how the SMB operations // handle asynchronous failures in the actual transport implementation log.debug("Operation failed during redistribution: {}", error.getMessage()); } private void scheduleRecovery(ChannelInfo channel, FailoverState state) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 11.6K bytes - Click Count (0) -
docs/en/docs/deployment/manually.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 6.7K bytes - Click Count (0) -
docs/es/docs/deployment/manually.md
## Servidores ASGI { #asgi-servers } Vamos a profundizar un poquito en los detalles. FastAPI usa un estándar para construir frameworks de web y servidores de Python llamado <abbr title="Asynchronous Server Gateway Interface - Interfaz de puerta de enlace de servidor asíncrona">ASGI</abbr>. FastAPI es un framework web ASGI.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 7K bytes - Click Count (0) -
docs/ko/docs/deployment/manually.md
``` </div> 대부분의 경우에는 이것으로 동작합니다. 😎 예를 들어 이 명령은 컨테이너나 서버 등에서 **FastAPI** 앱을 시작할 때 사용할 수 있습니다. ## ASGI 서버 { #asgi-servers } 이제 조금 더 자세히 살펴보겠습니다. FastAPI는 <abbr title="Asynchronous Server Gateway Interface - 비동기 서버 게이트웨이 인터페이스">ASGI</abbr>라고 불리는, Python 웹 프레임워크와 서버를 만들기 위한 표준을 사용합니다. FastAPI는 ASGI 웹 프레임워크입니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 7.4K bytes - Click Count (0) -
docs/ru/docs/async.md
Разберём эту фразу по частям в разделах ниже: * **Асинхронный код** * **`async` и `await`** * **Сопрограммы** ## Асинхронный код { #asynchronous-code }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 37.9K bytes - Click Count (0) -
futures/listenablefuture1/src/com/google/common/util/concurrent/ListenableFuture.java
* ListenableFuture}</a>. * * <p>This class is GWT-compatible. * * <h3>Purpose</h3> * * <p>The main purpose of {@code ListenableFuture} is to help you chain together a graph of * asynchronous operations. You can chain them together manually with calls to methods like {@link * Futures#transform(ListenableFuture, com.google.common.base.Function, Executor) Futures.transform}
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 8K bytes - Click Count (0) -
docs/zh-hant/docs/deployment/manually.md
to quit<b>)</b> ``` </div> 這在多數情況下都適用。😎 你可以用這個指令在容器、伺服器等環境中啟動你的 FastAPI 應用。 ## ASGI 伺服器 { #asgi-servers } 我們再深入一些細節。 FastAPI 採用建立 Python 網頁框架與伺服器的標準 <abbr title="Asynchronous Server Gateway Interface - 非同步伺服器閘道介面">ASGI</abbr>。FastAPI 是一個 ASGI 網頁框架。 在遠端伺服器機器上執行 FastAPI 應用(或任何 ASGI 應用)所需的關鍵是 ASGI 伺服器程式,例如 Uvicorn;`fastapi` 指令預設就是使用它。 有數個替代方案,包括:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.2K bytes - Click Count (0) -
docs/ja/docs/advanced/middleware.md
そして、[`CORSMiddleware` を使った CORS の扱い方](../tutorial/cors.md)も学びました。 このセクションでは、その他のミドルウェアの使い方を見ていきます。 ## ASGI ミドルウェアの追加 { #adding-asgi-middlewares } **FastAPI** は Starlette を基盤としており、<abbr title="Asynchronous Server Gateway Interface - 非同期サーバーゲートウェイインターフェース">ASGI</abbr> 仕様を実装しているため、任意の ASGI ミドルウェアを利用できます。 ミドルウェアは ASGI 仕様に従っていれば、FastAPI や Starlette 専用に作られていなくても動作します。 一般に、ASGI ミドルウェアは最初の引数として ASGI アプリを受け取るクラスです。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 5.2K bytes - Click Count (0)