Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for with_name (0.06 sec)

  1. scripts/docs.py

            )
            content_format = format_result.stdout.decode("utf-8")
            if content_format in previous_content:
                continue
            previous_content.add(content_format)
            version_file = file_path.with_name(
                file_path.name.replace(".py", f"_{target_version}.py")
            )
            logging.info(f"Writing to {version_file}")
            version_file.write_text(content_format, encoding="utf-8")
    
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 08 11:01:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. docs/en/mkdocs.yml

    INHERIT: ../en/mkdocs.maybe-insiders.yml
    site_name: FastAPI
    site_description: FastAPI framework, high performance, easy to learn, fast to code, ready for production
    site_url: https://fastapi.tiangolo.com/
    theme:
      name: material
      custom_dir: ../en/overrides
      palette:
      - media: "(prefers-color-scheme)"
        toggle:
          icon: material/lightbulb-auto
          name: Switch to light mode
      - media: '(prefers-color-scheme: light)'
        scheme: default
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 22 20:28:02 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top