Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 291 - 300 of 1,199 for Parametre (0.1 seconds)

  1. docs/es/docs/tutorial/dependencies/classes-as-dependencies.md

    Esos parámetros son los que **FastAPI** usará para "resolver" la dependencia.
    
    En ambos casos, tendrá:
    
    * Un parámetro de query `q` opcional que es un `str`.
    * Un parámetro de query `skip` que es un `int`, con un valor por defecto de `0`.
    * Un parámetro de query `limit` que es un `int`, con un valor por defecto de `100`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:41:41 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

        @UriType(protocolType = ProtocolType.WEB)
        public String testMethod() {
            return "http://example.com";
        }
    
        // Test parameter with UriType annotation
        public void testMethodWithParameter(@UriType(protocolType = ProtocolType.FILE) final String uri) {
            // Method for testing parameter annotation
        }
    
        // Test groups for validation
        private interface TestGroup {
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.3K bytes
    - Click Count (0)
  3. docs/pt/docs/_llm-test.md

    * o corpo da resposta
    * o corpo JSON
    * o corpo do formulário
    * o corpo do arquivo
    * o corpo da função
    
    * o parâmetro
    * o parâmetro de corpo
    * o parâmetro de path
    * o parâmetro de query
    * o parâmetro de cookie
    * o parâmetro de header
    * o parâmetro de formulário
    * o parâmetro da função
    
    * o evento
    * o evento de inicialização
    * a inicialização do servidor
    * o evento de encerramento
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

         * Applies the specified character encoding to decode parameter values.
         *
         * @param request the HTTP request containing the query string
         * @param enc the character encoding to use for decoding
         * @return a map of parameter names to their decoded values
         * @throws IOException if an error occurs during parameter parsing
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  5. docs/es/docs/tutorial/path-operation-configuration.md

    ///
    
    ## Tags { #tags }
    
    Puedes añadir tags a tu *path operation*, pasando el parámetro `tags` con un `list` de `str` (comúnmente solo una `str`):
    
    {* ../../docs_src/path_operation_configuration/tutorial002_py310.py hl[15,20,25] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  6. docs/pt/docs/tutorial/path-operation-configuration.md

    ///
    
    ## Tags { #tags }
    
    Você pode adicionar tags para sua *operação de rota*, passe o parâmetro `tags` com uma `list` de `str` (comumente apenas um `str`):
    
    {* ../../docs_src/path_operation_configuration/tutorial002_py310.py hl[15,20,25] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpHeaders.kt

    private val TOKEN_DELIMITERS = "\t ,=".encodeUtf8()
    
    /**
     * Parse RFC 7235 challenges. This is awkward because we need to look ahead to know how to
     * interpret a token.
     *
     * For example, the first line has a parameter name/value pair and the second line has a single
     * token68:
     *
     * ```
     * WWW-Authenticate: Digest foo=bar
     * WWW-Authenticate: Digest foo=
     * ```
     *
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    Oder die Abhängigkeit gibt keinen Wert zurück.
    
    Aber Sie müssen sie trotzdem ausführen/auflösen.
    
    In diesen Fällen können Sie, anstatt einen Parameter der *Pfadoperation-Funktion* mit `Depends` zu deklarieren, eine `list` von `dependencies` zum *Pfadoperation-Dekorator* hinzufügen.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/eventbus/Subscribe.java

    import java.lang.annotation.Target;
    
    /**
     * Marks a method as an event subscriber.
     *
     * <p>The type of event will be indicated by the method's first (and only) parameter, which cannot
     * be primitive. If this annotation is applied to methods with zero parameters, or more than one
     * parameter, the object containing the method will not be able to register for event delivery from
     * the {@link EventBus}.
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jul 16 15:46:17 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  10. docs/de/docs/advanced/advanced-python-types.md

    from typing import Optional
    
    
    def say_hi(name: Optional[str]):
        print(f"Hey {name}!")
    ```
    
    Der Parameter `name` ist als `Optional[str]` definiert, aber er ist **nicht optional**, Sie können die Funktion nicht ohne den Parameter aufrufen:
    
    ```Python
    say_hi()  # Oh nein, das löst einen Fehler aus! 😱
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 07:57:30 GMT 2026
    - 2.3K bytes
    - Click Count (0)
Back to Top