- Sort Score
- Num 10 results
- Language All
Results 781 - 790 of 1,817 for _parameters (0.11 seconds)
-
tests/test_enforce_once_required_parameter.py
"openapi": "3.1.0", "paths": { "/foo": { "get": { "operationId": "foo_handler_foo_get", "parameters": [ { "in": "query", "name": "client_id", "required": True,
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 4.1K bytes - Click Count (0) -
docs/fr/docs/tutorial/background-tasks.md
## Créer une fonction de tâche { #create-a-task-function } Créez une fonction à exécuter comme tâche d'arrière-plan. Une fonction à exécuter comme tâche d'arrière-plan est juste une fonction standard qui peut recevoir des paramètres. Elle peut être une fonction asynchrone (`async def`) ou une fonction normale (`def`), **FastAPI** saura la gérer correctement. Dans cet exemple, la fonction de tâche écrira dans un fichier (afin de simuler un envoi d'email).Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 5.5K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/TestSubjectGenerator.java
import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /** * To be implemented by test generators that can produce test subjects without requiring any * parameters. * * @param <T> the type created by this generator. * @author George van den Driessche */ @GwtCompatible @NullMarked public interface TestSubjectGenerator<T extends @Nullable Object> {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.1K bytes - Click Count (0) -
docs/ko/docs/_llm-test.md
* 경로 처리 데코레이터 * 경로 처리 함수 * body * 요청 body * 응답 body * JSON body * form body * file body * 함수 body * parameter * body parameter * path parameter * query parameter * cookie parameter * header parameter * form parameter * function parameter * event * startup event * 서버 startup * shutdown event * lifespan event * handler * event handler
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 11.7K bytes - Click Count (0) -
docs/fr/docs/tutorial/extra-data-types.md
## Exemple { #example } Voici un exemple de *chemin d'accès* avec des paramètres utilisant certains des types ci-dessus. {* ../../docs_src/extra_data_types/tutorial001_an_py310.py hl[1,3,12:16] *} Notez que les paramètres à l'intérieur de la fonction ont leur type de données naturel et que vous pouvez, par exemple, effectuer des manipulations de dates normales, comme :Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 3.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java
assertTrue(exception1.getCause() instanceof IOException); // Test with IllegalArgumentException IllegalArgumentException illegalArgException = new IllegalArgumentException("Invalid parameter"); SsoLoginException exception2 = new SsoLoginException(message, illegalArgException); assertEquals(message, exception2.getMessage()); assertTrue(exception2.getCause() instanceof IllegalArgumentException);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.7K bytes - Click Count (0) -
docs/ja/docs/tutorial/path-params-numeric-validations.md
# パスパラメータと数値の検証 { #path-parameters-and-numeric-validations } クエリパラメータに対して`Query`でより多くのバリデーションとメタデータを宣言できるのと同じように、パスパラメータに対しても`Path`で同じ種類のバリデーションとメタデータを宣言することができます。 ## `Path`のインポート { #import-path } まず初めに、`fastapi`から`Path`をインポートし、`Annotated`もインポートします: {* ../../docs_src/path_params_numeric_validations/tutorial001_an_py310.py hl[1,3] *} /// info | 情報 FastAPI はバージョン 0.95.0 で`Annotated`のサポートを追加し(そして推奨し始めました)。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 7.6K bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/SettingsDecryptionRequest.java
* under the License. */ package org.apache.maven.settings.crypto; import java.util.List; import org.apache.maven.settings.Proxy; import org.apache.maven.settings.Server; /** * Collects parameters that control the decryption of settings. * * @deprecated since 4.0.0 */ @Deprecated(since = "4.0.0") public interface SettingsDecryptionRequest { /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/ReportingConverter.java
/** * Handles conversion of the <code><reporting></code> section into the configuration of Maven Site Plugin 3.x, * i.e. <code>reportPlugins</code> and <code>outputDirectory</code> parameters. * * @deprecated since maven 4.0, this interface is not used anymore and is only here for compatibility */ @Deprecated public interface ReportingConverter { /**
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/service/FessUrlQueueService.java
/** * Fess-specific URL queue service that extends OpenSearch URL queue functionality. * This service provides customized URL fetching strategies including sequential and random ordering * based on crawling configuration parameters. */ public class FessUrlQueueService extends OpenSearchUrlQueueService { private static final Logger logger = LogManager.getLogger(FessUrlQueueService.class);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4K bytes - Click Count (0)