- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 35 for rglob (0.02 seconds)
-
scripts/translate.py
Path("docs/en/docs/how-to"), ] first_parent = Path("docs/en/docs") yield from first_parent.glob("*.md") for dir_path in first_dirs: yield from dir_path.rglob("*.md") first_dirs_str = tuple(str(d) for d in first_dirs) for path in Path("docs/en/docs").rglob("*.md"): if str(path).startswith(first_dirs_str): continue if path.parent == first_parent:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:37:41 GMT 2026 - 15.8K bytes - Click Count (0) -
scripts/translation_fixer.py
lang_path_root / "about", lang_path_root / "how-to", ] first_parent = lang_path_root yield from first_parent.glob("*.md") for dir_path in first_dirs: yield from dir_path.rglob("*.md") first_dirs_str = tuple(str(d) for d in first_dirs) for path in lang_path_root.rglob("*.md"): if str(path).startswith(first_dirs_str): continue if path.parent == first_parent:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 10 21:48:08 GMT 2026 - 3.2K bytes - Click Count (0) -
scripts/docs.py
@app.command() def generate_docs_src_versions() -> None: """ Generate Python version-specific files for all .py files in docs_src. """ docs_src_path = Path("docs_src") for py_file in sorted(docs_src_path.rglob("*.py")): generate_docs_src_versions_for_file(py_file) @app.command() def copy_py39_to_py310() -> None: """ For each docs_src file/directory with a _py39 label that has no _py310
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:46:10 GMT 2026 - 25.4K bytes - Click Count (0) -
.github/labeler.yml
docs: - all: - changed-files: - any-glob-to-any-file: - docs/en/docs/** - docs_src/** - all-globs-to-all-files: - '!fastapi/**' - '!pyproject.toml' - '!docs/en/data/sponsors.yml' - '!docs/en/overrides/main.html' lang-all: - all: - changed-files: - any-glob-to-any-file: - docs/*/docs/** - all-globs-to-all-files:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 21 16:26:38 GMT 2026 - 888 bytes - Click Count (0) -
src/main/resources/log4j2.xml
</Policies> <DefaultRolloverStrategy fileIndex="max" min="1" max="${backup.max.history}" compressionLevel="9"> <Delete basePath="${log.file.basedir}"> <IfFileName glob="${domain.name}*.log.gz" /> <IfLastModified age="P${backup.max.age}D" /> </Delete> </DefaultRolloverStrategy> </RollingFile> <RollingFile name="AuditFile" fileName="${log.file.basedir}/audit.log"
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.2K bytes - Click Count (0) -
.github/workflows/test.yml
with: python-version: ${{ matrix.python-version }} - name: Setup uv uses: astral-sh/setup-uv@v7 with: enable-cache: true cache-dependency-glob: | pyproject.toml uv.lock - name: Install Dependencies run: uv sync --no-dev --group tests --extra all - name: Ensure that we have the lowest supported Pydantic versionCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 12:36:49 GMT 2026 - 6.4K bytes - Click Count (0) -
.github/workflows/translate.yml
uses: actions/setup-python@v6 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 --no-dev --group github-actions --group translations - name: Export Language CodesCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Mar 18 15:36:56 GMT 2026 - 4K bytes - Click Count (0) -
.github/workflows/build-docs.yml
with: 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 docs extras run: uv sync --locked --no-dev --group docs - name: Export Language Codes id: show-langs run: |Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 14 15:01:34 GMT 2026 - 3.3K bytes - Click Count (0) -
.github/workflows/topic-repos.yml
with: 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: Update Topic ReposCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 10 22:02:57 GMT 2026 - 969 bytes - Click Count (0) -
.github/workflows/label-approved.yml
uses: actions/setup-python@v6 with: 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: Label ApprovedCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 10 22:02:57 GMT 2026 - 1.1K bytes - Click Count (0)