Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 922 for uris (0.14 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenRemoteResolveIntegrationTest.groovy

                .assertHasCause("""Could not find group:projectA:1.2.
    Searched in the following locations:
      - ${moduleA.ivy.uri}
    Required by:
        project :""")
                .assertHasCause("""Could not find group:projectB:1.0-milestone-9.
    Searched in the following locations:
      - ${moduleB.ivy.uri}
    Required by:
        project :""")
            failure.assertHasResolutions(REPOSITORY_HINT,
                STACKTRACE_MESSAGE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. samples/bookinfo/networking/bookinfo-gateway.yaml

    metadata:
      name: bookinfo
    spec:
      hosts:
      - "*"
      gateways:
      - bookinfo-gateway
      http:
      - match:
        - uri:
            exact: /productpage
        - uri:
            prefix: /static
        - uri:
            exact: /login
        - uri:
            exact: /logout
        - uri:
            prefix: /api/v1/products
        route:
        - destination:
            host: productpage
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:54 UTC 2023
    - 873 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/http.yaml.golden

      hosts:
      - '*'
      http:
      - match:
        - uri:
            prefix: /prefix-to-be-removed
        name: default.rewrite.1
        rewrite:
          uri: /
        route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
      - match:
        - uri:
            prefix: /prefix-original
        name: default.rewrite.0
        rewrite:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/BadPomFileResolveIntegrationTest.groovy

                .assertHasCause("Could not parse POM ${parent.pom.uri}")
                .assertHasCause("Missing required attribute: groupId")
        }
    
        def "reports failure to parse POM due to missing dependency #attribute attribute"() {
            given:
            buildFile << """
    repositories {
        maven {
            url "${mavenRepo.uri}"
        }
    }
    configurations { compile }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:31:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/custom-docs-ui-assets.md

    This could be useful if for example you live in a country that restricts some URLs.
    
    ### Disable the automatic docs
    
    The first step is to disable the automatic docs, as by default, those use the default CDN.
    
    To disable them, set their URLs to `None` when creating your `FastAPI` app:
    
    ```Python hl_lines="8"
    {!../../../docs_src/custom_docs_ui/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractModuleDependencyResolveTest.groovy

                if (gradleMetadata) {
                    return ivyModule.moduleMetadata.uri
                }
                return ivyModule.ivy.uri
            } else {
                def mavenModule = mavenHttpRepo.module(group, module, version)
                if (gradleMetadata) {
                    return mavenModule.moduleMetadata.uri
                }
                return mavenModule.pom.uri
            }
        }
    
        private String getMavenRepository() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 16:23:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/compression/AbstractArchiver.java

    import java.io.File;
    import java.io.InputStream;
    import java.net.URI;
    
    abstract class AbstractArchiver implements CompressedReadableResource {
        protected final ReadableResourceInternal resource;
        protected final URI uri;
    
        public AbstractArchiver(ReadableResourceInternal resource) {
            assert resource != null;
            this.uri = new URIBuilder(resource.getURI()).schemePrefix(getSchemePrefix()).build();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    		server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    			// Check request headers.
    			if got, want := r.Header.Get("X-Forwarded-Uri"), item.forwardedURI; got != want {
    				t.Errorf("%v: X-Forwarded-Uri = %q, want %q", name, got, want)
    			}
    			if len(item.transport.Host) == 0 {
    				_, present := r.Header["X-Forwarded-Host"]
    				if present {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBrokenRemoteResolveIntegrationTest.groovy

    Searched in the following locations:
      - ${module.pom.uri}
    Required by:
        project :""")
    
            when:
            module.pom.expectGetMissing()
    
            then:
            fails("showMissing")
            failure.assertResolutionFailure(':missing')
                .assertHasCause("""Could not find group:projectA:1.2.
    Searched in the following locations:
      - ${module.pom.uri}
    Required by:
        project :""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceLocation.java

        /**
         * Returns the URI for this resource. Not all resources have a URI.
         * Note that the URI returned by this method may not necessarily have the same contents as the resource. For example, the file may be compressed,
         * contain text encoded with a different encoding or represent a directory.
         *
         * @return The URI for this resource. Returns null if this resource does not have a URI.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top