Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 438 for uris (0.04 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. releasenotes/notes/40997.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 16 22:30:16 UTC 2022
    - 206 bytes
    - Viewed (0)
  6. src/html/template/url.go

    	b.Grow(len(s) + 16)
    	written := 0
    	// The byte loop below assumes that all URLs use UTF-8 as the
    	// content-encoding. This is similar to the URI to IRI encoding scheme
    	// defined in section 3.1 of  RFC 3987, and behaves the same as the
    	// EcmaScript builtin encodeURIComponent.
    	// It should not cause any misencoding of URLs in pages with
    	// Content-type: text/html;charset=UTF-8.
    	for i, n := 0, len(s); i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  7. 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)
  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. pkg/apis/rbac/helpers_test.go

    		Rules: []rbac.PolicyRule{
    			rbac.NewRule("verb").Groups("g").Resources("foo").RuleOrDie(),
    			rbac.NewRule("verb").URLs("/foo").RuleOrDie(),
    		},
    	}
    	clusterRole := &rbac.ClusterRole{
    		Rules: []rbac.PolicyRule{
    			rbac.NewRule("verb").Groups("g").Resources("foo").RuleOrDie(),
    			rbac.NewRule("verb").URLs("/foo").RuleOrDie(),
    		},
    	}
    
    	for _, internalObj := range []runtime.Object{&rb, &rbcr, &crb, role, clusterRole} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9.2K 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