Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 373 for 13 (0.02 sec)

  1. docs/pt/docs/tutorial/query-params-str-validations.md

    ///
    
    Você pode adicionar um `title`:
    
    ```Python hl_lines="10"
    {!../../docs_src/query_params_str_validations/tutorial007.py!}
    ```
    
    E uma `description`:
    
    ```Python hl_lines="13"
    {!../../docs_src/query_params_str_validations/tutorial008.py!}
    ```
    
    ## Apelidos (alias) de parâmetros
    
    Imagine que você queira que um parâmetro tenha o nome `item-query`.
    
    Desta maneira:
    
    ```
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/body-nested-models.md

    ```Python
    images: List[Image]
    ```
    
    or in Python 3.9 and above:
    
    ```Python
    images: list[Image]
    ```
    
    as in:
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="13"
    {!> ../../docs_src/body_nested_models/tutorial008_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="15"
    {!> ../../docs_src/body_nested_models/tutorial008.py!}
    ```
    
    ////
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. docs/zh/docs/tutorial/request-files.md

    ```Python hl_lines="9  17"
    {!> ../../docs_src/request_files/tutorial001_02.py!}
    ```
    
    ////
    
    ## 带有额外元数据的 `UploadFile`
    
    您也可以将 `File()` 与 `UploadFile` 一起使用,例如,设置额外的元数据:
    
    ```Python hl_lines="13"
    {!../../docs_src/request_files/tutorial001_03.py!}
    ```
    
    ## 多文件上传
    
    FastAPI 支持同时上传多个文件。
    
    可用同一个「表单字段」发送含多个文件的「表单数据」。
    
    上传多个文件时,要声明含 `bytes` 或 `UploadFile` 的列表(`List`):
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. lib/time/zoneinfo.zip

    Chile/EasterIsland Cuba EET EST EST5EDT Egypt Eire Etc/GMT Etc/GMT+0 Etc/GMT+1 Etc/GMT+10 Etc/GMT+11 Etc/GMT+12 Etc/GMT+2 Etc/GMT+3 Etc/GMT+4 Etc/GMT+5 Etc/GMT+6 Etc/GMT+7 Etc/GMT+8 Etc/GMT+9 Etc/GMT-0 Etc/GMT-1 Etc/GMT-10 Etc/GMT-11 Etc/GMT-12 Etc/GMT-13 Etc/GMT-14 Etc/GMT-2 Etc/GMT-3 Etc/GMT-4 Etc/GMT-5 Etc/GMT-6 Etc/GMT-7 Etc/GMT-8 Etc/GMT-9 Etc/GMT0 Etc/Greenwich Etc/UCT Etc/UTC Etc/Universal Etc/Zulu Europe/Amsterdam Europe/Andorra Europe/Astrakhan Europe/Athens Europe/Belfast Europe/Belgrade Europe/Berlin...
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Sep 23 14:25:08 UTC 2024
    - 396.7K bytes
    - Viewed (0)
  5. cmd/object-api-interface_gen.go

    func (z *WalkOptions) Msgsize() (s int) {
    	s = 1 + 7 + msgp.StringPrefixSize + len(z.Marker) + 11 + msgp.BoolSize + 9 + msgp.StringPrefixSize + len(z.AskDisks) + 13 + msgp.Uint8Size + 6 + msgp.IntSize
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z WalkVersionsSortOrder) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 22 21:57:20 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. cmd/apierrorcode_string.go

    	_ = x[ErrInternalError-7]
    	_ = x[ErrInvalidAccessKeyID-8]
    	_ = x[ErrAccessKeyDisabled-9]
    	_ = x[ErrInvalidArgument-10]
    	_ = x[ErrInvalidBucketName-11]
    	_ = x[ErrInvalidDigest-12]
    	_ = x[ErrInvalidRange-13]
    	_ = x[ErrInvalidRangePartNumber-14]
    	_ = x[ErrInvalidCopyPartRange-15]
    	_ = x[ErrInvalidCopyPartRangeSource-16]
    	_ = x[ErrInvalidMaxKeys-17]
    	_ = x[ErrInvalidEncodingMethod-18]
    	_ = x[ErrInvalidMaxUploads-19]
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/avx512enc/avx512f.s

    	VPERMILPD $13, Z3, K2, Z14                         // 6273fd4a05f30d
    	VPERMILPD $13, Z12, K2, Z14                        // 6253fd4a05f40d
    	VPERMILPD $13, (AX), K2, Z14                       // 6273fd4a05300d
    	VPERMILPD $13, 7(SI), K2, Z14                      // 6273fd4a05b6070000000d
    	VPERMILPD $13, Z3, K2, Z28                         // 6263fd4a05e30d
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 410.5K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/request-files.md

    //// tab | Python 3.9+
    
    ```Python hl_lines="14"
    {!> ../../docs_src/request_files/tutorial001_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="13"
    {!> ../../docs_src/request_files/tutorial001_an.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+ nicht annotiert
    
    /// tip | "Tipp"
    
    Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    ///
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/dependencies/classes-as-dependencies.md

    ```
    
    ////
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="12"
    {!> ../../docs_src/dependencies/tutorial002_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="13"
    {!> ../../docs_src/dependencies/tutorial002_an.py!}
    ```
    
    ////
    
    //// tab | Python 3.10+ non-Annotated
    
    /// tip | "Dica"
    
    Utilize a versão com `Annotated` se possível.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/request_files.md

    //// tab | Python 3.9+
    
    ```Python hl_lines="14"
    {!> ../../docs_src/request_files/tutorial001_an_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="13"
    {!> ../../docs_src/request_files/tutorial001_an.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+ non-Annotated
    
    /// tip | Dica
    
    Utilize a versão com `Annotated` se possível.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top