- Sort Score
- Num 10 results
- Language All
Results 231 - 240 of 421 for annotated (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/uk/docs/tutorial/dependencies/classes-as-dependencies.md
Зверніть увагу, що вище ми двічі пишемо `CommonQueryParams`: //// tab | Python 3.10+ ```Python commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)] ``` //// //// tab | Python 3.10+ без Annotated /// tip | Порада Надавайте перевагу варіанту з `Annotated`, якщо це можливо. /// ```Python commons: CommonQueryParams = Depends(CommonQueryParams) ``` ////
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:43:14 GMT 2026 - 9.7K bytes - Click Count (0) -
docs/ru/docs/tutorial/dependencies/index.md
/// info | Информация FastAPI добавил поддержку `Annotated` (и начал рекомендовать его использование) в версии 0.95.0. Если у вас более старая версия, вы получите ошибки при попытке использовать `Annotated`. Убедитесь, что вы [обновили версию FastAPI](../../deployment/versions.md#upgrading-the-fastapi-versions) как минимум до 0.95.1, прежде чем использовать `Annotated`. /// ### Импорт `Depends` { #import-depends }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 15.4K bytes - Click Count (1) -
docs/es/docs/tutorial/dependencies/index.md
/// info | Información FastAPI agregó soporte para `Annotated` (y comenzó a recomendarlo) en la versión 0.95.0. Si tienes una versión anterior, obtendrás errores al intentar usar `Annotated`. Asegúrate de [Actualizar la versión de FastAPI](../../deployment/versions.md#upgrading-the-fastapi-versions) al menos a la 0.95.1 antes de usar `Annotated`. /// ### Importar `Depends` { #import-depends }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 10K bytes - Click Count (0) -
guava/src/com/google/common/collect/ConcurrentHashMultiset.java
* CollectionRemoveTester.testRemove_nullAllowed, but it's not clear that it's * a good policy, especially because, in order for the test to pass, the * parameter must be misleadingly annotated as @Nullable. I suspect that * we'll want to remove @Nullable, add an eager checkNotNull, and loosen up * testRemove_nullAllowed. */ @CanIgnoreReturnValue @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 22.3K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
/** * A test utility that verifies that your methods and constructors throw {@link * NullPointerException} or {@link UnsupportedOperationException} whenever null is passed to a * parameter whose declaration or type isn't annotated with an annotation with the simple name * {@code Nullable}, {@code CheckForNull}, {@code NullableType}, or {@code NullableDecl}. *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 24.9K bytes - Click Count (0) -
docs/fr/docs/tutorial/dependencies/classes-as-dependencies.md
Remarquez que nous écrivons `CommonQueryParams` deux fois dans le code ci‑dessus : //// tab | Python 3.10+ ```Python commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)] ``` //// //// tab | Python 3.10+ sans Annotated /// tip | Astuce Privilégiez la version avec `Annotated` si possible. /// ```Python commons: CommonQueryParams = Depends(CommonQueryParams) ``` ////
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 7.5K bytes - Click Count (0) -
docs/ru/docs/tutorial/query-params-str-validations.md
Убедитесь, что вы [обновили версию FastAPI](../deployment/versions.md#upgrading-the-fastapi-versions) как минимум до 0.95.1 перед использованием `Annotated`. /// ## Использовать `Annotated` в типе для параметра `q` { #use-annotated-in-the-type-for-the-q-parameter }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 25.1K bytes - Click Count (0) -
docs/de/docs/tutorial/query-params-str-validations.md
### `Query` und `Annotated` importieren { #import-query-and-annotated } Um dies zu erreichen, importieren Sie zuerst: * `Query` von `fastapi` * `Annotated` von `typing` {* ../../docs_src/query_params_str_validations/tutorial002_an_py310.py hl[1,3] *} /// info | Info FastAPI hat Unterstützung für `Annotated` hinzugefügt (und begonnen, es zu empfehlen) in der Version 0.95.0.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 18.7K bytes - Click Count (0) -
docs/pt/docs/tutorial/query-params-str-validations.md
Certifique-se de [Atualizar a versão do FastAPI](../deployment/versions.md#upgrading-the-fastapi-versions) para pelo menos 0.95.1 antes de usar `Annotated`. /// ## Use `Annotated` no tipo do parâmetro `q` { #use-annotated-in-the-type-for-the-q-parameter }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 17.2K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/index.md
只要把它傳給 `Depends`,**FastAPI** 就知道該怎麼處理其餘的部分。 /// ## 共用 `Annotated` 依賴 { #share-annotated-dependencies } 在上面的範例中,可以看到有一點點的「重複程式碼」。 當你要使用 `common_parameters()` 這個依賴時,你得寫出完整的型別註解搭配 `Depends()`: ```Python commons: Annotated[dict, Depends(common_parameters)] ``` 但因為我們在使用 `Annotated`,我們可以把這個 `Annotated` 的值存到一個變數中,並在多個地方重複使用:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.9K bytes - Click Count (0)