Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 161 - 170 of 192 for kuuden (0.07 seconds)

  1. docs/en/data/translation_reviewers.yml

      count: 48
      avatarUrl: https://avatars.githubusercontent.com/u/59285379?v=4
      url: https://github.com/Laineyzhang55
    Kludex:
      login: Kludex
      count: 47
      avatarUrl: https://avatars.githubusercontent.com/u/7353520?u=df8a3f06ba8f55ae1967a3e2d5ed882903a4e330&v=4
      url: https://github.com/Kludex
    komtaki:
      login: komtaki
      count: 45
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 07:31:54 GMT 2026
    - 66K bytes
    - Click Count (0)
  2. docs/de/docs/tutorial/first-steps.md

    ```python
    from main import app
    ```
    
    Wenn Ihr Code so strukturiert wäre:
    
    ```
    .
    ├── backend
    │   ├── main.py
    │   ├── __init__.py
    ```
    
    Dann würden Sie den `entrypoint` so setzen:
    
    ```toml
    [tool.fastapi]
    entrypoint = "backend.main:app"
    ```
    
    was äquivalent wäre zu:
    
    ```python
    from backend.main import app
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 14.9K bytes
    - Click Count (0)
  3. docs/ja/docs/tutorial/request-files.md

    # リクエストファイル { #request-files }
    
    `File` を使って、クライアントがアップロードするファイルを定義できます。
    
    /// info | 情報
    
    アップロードされたファイルを受け取るには、まず [`python-multipart`](https://github.com/Kludex/python-multipart) をインストールします。
    
    [仮想環境](../virtual-environments.md)を作成して有効化し、次のようにインストールしてください:
    
    ```console
    $ pip install python-multipart
    ```
    
    アップロードされたファイルは「form data」として送信されるためです。
    
    ///
    
    ## `File` をインポート { #import-file }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/sql-databases.md

    /// tip | Consejo
    
    Tener el modelo de retorno asegurando que un valor siempre esté disponible y siempre sea `int` (no `None`) es muy útil para los clientes de la API, pueden escribir código mucho más simple teniendo esta certeza.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  5. CONTRIBUTING.md

        [following API review practices](https://github.com/tensorflow/community/blob/master/governance/api-reviews.md).
    *   When you contribute a new feature to TensorFlow, the maintenance burden is
        (by default) transferred to the TensorFlow team. This means that the benefit
        of the contribution must be compared against the cost of maintaining the
        feature.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Jan 11 04:47:59 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  6. docs/uk/docs/index.md

    * [`jinja2`](https://jinja.palletsprojects.com) - потрібно, якщо ви хочете використовувати конфігурацію шаблонів за замовчуванням.
    * [`python-multipart`](https://github.com/Kludex/python-multipart) - потрібно, якщо ви хочете підтримувати форми з <dfn title="перетворення строки, що надходить із HTTP-запиту, у дані Python">«парсингом»</dfn> через `request.form()`.
    
    Використовується FastAPI:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  7. fastapi/routing.py

        This is a copy of the Starlette _DefaultLifespan class that was removed
        in Starlette. FastAPI keeps it to maintain backward compatibility with
        on_startup and on_shutdown event handlers.
    
        Ref: https://github.com/Kludex/starlette/pull/3117
        """
    
        def __init__(self, router: "APIRouter") -> None:
            self._router = router
    
        async def __aenter__(self) -> None:
            await self._router._startup()
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/query-params-str-validations.md

    FastAPI’nin önceki sürümlerinde ( <dfn title="2023-03’ten önce">0.95.0</dfn> öncesi) `Query`’yi `Annotated` içine koymak yerine, parametrenizin varsayılan değeri olarak kullanmanız gerekiyordu. Etrafta bu şekilde yazılmış kod görme ihtimaliniz yüksek; bu yüzden açıklayalım.
    
    /// tip | İpucu
    
    Yeni kodlarda ve mümkün olduğunda, yukarıda anlatıldığı gibi `Annotated` kullanın. Birden fazla avantajı vardır (aşağıda anlatılıyor) ve dezavantajı yoktur. 🍰
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 17.3K bytes
    - Click Count (0)
  9. docs/de/docs/index.md

    <small>* Schätzung basierend auf Tests, die von einem internen Entwicklungsteam durchgeführt wurden, das Produktionsanwendungen erstellt.</small>
    
    ## Sponsoren { #sponsors }
    
    <!-- sponsors -->
    
    ### Keystone-Sponsor { #keystone-sponsor }
    
    {% for sponsor in sponsors.keystone -%}
    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)
  10. docs/ja/docs/tutorial/security/first-steps.md

    ## `main.py`を作成 { #create-main-py }
    
    `main.py`に、下記の例をコピーします:
    
    {* ../../docs_src/security/tutorial001_an_py310.py *}
    
    ## 実行 { #run-it }
    
    /// info | 情報
    
    [`python-multipart`](https://github.com/Kludex/python-multipart) パッケージは、`pip install "fastapi[standard]"` コマンドを実行すると **FastAPI** と一緒に自動的にインストールされます。
    
    しかし、`pip install fastapi` コマンドを使用する場合、`python-multipart` パッケージはデフォルトでは含まれません。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 10.8K bytes
    - Click Count (0)
Back to Top