Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for numeric (0.04 sec)

  1. docs/en/docs/tutorial/path-params-numeric-validations.md

    # Path Parameters and Numeric Validations { #path-parameters-and-numeric-validations }
    
    In the same way that you can declare more validations and metadata for query parameters with `Query`, you can declare the same type of validations and metadata for path parameters with `Path`.
    
    ## Import `Path` { #import-path }
    
    First, import `Path` from `fastapi`, and import `Annotated`:
    
    {* ../../docs_src/path_params_numeric_validations/tutorial001_an_py310.py hl[1,3] *}
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/path-params-numeric-validations.md

    ## Validaciones numéricas: mayor que y menor o igual { #number-validations-greater-than-and-less-than-or-equal }
    
    Lo mismo aplica para:
    
    * `gt`: `g`reater `t`han
    * `le`: `l`ess than or `e`qual
    
    {* ../../docs_src/path_params_numeric_validations/tutorial005_an_py39.py hl[10] *}
    
    ## Validaciones numéricas: flotantes, mayor y menor { #number-validations-floats-greater-than-and-less-than }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/path-params-numeric-validations.md

    {* ../../docs_src/path_params_numeric_validations/tutorial003_an_py39.py hl[10] *}
    
    ## Validações numéricas: maior que ou igual { #number-validations-greater-than-or-equal }
    
    Com `Query` e `Path` (e outras que você verá depois) você pode declarar restrições numéricas.
    
    Aqui, com `ge=1`, `item_id` precisará ser um número inteiro “`g`reater than or `e`qual” a `1`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/path-params-numeric-validations.md

    # Pfad-Parameter und Validierung von Zahlen { #path-parameters-and-numeric-validations }
    
    So wie Sie mit `Query` für Query-Parameter zusätzliche Validierungen und Metadaten deklarieren können, können Sie mit `Path` die gleichen Validierungen und Metadaten für Pfad-Parameter deklarieren.
    
    ## `Path` importieren { #import-path }
    
    Importieren Sie zuerst `Path` von `fastapi`, und importieren Sie `Annotated`:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/path-params-numeric-validations.md

    # Path-параметры и валидация числовых данных { #path-parameters-and-numeric-validations }
    
    Так же, как с помощью `Query` вы можете добавлять валидацию и метаданные для query-параметров, так и с помощью `Path` вы можете добавлять такую же валидацию и метаданные для path-параметров.
    
    ## Импорт `Path` { #import-path }
    
    Сначала импортируйте `Path` из `fastapi`, а также импортируйте `Annotated`:
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  6. docs/uk/docs/tutorial/path-params-numeric-validations.md

    Sofie Van Landeghem <******@****.***> 1758385641 +0200
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Sep 20 16:27:21 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  7. docs/ja/docs/tutorial/path-params-numeric-validations.md

    FakeDocument <******@****.***> 1735988038 +0900
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Jan 04 10:53:58 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/witness/WitnessEventType.java

         *
         * @param value the numeric event type value
         */
        WitnessEventType(int value) {
            this.value = value;
        }
    
        /**
         * Gets the numeric event type value.
         *
         * @return the event type value
         */
        public int getValue() {
            return value;
        }
    
        /**
         * Gets a WitnessEventType from its numeric value.
         *
         * @param value the numeric value
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/persistent/HandleType.java

        HandleType(int value) {
            this.value = value;
        }
    
        /**
         * Get the numeric value of this handle type
         * @return the numeric value
         */
        public int getValue() {
            return value;
        }
    
        /**
         * Get HandleType from numeric value
         * @param value the numeric value
         * @return the corresponding HandleType
         */
        public static HandleType fromValue(int value) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SID.java

         * If the sid cannot be resolved the numeric representation from
         * toString() is returned.
         *
         * @return display format, potentially with resolved names
         */
        String toDisplayString();
    
        /**
         * Return the sAMAccountName of this SID unless it could not
         * be resolved in which case the numeric RID is returned. If this
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
Back to top