Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 125 for toXml (0.02 seconds)

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

              python-version-file: ".python-version"
          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              enable-cache: true
              cache-dependency-glob: |
                pyproject.toml
                uv.lock
          - name: Install GitHub Actions dependencies
            run: uv sync --locked --no-dev --group github-actions
          - name: Deploy Docs Status Pending
            run: uv run ./scripts/deploy_docs_status.py
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Mar 03 00:12:02 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  2. docs/ko/docs/tutorial/bigger-applications.md

    나머지와 독립적으로 격리해 "mount"할 수 없으므로, *path operations*는 직접 포함되는 것이 아니라 "clone"(재생성)됩니다.
    
    ///
    
    ## `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
    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)
  3. build-logic-settings/settings.gradle.kts

    dependencyResolutionManagement {
        repositories {
            mavenCentral()
            gradlePluginPortal()
        }
        versionCatalogs {
            create("buildLibs") {
                from(files("../gradle/dependency-management/build.versions.toml"))
                version("errorProne", "stub") // not used in this project
            }
        }
    }
    
    pluginManagement {
        repositories {
            maven {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:57 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  4. docs/en/docs/management-tasks.md

    * If the PR is for a direct dependency, so, Dependabot is modifying `pyproject.toml` in the main dependencies, **don't merge it**. 😱 Let me check it first. There's a good chance that some additional tweaks or updates are needed.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:59:26 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  5. docs/zh-hant/docs/tutorial/bigger-applications.md

    這是因為我們要把它們的路徑操作包含進 OpenAPI 結構與使用者介面中。
    
    由於無法將它們隔離並獨立「掛載」,所以這些路徑操作會被「複製」(重新建立),而不是直接包含進來。
    
    ///
    
    ## 在 `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
    ```
    
    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)
  6. .github/workflows/pre-commit.yml

            with:
              python-version-file: ".python-version"
          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              cache-dependency-glob: |
                pyproject.toml
                uv.lock
          - name: Install Dependencies
            run: uv sync --locked --extra all
          - name: Run prek - pre-commit
            id: precommit
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:02:57 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  7. docs/en/docs/editor-support.md

    ## Features { #features }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  8. docs/tr/docs/editor-support.md

    Varsayılan olarak, eklenti çalışma alanınızda `FastAPI()` örnekleyen dosyaları tarayarak FastAPI uygulamalarını otomatik olarak keşfeder. Proje yapınız nedeniyle otomatik algılama çalışmazsa, `pyproject.toml` içindeki `[tool.fastapi]` ile veya VS Code ayarı `fastapi.entryPoint` üzerinden modül gösterimiyle (ör. `myapp.main:app`) bir entrypoint belirtebilirsiniz.
    
    ## Özellikler { #features }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  9. docs/pt/docs/editor-support.md

    ## Funcionalidades { #features }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  10. .pre-commit-config.yaml

    repos:
      - repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v6.0.0
        hooks:
          - id: check-added-large-files
            args: ['--maxkb=750']
            exclude: ^uv.lock$
          - id: check-toml
          - id: check-yaml
            args:
            - --unsafe
          - id: end-of-file-fixer
          - id: trailing-whitespace
    
      - repo: local
        hooks:
          - id: local-ruff-check
            name: ruff check
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:06:36 GMT 2026
    - 2.6K bytes
    - Click Count (1)
Back to Top