Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for with_name (0.04 seconds)

  1. scripts/docs.py

                for v in target_versions:
                    if base_name.endswith(f"_{v}"):
                        base_name = base_name[: -len(f"_{v}")]
                        break
                version_file = file_path.with_name(f"{base_name}_{target_version}.py")
            logging.info(f"Writing to {version_file}")
            version_file.write_text(content_format, encoding="utf-8")
    
    
    @app.command()
    def generate_docs_src_versions() -> None:
    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)
  2. build-tools-internal/src/test/java/org/elasticsearch/gradle/AbstractDistributionDownloadPluginTests.java

            archivesProject = ProjectBuilder.builder().withParent(distributionProject).withName("archives").build();
            packagesProject = ProjectBuilder.builder().withParent(distributionProject).withName("packages").build();
            bwcProject = ProjectBuilder.builder().withParent(distributionProject).withName("bwc").build();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 4.7K bytes
    - Click Count (0)
  3. build-tools-internal/src/test/java/org/elasticsearch/gradle/DistributionDownloadPluginTests.java

            );
        }
    
        public void testLocalCurrentVersionIntegTestZip() {
            Project project = createProject(BWC_MINOR);
            Project archiveProject = ProjectBuilder.builder().withParent(archivesProject).withName("integ-test-zip").build();
            archiveProject.getConfigurations().create("default");
            archiveProject.getArtifacts().add("default", new File("doesnotmatter"));
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 6.4K bytes
    - Click Count (0)
  4. mkdocs.yml

    site_name: OkHttp
    site_url: https://square.github.io/okhttp/
    repo_name: OkHttp
    repo_url: https://github.com/square/okhttp
    site_description: "Square’s meticulous HTTP client for the JVM, Android, and GraalVM"
    site_author: Square, Inc.
    remote_branch: gh-pages
    edit_uri: ""
    
    copyright: 'Copyright © 2022 Block, Inc.'
    
    theme:
      name: 'material'
      favicon: assets/images/icon-square.png
      logo: assets/images/icon-square.png
      palette:
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Nov 21 07:19:31 GMT 2024
    - 3.9K bytes
    - Click Count (0)
  5. docs/en/mkdocs.yml

    INHERIT: ../en/mkdocs.env.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
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 9.9K bytes
    - Click Count (0)
Back to Top