Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,500 for parametre (0.04 sec)

  1. docs/es/docs/tutorial/response-model.md

    ### Usa el parámetro `response_model_exclude_unset` { #use-the-response-model-exclude-unset-parameter }
    
    Puedes configurar el parámetro del decorador de path operation `response_model_exclude_unset=True`:
    
    {* ../../docs_src/response_model/tutorial004_py310.py hl[22] *}
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 17.7K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/query-params-str-validations.md

    ```Python
    q: str | None = Query(default=None)
    ```
    
    ... macht den Parameter optional mit einem Defaultwert von `None`, genauso wie:
    
    ```Python
    q: str | None = None
    ```
    
    Aber die `Query`-Version deklariert ihn explizit als Query-Parameter.
    
    Dann können wir mehr Parameter an `Query` übergeben. In diesem Fall den `max_length`-Parameter, der auf Strings angewendet wird:
    
    ```Python
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/schema-extra-example.md

    Isso não vai dentro de cada JSON Schema contido no OpenAPI, vai fora, diretamente na *operação de rota*.
    
    ### Usando o parâmetro `openapi_examples` { #using-the-openapi-examples-parameter }
    
    Você pode declarar o `examples` específico do OpenAPI no FastAPI com o parâmetro `openapi_examples` para:
    
    * `Path()`
    * `Query()`
    * `Header()`
    * `Cookie()`
    * `Body()`
    * `Form()`
    * `File()`
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/schema-extra-example.md

    Esto no va dentro de cada JSON Schema contenido en OpenAPI, esto va afuera, directamente en la *path operation*.
    
    ### Usando el Parámetro `openapi_examples` { #using-the-openapi-examples-parameter }
    
    Puedes declarar los `examples` específicos de OpenAPI en FastAPI con el parámetro `openapi_examples` para:
    
    * `Path()`
    * `Query()`
    * `Header()`
    * `Cookie()`
    * `Body()`
    * `Form()`
    * `File()`
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/path-params-numeric-validations.md

    Se você quiser:
    
    * declarar o parâmetro de consulta `q` sem um `Query` nem qualquer valor padrão
    * declarar o parâmetro de path `item_id` usando `Path`
    * tê-los em uma ordem diferente
    * não usar `Annotated`
    
    ...o Python tem uma pequena sintaxe especial para isso.
    
    Passe `*`, como o primeiro parâmetro da função.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/ValidatingConfigurationListener.java

        private final Map<String, Parameter> missingParameters;
    
        ValidatingConfigurationListener(Object mojo, MojoDescriptor mojoDescriptor, ConfigurationListener delegate) {
            this.mojo = mojo;
            this.delegate = delegate;
            this.missingParameters = new HashMap<>();
    
            if (mojoDescriptor.getParameters() != null) {
                for (Parameter param : mojoDescriptor.getParameters()) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java

        /**
         * Constructs a new HostIntervalController with default parameters.
         */
        public HostIntervalController() {
            this.lastTimes = CacheBuilder.newBuilder().expireAfterAccess(DEFAULT_CACHE_EXPIRE_HOURS, TimeUnit.HOURS).build();
        }
    
        /**
         * Constructs a new HostIntervalController with the specified parameters.
         *
         * @param params the parameters to configure the interval controller
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/response-model.md

    ### Den `response_model_exclude_unset`-Parameter verwenden { #use-the-response-model-exclude-unset-parameter }
    
    Sie können den *Pfadoperation-Dekorator*-Parameter `response_model_exclude_unset=True` setzen:
    
    {* ../../docs_src/response_model/tutorial004_py310.py hl[22] *}
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2Test.java

     * without throwing exceptions.
     */
    @ExtendWith(MockitoExtension.class)
    class MsrpcSamrConnect2Test {
    
        // Helper method to create a minimal SamrPolicyHandle instance.
        private static SamrPolicyHandle createMockPolicyHandle() {
            return mock(SamrPolicyHandle.class);
        }
    
        @Nested
        @DisplayName("Constructor parameter handling")
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. docs/en/docs/python-types.md

    As an example, let's take this function:
    
    {* ../../docs_src/python_types/tutorial009c_py39.py hl[1,4] *}
    
    The parameter `name` is defined as `Optional[str]`, but it is **not optional**, you cannot call the function without the parameter:
    
    ```Python
    say_hi()  # Oh, no, this throws an error! 😱
    ```
    
    The `name` parameter is **still required** (not *optional*) because it doesn't have a default value. Still, `name` accepts `None` as the value:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 15.6K bytes
    - Viewed (0)
Back to top