- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 128 for vorbis (0.05 sec)
-
docs_src/query_param_models/tutorial002_an_py310.py
from typing import Annotated, Literal from fastapi import FastAPI, Query from pydantic import BaseModel, Field app = FastAPI() class FilterParams(BaseModel): model_config = {"extra": "forbid"} limit: int = Field(100, gt=0, le=100) offset: int = Field(0, ge=0) order_by: Literal["created_at", "updated_at"] = "created_at" tags: list[str] = [] @app.get("/items/")
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 483 bytes - Viewed (0) -
docs_src/cookie_param_models/tutorial002_an_py310.py
from typing import Annotated from fastapi import Cookie, FastAPI from pydantic import BaseModel app = FastAPI() class Cookies(BaseModel): model_config = {"extra": "forbid"} session_id: str fatebook_tracker: str | None = None googall_tracker: str | None = None @app.get("/items/") async def read_items(cookies: Annotated[Cookies, Cookie()]):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 383 bytes - Viewed (0) -
docs_src/cookie_param_models/tutorial002_an_py39.py
from typing import Annotated, Union from fastapi import Cookie, FastAPI from pydantic import BaseModel app = FastAPI() class Cookies(BaseModel): model_config = {"extra": "forbid"} session_id: str fatebook_tracker: Union[str, None] = None googall_tracker: Union[str, None] = None @app.get("/items/") async def read_items(cookies: Annotated[Cookies, Cookie()]):
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 402 bytes - Viewed (0) -
docs/ru/docs/tutorial/query-param-models.md
<img src="/img/tutorial/query-param-models/image01.png"> </div> ## Запретить Дополнительные Query-Параметры { #forbid-extra-query-parameters } В некоторых случаях (не особо часто встречающихся) вам может понадобиться **ограничить** query-параметры, которые вы хотите получить. Вы можете сконфигурировать Pydantic-модель так, чтобы запретить (`forbid`) все дополнительные (`extra`) поля. {* ../../docs_src/query_param_models/tutorial002_an_py310.py hl[10] *}
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:24:39 UTC 2025 - 3.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/query-param-models.md
<img src="/img/tutorial/query-param-models/image01.png"> </div> ## Restrinja Parâmetros de Consulta Extras { #forbid-extra-query-parameters } Em alguns casos especiais (provavelmente não muito comuns), você queira **restrinjir** os parâmetros de consulta que deseja receber. Você pode usar a configuração do modelo Pydantic para `forbid` (proibir) qualquer campo `extra`: {* ../../docs_src/query_param_models/tutorial002_an_py310.py hl[10] *}
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 2.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s
VORPS X8, X9, K1, X20 // 62c1340956e0 VORPS X9, X9, K1, X20 // 62c1340956e1 VORPS 7(SI)(DI*8), X9, K1, X20 // 62e1340956a4fe07000000 VORPS -15(R14), X9, K1, X20 // 62c1340956a6f1ffffff VORPS X2, X13, K1, X20 // 62e1140956e2 VORPS X8, X13, K1, X20 // 62c1140956e0
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue May 22 14:57:15 UTC 2018 - 194.8K bytes - Viewed (0) -
docs/de/docs/tutorial/cookie-param-models.md
/// ## Zusätzliche Cookies verbieten { #forbid-extra-cookies } In einigen speziellen Anwendungsfällen (wahrscheinlich nicht sehr häufig) möchten Sie möglicherweise die Cookies, die Sie empfangen möchten, **einschränken**.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 10 13:54:34 UTC 2025 - 3.8K bytes - Viewed (0) -
docs/de/docs/tutorial/header-param-models.md
</div> ## Zusätzliche Header verbieten { #forbid-extra-headers } In einigen speziellen Anwendungsfällen (wahrscheinlich nicht sehr häufig) möchten Sie möglicherweise die **Header einschränken**, die Sie erhalten möchten. Sie können Pydantics Modellkonfiguration verwenden, um `extra` Felder zu verbieten (`forbid`): {* ../../docs_src/header_param_models/tutorial002_an_py310.py hl[10] *}Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Sep 20 15:10:09 UTC 2025 - 3.1K bytes - Viewed (0) -
docs_src/request_form_models/tutorial002_py39.py
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 267 bytes - Viewed (0) -
docs_src/request_form_models/tutorial002_an_py39.py
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Sep 06 17:31:18 UTC 2024 - 307 bytes - Viewed (0)