Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for exits (0.02 sec)

  1. scripts/translate.py

            else:
                raise typer.Exit(code=1)
        print(json.dumps(default_commands))
    
    
    @app.command()
    def list_removable(language: str) -> list[Path]:
        removable_paths: list[Path] = []
        lang_paths = Path(f"docs/{language}").rglob("*.md")
        for path in lang_paths:
            en_path = generate_en_path(lang=language, path=path)
            if not en_path.exists():
                removable_paths.append(path)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  2. docs/zh-hant/llm-prompt.md

    2) Many Traditional Chinese docs currently omit titles in `///` blocks; that is OK.
    3) If a generic title is present, prefer these canonical titles:
    
    - `/// note | 注意`
    
    Notes:
    
    - `details` blocks exist; keep `/// details` as-is and translate only the title after `|`.
    - Example canonical titles used in existing docs:
      - `/// details | 上述指令的含義`
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:49:46 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_sql_databases/test_tutorial002.py

            assert response.status_code == 404, response.text
    
            # Delete a hero that does not exist
            response = client.delete(f"/heroes/{hero_id}")
            assert response.status_code == 404, response.text
            assert response.json() == snapshot({"detail": "Hero not found"})
    
            # Update a hero that does not exist
            response = client.patch(f"/heroes/{hero_id}", json={"name": "Dog Pond"})
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

        * New docs: [Dependencies with `yield` - Early exit and `scope`](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-with-yield/#early-exit-and-scope).
    
    ### Internal
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
Back to top