- Sort Score
- Num 10 results
- Language All
Results 991 - 1000 of 1,913 for parameters (0.05 seconds)
-
docs/uk/docs/how-to/configure-swagger-ui.md
Це налаштування змінить колірну тему підсвітки синтаксису: <img src="/img/tutorial/extending-openapi/image04.png"> ## Змініть параметри Swagger UI за замовчуванням { #change-default-swagger-ui-parameters } FastAPI містить деякі параметри конфігурації за замовчуванням, що підходять для більшості випадків. Вони включають такі типові налаштування: {* ../../fastapi/openapi/docs.py ln[9:24] hl[18:24] *}
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 4.2K bytes - Click Count (0) -
docs/de/docs/tutorial/path-params-numeric-validations.md
# Pfad-Parameter und Validierung von Zahlen { #path-parameters-and-numeric-validations } So wie Sie mit `Query` für Query-Parameter zusätzliche Validierungen und Metadaten deklarieren können, können Sie mit `Path` die gleichen Validierungen und Metadaten für Pfad-Parameter deklarieren. ## `Path` importieren { #import-path } Importieren Sie zuerst `Path` von `fastapi`, und importieren Sie `Annotated`:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 7.1K bytes - Click Count (0) -
tests/test_repeated_dependency_schema.py
def test_openapi_schema(): response = client.get("/openapi.json") assert response.status_code == status.HTTP_200_OK actual_schema = response.json() assert ( len(actual_schema["paths"]["/"]["get"]["parameters"]) == 1 ) # primary goal of this test assert actual_schema == snapshot( { "components": { "schemas": { "HTTPValidationError": {
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 08 10:18:38 GMT 2026 - 4K bytes - Click Count (0) -
docs/uk/docs/tutorial/cookie-params.md
# Параметри кукі { #cookie-parameters } Ви можете визначати параметри кукі таким же чином, як визначаються параметри `Query` і `Path`. ## Імпорт `Cookie` { #import-cookie } Спочатку імпортуйте `Cookie`: {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[3] *} ## Визначення параметрів `Cookie` { #declare-cookie-parameters } Потім визначте параметри кукі, використовуючи таку ж конструкцію як для `Path` і `Query`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 12:42:01 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/tr/docs/tutorial/request-forms-and-files.md
``` /// ## `File` ve `Form` Import Edin { #import-file-and-form } {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[3] *} ## `File` ve `Form` Parametrelerini Tanımlayın { #define-file-and-form-parameters } Dosya ve form parametrelerini, `Body` veya `Query` için yaptığınız şekilde oluşturun: {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[10:12] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 1.6K bytes - Click Count (0) -
docs/fr/docs/tutorial/request-files.md
/// /// tip | Astuce Pour déclarer des fichiers dans le corps de la requête, vous devez utiliser `File`, sinon les paramètres seraient interprétés comme des paramètres de requête ou des paramètres de corps (JSON). /// Les fichiers seront téléversés en « données de formulaire ».
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 8.2K bytes - Click Count (0) -
docs/es/docs/tutorial/path-params-numeric-validations.md
# Parámetros de Path y Validaciones Numéricas { #path-parameters-and-numeric-validations } De la misma manera que puedes declarar más validaciones y metadatos para los parámetros de query con `Query`, puedes declarar el mismo tipo de validaciones y metadatos para los parámetros de path con `Path`. ## Importar `Path` { #import-path } Primero, importa `Path` de `fastapi`, e importa `Annotated`:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 6.4K bytes - Click Count (0) -
docs/pt/docs/tutorial/body.md
{* ../../docs_src/body/tutorial002_py310.py *} ## Corpo da requisição + parâmetros de rota { #request-body-path-parameters } Você pode declarar parâmetros de rota e corpo da requisição ao mesmo tempo. O **FastAPI** irá reconhecer que os parâmetros da função que combinam com parâmetros de rota devem ser **retirados da rota**, e que parâmetros da função que são declarados como modelos Pydantic sejam **retirados do corpo da requisição**.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 7.2K bytes - Click Count (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} this.disallowCompound = disallow; } /** * Initializes default configuration values. * Sets up default values for various configuration parameters if not already specified. * * @throws CIFSException if there is an error during initialization */ protected void initDefaults() throws CIFSException { try {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 36.5K bytes - Click Count (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/CachesCleaner.kt
} logger.lifecycle("Cleaning up caches...") val homeDir = parameters.homeDir.get() homeDir.asFile.listFiles()?.filter { it.name.startsWith("distributions-") }?.forEach { val workerDir = homeDir.dir(it.name) cleanupDistributionCaches(workerDir, GradleVersion.version(parameters.gradleVersion.get())) } hasCleaned = true } }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 28 08:29:28 GMT 2024 - 4.2K bytes - Click Count (1)