Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 221 - 230 of 1,269 for Tool (0.04 seconds)

  1. CHANGELOG/CHANGELOG-1.6.md

      * Marking a StorageClass as default makes it so that even a PersistentVolumeClaim without a StorageClass specified will trigger dynamic provisioning (instead of binding to an existing pool of PVs).
      * If you depend on the old behavior of volumes binding to existing pool of PersistentVolume objects then modify the StorageClass object and set `storageclass.beta.kubernetes.io/is-default-class` to `false`.
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 304K bytes
    - Click Count (0)
  2. CHANGELOG/CHANGELOG-1.20.md

      - A namespaced object with an ownerReference referencing a uid of a namespaced kind which does not exist in the same namespace is now consistently treated...
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Jan 19 21:05:45 GMT 2022
    - 409K bytes
    - Click Count (0)
  3. docs/de/docs/deployment/concepts.md

    ### Beispieltools zum automatischen Neustart { #example-tools-to-restart-automatically }
    
    In den meisten Fällen wird dasselbe Tool, das zum **Ausführen des Programms beim Hochfahren** verwendet wird, auch für automatische **Neustarts** verwendet.
    
    Dies könnte zum Beispiel erledigt werden durch:
    
    * Docker
    * Kubernetes
    * Docker Compose
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  4. docs/de/docs/tutorial/bigger-applications.md

    Da Ihr FastAPI-`app`-Objekt in `app/main.py` liegt, können Sie den `entrypoint` in Ihrer `pyproject.toml`-Datei so konfigurieren:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    das entspricht einem Import wie:
    
    ```python
    from app.main import app
    ```
    
    Auf diese Weise weiß der `fastapi`-Befehl, wo er Ihre App findet.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 21.9K bytes
    - Click Count (0)
  5. docs/uk/docs/tutorial/bigger-applications.md

    Оскільки ваш об'єкт FastAPI `app` знаходиться в `app/main.py`, ви можете налаштувати `entrypoint` у файлі `pyproject.toml` так:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    це еквівалентно імпорту:
    
    ```python
    from app.main import app
    ```
    
    Таким чином команда `fastapi` знатиме, де знайти ваш застосунок.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 27.4K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/bigger-applications.md

    ///
    
    ## 在 `pyproject.toml` 設定 `entrypoint` { #configure-the-entrypoint-in-pyproject-toml }
    
    因為你的 FastAPI `app` 物件位在 `app/main.py`,你可以在 `pyproject.toml` 檔案中這樣設定 `entrypoint`:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    這等同於這樣匯入:
    
    ```python
    from app.main import app
    ```
    
    如此一來 `fastapi` 指令就會知道去哪裡找到你的 app。
    
    /// Note | 注意
    
    你也可以把路徑直接傳給指令,例如:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  7. docs/fr/docs/tutorial/bigger-applications.md

    Comme votre objet FastAPI `app` vit dans `app/main.py`, vous pouvez configurer l'`entrypoint` dans votre fichier `pyproject.toml` comme ceci :
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    ce qui équivaut à importer ainsi :
    
    ```python
    from app.main import app
    ```
    
    De cette façon, la commande `fastapi` saura où trouver votre app.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  8. docs/es/docs/tutorial/bigger-applications.md

    Como tu objeto `app` de FastAPI vive en `app/main.py`, puedes configurar el `entrypoint` en tu archivo `pyproject.toml` así:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    que es equivalente a importar como:
    
    ```python
    from app.main import app
    ```
    
    De esa manera el comando `fastapi` sabrá dónde encontrar tu app.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 20.2K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/bigger-applications.md

    Como seu objeto `app` do FastAPI fica em `app/main.py`, você pode configurar o `entrypoint` no seu arquivo `pyproject.toml` assim:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    isso é equivalente a importar como:
    
    ```python
    from app.main import app
    ```
    
    Dessa forma o comando `fastapi` saberá onde encontrar sua aplicação.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  10. docs/ko/docs/tutorial/bigger-applications.md

    ///
    
    ## `pyproject.toml`에서 `entrypoint` 구성하기 { #configure-the-entrypoint-in-pyproject-toml }
    
    FastAPI `app` 객체가 `app/main.py`에 있으므로 `pyproject.toml` 파일에서 `entrypoint`를 다음과 같이 구성할 수 있습니다:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    이는 다음과 같이 import하는 것과 동일합니다:
    
    ```python
    from app.main import app
    ```
    
    이렇게 하면 `fastapi` 명령어가 여러분의 앱이 어디에 있는지 알 수 있습니다.
    
    /// Note | 참고
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 21.5K bytes
    - Click Count (0)
Back to Top