Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 180 for uris (0.04 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

        @Rule
        HttpServer server
    
        TestFile toolchainArchive
        URI archiveUri
    
        def setup() {
            toolchainArchive = createZip('toolchain.zip') {
                file 'content.txt'
            }
    
            server.start()
    
            archiveUri = server.uri.resolve("/path/toolchain.zip")
        }
    
        def "can download without authentication"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/sub-applications.md

    # Sub Applications - Mounts
    
    If you need to have two independent FastAPI applications, with their own independent OpenAPI and their own docs UIs, you can have a main app and "mount" one (or more) sub-application(s).
    
    ## Mounting a **FastAPI** application
    
    "Mounting" means adding a completely "independent" application in a specific path, that then takes care of handling everything under that path, with the _path operations_ declared in that sub-application.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

        task echoProperty {
            doLast {
                println "fooD=" + project.findProperty("fooD")
            }
        }
    """
        }
    
        private prepareWrapper(String baseUrl) {
            prepareWrapper(new URI("${baseUrl}/$TEST_DISTRIBUTION_URL"))
        }
    
        @Issue('https://github.com/gradle/gradle-private/issues/1537')
        def "downloads wrapper from http server and caches"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

                    obtainedValue.valueSourceParametersType,
                    obtainedValue.valueSourceParameters
                )
    
            override fun isRemoteScriptUpToDate(uri: URI): Boolean =
                remoteScriptUpToDateChecker.isUpToDate(uri)
        }
    
        private
        val rootDirectory
            get() = startParameter.rootDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. fastapi/applications.py

                    If `openapi_url` is set to `None`, this will be automatically disabled.
    
                    Read more in the
                    [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#docs-urls).
    
                    **Example**
    
                    ```python
                    from fastapi import FastAPI
    
                    app = FastAPI(docs_url="/documentation", redoc_url=None)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

                if (name == null) {
                    return null;
                }
                if (RuleVisitor.SOURCE_URI_TOKEN.equals(name)) {
                    URI uri = scriptSource.getResource().getLocation().getURI();
                    return uri == null ? null : uri.toString();
                }
                if (RuleVisitor.SOURCE_DESC_TOKEN.equals(name)) {
                    return scriptSource.getDisplayName();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. fastapi/openapi/docs.py

        Generate and return the HTML  that loads Swagger UI for the interactive
        API docs (normally served at `/docs`).
    
        You would only call this function yourself if you needed to override some parts,
        for example the URLs to use to load Swagger UI's JavaScript and CSS.
    
        Read more about it in the
        [FastAPI docs for Configure Swagger UI](https://fastapi.tiangolo.com/how-to/configure-swagger-ui/)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperConcurrentDownloadTest.groovy

            server.start()
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2699")
        def "concurrent downloads do not stomp over each other"() {
            given:
            prepareWrapper(server.uri("gradle-bin.zip"))
    
            when:
            def results = [1..4].collect { wrapperExecuter.start() }*.waitForFinish()
    
            then:
            results.findAll { it.output.contains("Downloading") }.size() == 1
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                    return false;
                }
            }
            return true;
        }
    
        public static URI toSecureUrl(URI scriptUri) {
            try {
                return new URI("https", null, scriptUri.getHost(), scriptUri.getPort(), scriptUri.getPath(), scriptUri.getQuery(), scriptUri.getFragment());
            } catch (URISyntaxException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/testFixtures/groovy/org/gradle/tooling/internal/provider/AbstractClassGraphSpec.groovy

            return new TestClassLoader(parent, classpath)
        }
    
        /**
         * Returns an URLClassloader containing URLs with un-encoded whitespaces.
         */
        ClassLoader faultyClassLoader(ClassLoader parent = ClassLoader.systemClassLoader.parent, List<File> classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top