- Sort Score
- Num 10 results
- Language All
Results 1081 - 1090 of 2,334 for note (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/collect/CompactHashMap.java
* structure (to make it possible to throw ConcurrentModificationException in the iterator). Note * that we choose not to make this volatile, so we do less of a "best effort" to track such * errors, for better performance. * * <p>For a new instance, where the arrays above have not yet been allocated, the value of {@code
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 35.7K bytes - Click Count (0) -
docs/tr/docs/advanced/wsgi.md
Ardından WSGI (örn. Flask) uygulamasını middleware ile sarmalayın. Ve sonra bunu bir path'in altına mount edin. {* ../../docs_src/wsgi/tutorial001_py310.py hl[1,3,23] *} /// note Önceden, `fastapi.middleware.wsgi` içindeki `WSGIMiddleware`'ın kullanılması öneriliyordu, ancak artık kullanımdan kaldırıldı. Bunun yerine `a2wsgi` paketini kullanmanız önerilir. Kullanım aynıdır.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 1.7K bytes - Click Count (0) -
docs/es/docs/tutorial/static-files.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 1.8K bytes - Click Count (0) -
docs/fr/docs/tutorial/static-files.md
## Utiliser `StaticFiles` { #use-staticfiles } - Importer `StaticFiles`. - « Mount » une instance `StaticFiles()` sur un chemin spécifique. {* ../../docs_src/static_files/tutorial001_py310.py hl[2,6] *} /// note | Détails techniques Vous pouvez également utiliser `from starlette.staticfiles import StaticFiles`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 1.9K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/additional-responses.md
{* ../../docs_src/additional_responses/tutorial002_py310.py hl[17:22,26] *} /// note | 注意 請注意你必須直接用 `FileResponse` 回傳圖片。 /// /// info | 說明 除非你在 `responses` 參數中明確指定不同的媒體型別,否則 FastAPI 會假設回應的媒體型別與主回應類別相同(預設為 `application/json`)。 但如果你指定了一個自訂的回應類別,且其媒體型別為 `None`,那麼對於任何具關聯模型的額外回應,FastAPI 會使用 `application/json`。 /// ## 結合資訊 { #combining-information }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.6K bytes - Click Count (0) -
docs/ja/docs/advanced/templates.md
{* ../../docs_src/templates/tutorial001_py310.py hl[4,11,15:18] *} /// note | 備考 FastAPI 0.108.0、Starlette 0.29.0 以前では、`name` は最初のパラメータでした。 またそれ以前のバージョンでは、`request` オブジェクトは Jinja2 用のコンテキスト内のキーと値のペアの一部として渡されていました。 /// /// tip | 豆知識 `response_class=HTMLResponse` を宣言すると、ドキュメント UI がレスポンスが HTML であることを認識できます。 /// /// note | 技術詳細 `from starlette.templating import Jinja2Templates` を使うこともできます。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 4.1K bytes - Click Count (0) -
docs/ko/docs/advanced/additional-responses.md
{* ../../docs_src/additional_responses/tutorial002_py310.py hl[17:22,26] *} /// note | 참고 이미지는 `FileResponse`를 사용해 직접 반환해야 한다는 점에 유의하세요. /// /// info | 정보 `responses` 파라미터에서 다른 미디어 타입을 명시적으로 지정하지 않는 한, FastAPI는 응답이 주요 응답 클래스와 동일한 미디어 타입(기본값 `application/json`)을 가진다고 가정합니다. 하지만 커스텀 응답 클래스를 지정하면서 미디어 타입을 `None`으로 설정했다면, FastAPI는 연결된 모델이 있는 모든 추가 응답에 대해 `application/json`을 사용합니다. ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 9.6K bytes - Click Count (0) -
docs/tr/docs/tutorial/static-files.md
## `StaticFiles` Kullanımı { #use-staticfiles } * `StaticFiles`'ı import edin. * Belirli bir path'te bir `StaticFiles()` örneğini "mount" edin. {* ../../docs_src/static_files/tutorial001_py310.py hl[2,6] *} /// note | Teknik Detaylar `from starlette.staticfiles import StaticFiles` da kullanabilirsiniz.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 1.8K bytes - Click Count (0) -
docs/zh-hant/docs/async.md
results = await some_library() ``` 然後,使用 `async def` 宣告你的*路徑操作函式*: ```Python hl_lines="2" @app.get('/') async def read_results(): results = await some_library() return results ``` /// note | 注意 你只能在 `async def` 建立的函式內使用 `await`。 /// --- 如果你使用的是第三方函式庫並且它需要與某些外部資源(例如資料庫、API、檔案系統等)進行通訊,但不支援 `await`(目前大多數資料庫函式庫都是這樣),在這種情況下,你可以像平常一樣使用 `def` 宣告*路徑操作函式*,如下所示: ```Python hl_lines="2"
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 21.7K bytes - Click Count (0) -
docs/zh/docs/async.md
results = await some_library() ``` 然后,通过 `async def` 声明你的 *路径操作函数*: ```Python hl_lines="2" @app.get('/') async def read_results(): results = await some_library() return results ``` /// note | 注意 你只能在被 `async def` 创建的函数内使用 `await` /// --- 如果你正在使用一个第三方库和某些组件(比如:数据库、API、文件系统...)进行通信,第三方库又不支持使用 `await` (目前大多数数据库三方库都是这样),这种情况你可以像平常那样使用 `def` 声明一个路径操作函数,就像这样: ```Python hl_lines="2"
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 21.6K bytes - Click Count (0)