Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 123 for uris (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelCrossVersionSpec.groovy

        String localMaven
    
        def setup() {
            def mavenRepo = new MavenFileRepository(file("maven-repo"))
            mavenRepo.module("org.example", "example-lib", "1.0").publish()
            localMaven = "maven { url '${mavenRepo.uri}' }"
        }
    
        // TODO (donat) add more coverage after all classpath entry types are exposed via the TAPI
    
        def "respects manipulation done in the eclipse.classpath.whenMerged closure"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types.go

    	// +listType=atomic
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    	// NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full,
    	// final step in the path.  "*" means all.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r67/ToolingApiEclipseModelUnresolvedDependenciesCrossVersionSpec.groovy

            buildFile << """
                plugins {
                    id 'java-library'
                }
    
                repositories {
                    maven {
                        url '${mavenRepo.uri}'
                    }
                }
                dependencies {
                    implementation 'org.example:lib:1.0'
                    implementation 'org.example:does not exist:1.0'
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top