Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for output (0.25 sec)

  1. .github/workflows/build-docs.yml

            id: show-langs
            run: |
              echo "langs=$(python ./scripts/docs.py langs-json)" >> $GITHUB_OUTPUT
    
      build-docs:
        needs:
          - changes
          - langs
        if: ${{ needs.changes.outputs.docs == 'true' }}
        runs-on: ubuntu-latest
        strategy:
          matrix:
            lang: ${{ fromJson(needs.langs.outputs.langs) }}
        steps:
          - name: Dump GitHub context
            env:
    Others
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 03:12:00 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  2. docs/zh/docs/advanced/generate-clients.md

    ```JSON  hl_lines="7"
    {
      "name": "frontend-app",
      "version": "1.0.0",
      "description": "",
      "main": "index.js",
      "scripts": {
        "generate-client": "openapi-ts --input http://localhost:8000/openapi.json --output ./src/client --client axios"
      },
      "author": "",
      "license": "",
      "devDependencies": {
        "@hey-api/openapi-ts": "^0.27.38",
        "typescript": "^4.6.2"
      }
    }
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Apr 03 03:42:11 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/sql-databases.md

    * โšซ๏ธ ๐Ÿšš ๐ŸŒ– ๐Ÿ“Ÿ & ๐Ÿ‘„ ๐ŸŒ… ๐Ÿ—.
    * ๐Ÿ› ๏ธ โœ”๏ธ `async` ๐Ÿ”ข.
        * ๐Ÿšฅ ๐Ÿ“ค ๐Ÿ“Ÿ โšซ๏ธ ๐Ÿ‘ˆ โœ”๏ธ "โŒ›" ๐Ÿ•ธ, โšซ๏ธ ๐Ÿ’ช "๐Ÿซ" ๐Ÿ‘† ๐Ÿˆธ ๐Ÿ“ค & ๐Ÿ“‰ ๐ŸŽญ ๐Ÿ–.
        * ๐Ÿ‘ โšซ๏ธ ๐ŸŽฒ ๐Ÿšซ ๐Ÿ“ถ โš  ๐Ÿ“ฅ โฎ๏ธ ๐ŸŒŒ `SQLAlchemy` ๐Ÿ‘ท.
        * โœ‹๏ธ ๐Ÿšฅ ๐Ÿ‘† ๐Ÿšฎ ๐ŸŒ– ๐Ÿ“Ÿ ๐Ÿ› ๏ธ ๐Ÿ‘ˆ โœ”๏ธ ๐Ÿ“š <abbr title="input and output">๐Ÿ‘ค/๐Ÿ…พ</abbr> โŒ›, โšซ๏ธ ๐Ÿ’ช โคด๏ธ โš .
    * ๐Ÿ› ๏ธ ๐Ÿƒ *๐Ÿ” * ๐Ÿ“จ.
        * , ๐Ÿ”— ๐Ÿ”œ โœ ๐Ÿ”  ๐Ÿ“จ.
        * ๐Ÿ•โ” *โžก ๐Ÿ› ๏ธ* ๐Ÿ‘ˆ ๐Ÿต ๐Ÿ‘ˆ ๐Ÿ“จ ๐Ÿšซ ๐Ÿ’ช ๐Ÿ’ฝ.
    
    !!! tip
        โšซ๏ธ ๐ŸŽฒ ๐Ÿ‘ โš™๏ธ ๐Ÿ”— โฎ๏ธ `yield` ๐Ÿ•โ” ๐Ÿ‘ซ ๐Ÿฅƒ โš™๏ธ ๐Ÿ’ผ.
    
    !!! info
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 25.2K bytes
    - Viewed (1)
  4. docs/ko/docs/deployment/docker.md

    FROM python:3.9 as requirements-stage
    
    # (2)
    WORKDIR /tmp
    
    # (3)
    RUN pip install poetry
    
    # (4)
    COPY ./pyproject.toml ./poetry.lock* /tmp/
    
    # (5)
    RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
    
    # (6)
    FROM python:3.9
    
    # (7)
    WORKDIR /code
    
    # (8)
    COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt
    
    # (9)
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 42.6K bytes
    - Viewed (0)
  5. docs/en/docs/async.md

    Next, it ๐Ÿค– takes the first task to finish (let's say, our "slow-file" ๐Ÿ“) and continues whatever it had to do with it.
    
    That "wait for something else" normally refers to <abbr title="Input and Output">I/O</abbr> operations that are relatively "slow" (compared to the speed of the processor and the RAM memory), like waiting for:
    
    * the data from the client to be sent through the network
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/extra-models.md

    Continuing with the previous example, it will be common to have more than one related model.
    
    This is especially the case for user models, because:
    
    * The **input model** needs to be able to have a password.
    * The **output model** should not have a password.
    * The **database model** would probably need to have a hashed password.
    
    !!! danger
        Never store user's plaintext passwords. Always store a "secure hash" that you can then verify.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 7.7K bytes
    - Viewed (1)
  7. docs/en/docs/release-notes.md

    ### Docs
    
    * ๐Ÿ“ Add note to docs about Separate Input and Output Schemas with FastAPI version. PR [#10150](https://github.com/tiangolo/fastapi/pull/10150) by [@tiangolo](https://github.com/tiangolo).
    
    ## 0.102.0
    
    ### Features
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
  8. docs/de/docs/async.md

    Dann nimmt es ๐Ÿค– die erste erledigte Aufgabe (sagen wir, unsere โ€žLangsam-Dateiโ€œ ๐Ÿ“) und bearbeitet sie weiter.
    
    Das โ€žWarten auf etwas anderesโ€œ bezieht sich normalerweise auf <abbr title="Input and Output โ€“ Eingabe und Ausgabe">I/O</abbr>-Operationen, die relativ โ€žlangsamโ€œ sind (im Vergleich zur Geschwindigkeit des Prozessors und des Arbeitsspeichers), wie etwa das Warten darauf, dass:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:06:16 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  9. docs/ko/docs/async.md

    "๋‹ค๋ฅธ ๋ฌด์–ธ๊ฐ€๋ฅผ ๊ธฐ๋‹ค๋ฆฌ๋Š” ๊ฒƒ"์€ ์ผ๋ฐ˜์ ์œผ๋กœ ๋น„๊ต์  "๋Š๋ฆฐ" (ํ”„๋กœ์„ธ์„œ์™€ RAM ๋ฉ”๋ชจ๋ฆฌ ์†๋„์— ๋น„ํ•ด) <abbr title="Input and Output">I/O</abbr> ์ž‘์—…์„ ์˜๋ฏธํ•ฉ๋‹ˆ๋‹ค. ์˜ˆ๋ฅผ ๋“ค๋ฉด ๋‹ค์Œ์˜ ๊ฒƒ๋“ค์„ ๊ธฐ๋‹ค๋ฆฌ๋Š” ๊ฒƒ์ž…๋‹ˆ๋‹ค:
    
    * ๋„คํŠธ์›Œํฌ๋ฅผ ํ†ตํ•ด ํด๋ผ์ด์–ธํŠธ๋กœ๋ถ€ํ„ฐ ์ „์†ก๋˜๋Š” ๋ฐ์ดํ„ฐ
    * ๋„คํŠธ์›Œํฌ๋ฅผ ํ†ตํ•ด ํด๋ผ์ด์–ธํŠธ๊ฐ€ ์ˆ˜์‹ ํ• , ๋‹น์‹ ์˜ ํ”„๋กœ๊ทธ๋žจ์œผ๋กœ๋ถ€ํ„ฐ ์ „์†ก๋˜๋Š” ๋ฐ์ดํ„ฐ
    * ์‹œ์Šคํ…œ์ด ์ฝ๊ณ  ํ”„๋กœ๊ทธ๋žจ์— ์ „๋‹ฌํ•  ๋””์Šคํฌ ๋‚ด์˜ ํŒŒ์ผ ๋‚ด์šฉ
    * ๋‹น์‹ ์˜ ํ”„๋กœ๊ทธ๋žจ์ด ์‹œ์Šคํ…œ์— ์ „๋‹ฌํ•˜๋Š”, ๋””์Šคํฌ์— ์ž‘์„ฑ๋  ๋‚ด์šฉ
    * ์›๊ฒฉ API ์ž‘์—…
    * ์™„๋ฃŒ๋  ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์ž‘์—…
    * ๊ฒฐ๊ณผ๋ฅผ ๋ฐ˜ํ™˜ํ•˜๋Š” ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์ฟผ๋ฆฌ
    * ๊ธฐํƒ€
    
    ์ˆ˜ํ–‰ ์‹œ๊ฐ„์˜ ๋Œ€๋ถ€๋ถ„์ด <abbr title="Input and Output">I/O</abbr> ์ž‘์—…์„ ๊ธฐ๋‹ค๋ฆฌ๋Š”๋ฐ์— ์†Œ์š”๋˜๊ธฐ ๋•Œ๋ฌธ์—, "I/O์— ๋ฌถ์ธ" ์ž‘์—…์ด๋ผ๊ณ  ๋ถˆ๋ฆฝ๋‹ˆ๋‹ค.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 26.7K bytes
    - Viewed (0)
  10. docs/es/docs/async.md

    Luego, ๐Ÿค– cogerรก la primera tarea finalizada (digamos, nuestro "archivo lento" ๐Ÿ“) y continuarรก con lo que tenรญa que hacer con esa tarea.
    
    Esa "espera de otra cosa" normalmente se refiere a operaciones <abbr title = "Input and Output, en espaรฑol: Entrada y Salida.">I/O</abbr> que son relativamente "lentas" (en relaciรณn a la velocidad del procesador y memoria RAM), como por ejemplo esperar por:
    
    * los datos de cliente que se envรญan a travรฉs de la red
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 24.9K bytes
    - Viewed (0)
Back to top