Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/DefaultGitVersionControlSpecSpec.groovy

        def 'handles file urls'() {
            given:
            spec.url = new URI("file:/tmp/repos/foo")
    
            expect:
            spec.repoName == 'foo'
            spec.uniqueId == 'git-repo:file:/tmp/repos/foo'
            spec.displayName == 'Git repository at file:/tmp/repos/foo'
        }
    
        def 'handles urls which do not end in .git'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3RegionalResourceTest.groovy

        def "should determine the aws region from virtual hosted urls"() {
            expect:
            S3RegionalResource regionalResource = new S3RegionalResource(uri)
            regionalResource.region == expectedRegion
            regionalResource.bucketName == expectedBucket
            regionalResource.key == expectedKey
    
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. docs/en/docs/how-to/conditional-openapi.md

    <div class="termy">
    
    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Then if you go to the URLs at `/openapi.json`, `/docs`, or `/redoc` you will just get a `404 Not Found` error like:
    
    ```JSON
    {
        "detail": "Not Found"
    }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/externalcontrolplane-missing-urls.yaml

    Michael Weiner <******@****.***> 1697542898 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    	return rule, matchingRDigests, matchingNDigests, skippingRDigests, skippingNDigests
    }
    
    func cross(uis []user.Info, ris []*request.RequestInfo) []RequestDigest {
    	ans := make([]RequestDigest, 0, len(uis)*len(ris))
    	for _, ui := range uis {
    		for _, ri := range ris {
    			ans = append(ans, RequestDigest{RequestInfo: ri, User: ui})
    		}
    	}
    	return ans
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestPageGeneratorTest.groovy

            when:
            def urls = new TestPageGenerator().createGitHubLinks(['123456'])
    
            then:
            urls[0].url == 'https://github.com/gradle/gradle/commit/123456'
        }
    
        def "transforms two commit ids to urls"() {
            when:
            def urls = new TestPageGenerator().createGitHubLinks(['123456', 'abcdefg'])
    
            then:
            urls[0].url == 'https://github.com/gradle/gradle/commit/123456'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/HttpUrlJvmTest.kt

      }
    
      @Test
      fun fromUri() {
        val uri = URI("http://username:password@host/path?query#fragment")
        val httpUrl = uri.toHttpUrlOrNull()
        assertThat(httpUrl.toString())
          .isEqualTo("http://username:password@host/path?query#fragment")
      }
    
      @Test
      fun fromUriUnsupportedScheme() {
        val uri = URI("mailto:******@****.***")
        assertThat(uri.toHttpUrlOrNull()).isNull()
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/verifier/HttpRedirectVerifier.java

    package org.gradle.internal.verifier;
    
    import java.net.URI;
    import java.util.Collection;
    
    /**
     * Use {@link HttpRedirectVerifierFactory#create} to instantiate an instance of this.
     */
    @FunctionalInterface
    public interface HttpRedirectVerifier {
        /**
         * Perform verification on the URI's in an HTTP request's redirect chain.
         */
        void validateRedirects(Collection<URI> redirectLocations);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1021 bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    retry to other localities. nullable: true type: boolean type: object rewrite: description: Rewrite HTTP URIs and Authority headers. properties: authority: description: rewrite the Authority/Host header with this value. type: string uri: description: rewrite the path (or the prefix) portion of the URI with this value. type: string uriRegexRewrite: description: rewrite the path portion of the URI with the specified regex. properties: match: description: RE2 style regex-based match (https://github.c...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. docs/de/docs/how-to/general.md

    ## Benutzerdefinierte OpenAPI-URL
    
    Um die OpenAPI-URL anzupassen (oder zu entfernen), lesen Sie die Dokumentation unter [Tutorial – Metadaten und URLs der Dokumentationen](../tutorial/metadata.md#openapi-url){.internal-link target=_blank}.
    
    ## URLs der OpenAPI-Dokumentationen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top