Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 922 for uris (0.06 sec)

  1. pilot/pkg/xds/testdata/benchmarks/gateways-shared.yaml

      - random-3.host.example
      gateways:
      - gateway/gateway
      http:
      - match:
        - uri:
            prefix: "/route-a-{{$i}}"
        - uri:
            prefix: "/route-b-{{$i}}"
        - uri:
            prefix: "/route-c-{{$i}}"
        - uri:
            prefix: "/route-d-{{$i}}"
        - uri:
            prefix: "/route-e-{{$i}}"
        - uri:
            prefix: "/route-f-{{$i}}"
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 01 15:55:05 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

                .toSet()
                .map { getUserInfo(it) }
                .toSet()
        }
    
        private
        fun <T> invokeGitHubApi(uri: String, klass: Class<T>): T {
            val request = HttpRequest.newBuilder()
                .uri(URI(uri))
                .apply {
                    if (githubToken.isPresent) {
                        header("Authorization", "token ${githubToken.get()}")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-expected.xml

        but expect path on SCM and site == "child"
        feature: support "project.directory" property, ressembling future model addition of "directory" element along "artifactId"
      </description>
    
      <!-- 5 inherited urls with ${project.directory} added to parent instead of artifactId -->
      <url>http://www.apache.org/child/</url>
      <scm>
        <connection>scm:my-scm:http://domain.org/base/child</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  4. samples/external/README.md

    # External Services
    
    By default, Istio-enabled services are unable to access services and URLs outside the cluster. Pods use <i>iptables</i> to transparently redirect all outbound traffic to the sidecar proxy, which only handles intra-cluster destinations.
    
    See [the Egress Task](https://istio.io/docs/tasks/traffic-management/egress/) for
    information on configuring Istio to contact external services.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. cluster/images/etcd/migrate/migrate_server.go

    		"--initial-cluster", r.cfg.initialCluster,
    		"--debug",
    		"--data-dir", r.cfg.dataDirectory,
    		"--listen-client-urls", r.cfg.clientListenUrls,
    		"--advertise-client-urls", fmt.Sprintf("http://127.0.0.1:%d", r.cfg.port),
    		"--listen-peer-urls", r.cfg.peerListenUrls,
    		"--initial-advertise-peer-urls", r.cfg.peerAdvertiseUrls,
    	)
    	if r.cfg.etcdServerArgs != "" {
    		extraArgs := strings.Fields(r.cfg.etcdServerArgs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 30 16:29:59 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyDownloadService.java

        private final List<URI> keyServers;
        private final ExternalResourceRepository client;
    
        public PublicKeyDownloadService(List<URI> keyServers, ExternalResourceRepository client) {
            this.keyServers = keyServers;
            this.client = client;
        }
    
        @Override
        public void findByLongId(long keyId, PublicKeyResultBuilder builder) {
            List<URI> servers = new ArrayList<>(keyServers);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:49:35 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

                .assertHasCause("Could not parse Ivy file ${module.ivy.uri}")
                .assertHasCause("invalid version null")
        }
    
        def "reports local Ivy descriptor that cannot be parsed"() {
            given:
            buildFile << """
    repositories.clear()
    repositories {
        ivy {
            url "${ivyRepo.uri}"
        }
    }
    dependencies {
        compile 'group:projectA:1.2'
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

            def downloadBMetadata = events.operation("Download ${server.uri}${projectB.pomPath}")
            def downloadBArtifact = events.operation("Download ${server.uri}${projectB.artifactPath}")
            def downloadCRootMetadata = events.operation("Download ${server.uri}/repo/group/projectC/maven-metadata.xml")
            def downloadCPom = events.operation("Download ${server.uri}${projectC.pomPath}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/readOnlyManagedProperty/groovy/buildSrc/src/main/java/Download.java

    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.TaskAction;
    
    import java.net.URI;
    
    // tag::download[]
    public abstract class Download extends DefaultTask {
        @Input
        public abstract Property<String> getLocation();
    
        @Internal
        public Provider<URI> getUri() {
            return getLocation().map(l -> URI.create("https://" + l));
        }
    
        @TaskAction
        void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 682 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/buildService/groovy/buildSrc/src/main/java/Download.java

        @TaskAction
        public void download() {
            // Use the server to download a file
            WebServer server = getServer().get();
            URI uri = server.getUri().resolve("somefile.zip");
            System.out.println(String.format("Downloading %s", uri));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 776 bytes
    - Viewed (0)
Back to top