- Sort Score
- Num 10 results
- Language All
Results 1311 - 1320 of 1,416 for NOTE (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/de/docs/tutorial/security/first-steps.md
/// Und wenn Sie darauf klicken, erhalten Sie ein kleines Anmeldeformular zur Eingabe eines `username` und `password` (und anderer optionaler Felder): <img src="/img/tutorial/security/image02.png"> /// note | Hinweis Es spielt keine Rolle, was Sie in das Formular eingeben, es wird noch nicht funktionieren. Wir kommen dahin. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 9.7K bytes - Click Count (0) -
docs/es/docs/tutorial/dependencies/index.md
Y puedes declarar dependencias con `async def` dentro de *path operation functions* normales `def`, o dependencias `def` dentro de *path operation functions* `async def`, etc. No importa. **FastAPI** sabrá qué hacer. /// note | Nota Si no lo sabes, revisa la sección [Async: *"¿Con prisa?"*](../../async.md#in-a-hurry) sobre `async` y `await` en la documentación. /// ## Integración con OpenAPI { #integrated-with-openapi }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 10K bytes - Click Count (0) -
docs/pt/docs/deployment/docker.md
/// note | Nota `--no-cache-dir` é apenas relacionado ao `pip`, não tem nada a ver com Docker ou contêineres. /// A opção `--upgrade` diz ao `pip` para atualizar os pacotes se eles já estiverem instalados.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 30.9K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/body.md
{* ../../docs_src/body/tutorial004_py310.py hl[16] *} 函式參數的辨識方式如下: - 如果參數同時在**路徑**中宣告,則作為路徑參數。 - 如果參數是**單一型別**(像是 `int`、`float`、`str`、`bool` 等),會被視為**查詢**參數。 - 如果參數宣告為 **Pydantic 模型** 型別,會被視為請求**本文**。 /// note FastAPI 會因為預設值 `= None` 而知道 `q` 的值不是必填。 `str | None` 並非 FastAPI 用來判斷是否必填的依據;它會因為有預設值 `= None` 而知道不是必填。 但加入這些型別註解能讓你的編輯器提供更好的支援與錯誤偵測。 /// ## 不使用 Pydantic { #without-pydantic }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6K bytes - Click Count (0) -
doc/asm.html
the argument size must be provided. For assembly functions with Go prototypes, <code>go</code> <code>vet</code> will check that the argument size is correct. </p> <p> Note that the symbol name uses a middle dot to separate the components and is specified as an offset from the static base pseudo-register <code>SB</code>.
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Nov 14 19:09:46 GMT 2025 - 36.5K bytes - Click Count (0) -
docs/es/docs/tutorial/bigger-applications.md
/// Con `app.include_router()` podemos agregar cada `APIRouter` a la aplicación principal de `FastAPI`. Incluirá todas las rutas de ese router como parte de ella. /// note | Detalles Técnicos En realidad creará internamente una *path operation* para cada *path operation* que fue declarada en el `APIRouter`. Así, detrás de escena, funcionará como si todo fuera la misma única app. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 20.2K bytes - Click Count (0) -
cmd/iam.go
) const ( maxSVCSessionPolicySize = 4096 ) // IAMSys - config system. type IAMSys struct { // Need to keep them here to keep alignment - ref: https://golang.org/pkg/sync/atomic/#pkg-note-BUG // metrics LastRefreshTimeUnixNano uint64 LastRefreshDurationMilliseconds uint64 TotalRefreshSuccesses uint64 TotalRefreshFailures uint64 sync.MutexCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Oct 15 17:00:45 GMT 2025 - 76.5K bytes - Click Count (0) -
docs/de/docs/tutorial/testing.md
Und die Anrufe an den Client sind ebenfalls normale Anrufe, die nicht `await` verwenden. Dadurch können Sie `pytest` ohne Komplikationen direkt nutzen. /// /// note | Technische Details Sie könnten auch `from starlette.testclient import TestClient` verwenden.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 6.6K bytes - Click Count (0) -
docs/ru/docs/tutorial/body.md
* Если параметр объявлен как тип **модели Pydantic**, он будет интерпретирован как **тело** запроса. /// note | Заметка FastAPI понимает, что значение `q` не является обязательным из-за значения по умолчанию `= None`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 10.7K bytes - Click Count (0) -
docs/ru/docs/advanced/path-operation-advanced-configuration.md
## Дополнительные данные OpenAPI { #openapi-extra } Когда вы объявляете *операцию пути* в своём приложении, **FastAPI** автоматически генерирует соответствующие метаданные об этой *операции пути* для включения в схему OpenAPI. /// note | Технические детали В спецификации OpenAPI это называется [Объект операции](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#operation-object). ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 10.6K bytes - Click Count (0)