Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 8,598 for and (0.21 sec)

  1. docs/pt/docs/tutorial/request-forms-and-files.md

    
    ## Importe `File` e `Form`
    
    ```Python hl_lines="1"
    {!../../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ## Defina parรขmetros de `File` e `Form`
    
    Crie parรขmetros de arquivo e formulรกrio da mesma forma que vocรช faria para `Body` ou `Query`:
    
    ```Python hl_lines="8"
    {!../../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/request-forms-and-files.md

        ๐Ÿคถ โ“‚. `pip install python-multipart`.
    
    ## ๐Ÿ—„ `File` & `Form`
    
    ```Python hl_lines="1"
    {!../../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ## ๐Ÿ”ฌ `File` & `Form` ๐Ÿ”ข
    
    โœ ๐Ÿ“ & ๐Ÿ“จ ๐Ÿ”ข ๐ŸŽ ๐ŸŒŒ ๐Ÿ‘† ๐Ÿ”œ `Body` โš–๏ธ `Query`:
    
    ```Python hl_lines="8"
    {!../../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ๐Ÿ“ & ๐Ÿ“จ ๐Ÿ‘ ๐Ÿ”œ ๐Ÿ“‚ ๐Ÿ“จ ๐Ÿ“Š & ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ“จ ๐Ÿ“ & ๐Ÿ“จ ๐Ÿ‘.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  3. docs/ja/docs/tutorial/request-forms-and-files.md

        ไพ‹ใˆใฐใ€`pip install python-multipart`ใฎใ‚ˆใ†ใซใ€‚
    
    ## `File`ใจ`Form`ใฎใ‚คใƒณใƒใƒผใƒˆ
    
    ```Python hl_lines="1"
    {!../../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ## `File`ใจ`Form`ใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใฎๅฎš็พฉ
    
    ใƒ•ใ‚กใ‚คใƒซใ‚„ใƒ•ใ‚ฉใƒผใƒ ใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใฏ`Body`ใ‚„`Query`ใฎๅ ดๅˆใจๅŒใ˜ใ‚ˆใ†ใซไฝœๆˆใ—ใพใ™:
    
    ```Python hl_lines="8"
    {!../../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ใƒ•ใ‚กใ‚คใƒซใจใƒ•ใ‚ฉใƒผใƒ ใƒ•ใ‚ฃใƒผใƒซใƒ‰ใŒใƒ•ใ‚ฉใƒผใƒ ใƒ‡ใƒผใ‚ฟใจใ—ใฆใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ใ•ใ‚Œใ€ใƒ•ใ‚กใ‚คใƒซใจใƒ•ใ‚ฉใƒผใƒ ใƒ•ใ‚ฃใƒผใƒซใƒ‰ใ‚’ๅ—ใ‘ๅ–ใ‚Šใพใ™ใ€‚
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 04:31:22 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  4. ci/official/utilities/rename_and_verify_wheels.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # Usage: rename_and_verify_wheels.sh
    # This script is aware of TFCI_ variables, so it doesn't need any arguments.
    # Puts new wheel through auditwheel to rename and verify it, deletes the old
    # one, checks the filesize, and then ensures the new wheel is installable.
    Shell Script
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 21:16:27 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  5. docs/de/docs/how-to/custom-request-and-route.md

    ```Python hl_lines="13  15"
    {!../../../docs_src/custom_request_and_route/tutorial002.py!}
    ```
    
    Wenn eine Exception auftritt, befindet sich die `Request`-Instanz weiterhin im Gรผltigkeitsbereich, sodass wir den Requestbody lesen und bei der Fehlerbehandlung verwenden kรถnnen:
    
    ```Python hl_lines="16-18"
    {!../../../docs_src/custom_request_and_route/tutorial002.py!}
    ```
    
    ## Benutzerdefinierte `APIRoute`-Klasse in einem Router
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 18:18:23 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/request-forms-and-files.md

    ## `File` und `Form` importieren
    
    === "Python 3.9+"
    
        ```Python hl_lines="3"
        {!> ../../../docs_src/request_forms_and_files/tutorial001_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/request_forms_and_files/tutorial001_an.py!}
        ```
    
    === "Python 3.8+ nicht annotiert"
    
        !!! tip "Tipp"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 18:07:35 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/devel.usertools/rename_and_verify_wheels.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    # Check and rename wheels with auditwheel. Inserts the platform tags like
    # "manylinux_xyz" into the wheel filename.
    set -euxo pipefail
    
    for wheel in /tf/pkg/*.whl; do
      echo "Checking and renaming $wheel..."
    Shell Script
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 19:00:37 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/request-forms-and-files.md

        ์˜ˆ ) `pip install python-multipart`.
    
    ## `File` ๋ฐ `Form` ์—…๋กœ๋“œ
    
    ```Python hl_lines="1"
    {!../../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ## `File` ๋ฐ `Form` ๋งค๊ฐœ๋ณ€์ˆ˜ ์ •์˜
    
    `Body` ๋ฐ `Query`์™€ ๋™์ผํ•œ ๋ฐฉ์‹์œผ๋กœ ํŒŒ์ผ๊ณผ ํผ์˜ ๋งค๊ฐœ๋ณ€์ˆ˜๋ฅผ ์ƒ์„ฑํ•ฉ๋‹ˆ๋‹ค:
    
    ```Python hl_lines="8"
    {!../../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ํŒŒ์ผ๊ณผ ํผ ํ•„๋“œ๋Š” ํผ ๋ฐ์ดํ„ฐ ํ˜•์‹์œผ๋กœ ์—…๋กœ๋“œ๋˜์–ด ํŒŒ์ผ๊ณผ ํผ ํ•„๋“œ๋กœ ์ „๋‹ฌ๋ฉ๋‹ˆ๋‹ค.
    
    ์–ด๋–ค ํŒŒ์ผ๋“ค์€ `bytes`๋กœ, ๋˜ ์–ด๋–ค ํŒŒ์ผ๋“ค์€ `UploadFile`๋กœ ์„ ์–ธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-1.pom

      <modelVersion>4.0.0</modelVersion>
      <groupId>org.apache.maven.core.test</groupId>
      <artifactId>test-lifecycle-and-artifactHandler</artifactId>
      <packaging>jar</packaging>
      <version>1</version>
      <name>test-lifecycle-and-artifactHandler</name>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.2-beta-2-SNAPSHOT</version>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-lifecycle-and-artifactHandler/1/test-lifecycle-and-artifactHandler-1.pom.md5

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 32 bytes
    - Viewed (0)
Back to top