Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 481 - 490 of 1,199 for Parametre (0.11 seconds)

  1. docs/uk/docs/tutorial/header-param-models.md

    # Моделі параметрів заголовків { #header-parameter-models }
    
    Якщо у вас є група пов’язаних **параметрів заголовків**, ви можете створити **Pydantic модель** для їх оголошення.
    
    Це дозволить вам повторно **використовувати модель** в **різних місцях**, а також оголосити валідації та метадані для всіх параметрів одночасно. 😎
    
    /// note | Примітка
    
    Ця можливість підтримується починаючи з версії FastAPI `0.115.0`. 🤓
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:42:01 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  2. .idea/inspectionProfiles/Gradle.xml

            <constraint name="__context__" within="" contains="" />
            <constraint name="Class" within="" contains="" />
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Jun 26 21:49:47 GMT 2024
    - 15.4K bytes
    - Click Count (0)
  3. docs/es/docs/advanced/advanced-dependencies.md

    Pero podría haber casos en los que quieras poder establecer parámetros en la dependencia, sin tener que declarar muchas funciones o clases diferentes.
    
    Imaginemos que queremos tener una dependencia que revise si el parámetro de query `q` contiene algún contenido fijo.
    
    Pero queremos poder parametrizar ese contenido fijo.
    
    ## Una *instance* "callable" { #a-callable-instance }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  4. docs/de/docs/index.md

    * Klicken Sie auf den Button „Try it out“, damit können Sie die Parameter ausfüllen und direkt mit der API interagieren:
    
    ![Swagger UI Interaktion](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png)
    
    * Klicken Sie dann auf den Button „Execute“, die Benutzeroberfläche wird mit Ihrer API kommunizieren, die Parameter senden, die Ergebnisse erhalten und sie auf dem Bildschirm anzeigen:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 23.6K bytes
    - Click Count (1)
  5. guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

            TypeToken<?> paramType = type.resolveType(typeVars[i]);
            // We require all @Generates methods to either be parameter-less or accept non-null
            // values for their generic parameter types.
            Object argValue = generate(paramType);
            if (argValue == null) {
              // When a parameter of a @Generates method cannot be created,
              // The type most likely is a collection.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 16:45:58 GMT 2026
    - 28.7K bytes
    - Click Count (0)
  6. docs/ru/docs/advanced/response-change-status-code.md

    Для таких случаев вы можете использовать параметр `Response`.
    
    ## Использование параметра `Response` { #use-a-response-parameter }
    
    Вы можете объявить параметр типа `Response` в вашей *функции обработки пути* (как и для cookies и HTTP-заголовков).
    
    И затем вы можете установить `status_code` в этом *временном* объекте ответа.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  7. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       superclass, no equality check is done on the deserialized instance because it's not clear
       *       whether the author intended for the class to be a value type.
       *   <li>If a constructor or factory method takes a parameter whose type is interface, a dynamic
       *       proxy will be passed to the method. It's possible that the method body expects an
       *       instance method of the passed-in proxy to be of a certain value yet the proxy isn't aware
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            /**
             * Gets the initialization parameter value for the given parameter name.
             *
             * This method maps SPNEGO configuration parameter names to their corresponding
             * values from system properties or default values. It handles various
             * authentication and security settings for SPNEGO.
             *
             * @param name The name of the initialization parameter
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  9. docs/pt/docs/advanced/templates.md

    ---> 100%
    ```
    
    </div>
    
    ## Usando `Jinja2Templates` { #using-jinja2templates }
    
    * Importe `Jinja2Templates`.
    * Crie um objeto `templates` que você possa reutilizar posteriormente.
    * Declare um parâmetro `Request` no *path operation* que retornará um template.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/body-nested-models.md

    你可以將屬性定義為某個子型別。例如,Python 的 `list`:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    這會讓 `tags` 成為一個列表,儘管尚未宣告列表元素的型別。
    
    ## 具有型別參數的列表欄位 { #list-fields-with-type-parameter }
    
    不過,Python 有一種專門的方式來宣告具有內部型別(「型別參數」)的列表:
    
    ### 宣告帶有型別參數的 `list` { #declare-a-list-with-a-type-parameter }
    
    要宣告具有型別參數(內部型別)的型別,例如 `list`、`dict`、`tuple`,使用方括號 `[` 與 `]` 傳入內部型別作為「型別參數」:
    
    ```Python
    my_list: list[str]
    ```
    
    以上都是標準的 Python 型別宣告語法。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.5K bytes
    - Click Count (0)
Back to Top