Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 922 for uris (0.05 sec)

  1. cluster/images/etcd/migrate/options.go

    	flags.StringVar(&opts.peerListenUrls, "listen-peer-urls", "",
    		"etcd --listen-peer-urls flag. If unset, fallbacks to LISTEN_PEER_URLS env and if unset defaults to http://localhost:<peer-port>.")
    	flags.StringVar(&opts.peerAdvertiseUrls, "initial-advertise-peer-urls", "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/compression/URIBuilder.java

     */
    
    package org.gradle.api.internal.file.archive.compression;
    
    import org.gradle.util.internal.GUtil;
    
    import java.net.URI;
    
    public class URIBuilder {
        private final URI uri;
        private String schemePrefix = "";
    
        public URIBuilder(URI uri) {
            this.uri = uri;
        }
    
        public URIBuilder schemePrefix(String schemePrefix) {
            assert GUtil.isTrue(schemePrefix);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. releasenotes/notes/wasm-pull-policy-http.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 01 13:37:10 UTC 2022
    - 213 bytes
    - Viewed (0)
  4. ci/official/utilities/cleanup_summary.sh

      # Find any "Streaming build results to" line, then print the last word in it,
      # and don't print duplicates
      awk '/Streaming build results to/ {print $NF}' "$TFCI_OUTPUT_DIR/script.log" | uniq
    }
    
    # Print out any ResultStore URLs for Bazel invocations' results.
    # Each failed target there will have its own representation, making failures
    # easier to find and read.
    function resultstore_extract {
      local \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * influence the position of your URLs in a search engine's result pages.
         * Search engines may use this information when selecting between URLs on
         * the same site, so you can use this tag to increase the likelihood that
         * your most important pages are present in a search index.
         *
         * Also, please note that assigning a high priority to all of the URLs on
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyDownloadBuildOperationsIntegrationTest.groovy

            downloadOps[0].result.bytesRead == 0
            downloadOps[1].details.location == m.rootMetaData.uri.toString()
            downloadOps[1].result.bytesRead == 0
            downloadOps[2].details.location == m.pom.uri.toString()
            downloadOps[2].result.bytesRead == m.pom.file.length()
            downloadOps[3].details.location == m.artifact.uri.toString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpResource.java

            this.clientFactory = clientFactory;
            this.metaData = metaData;
            this.uri = uri;
            this.credentials = credentials;
        }
    
        @Override
        public InputStream openStream() {
            client = clientFactory.createSftpClient(uri, credentials);
            try {
                return client.getSftpClient().get(uri.getPath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/download/internal/DefaultFileDownloadOperationDescriptor.java

            super(name, name, parent);
            this.uri = uri;
        }
    
        @Override
        public URI getUri() {
            return uri;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/virtualservice_overlappingmatches.yaml

      http:
      - name: "send product to sample.foo"
        match:
        - uri:
            prefix: "/api/v1/product"
        - uri:
            prefix: "/api/v1/products"
          method:
            exact: GET
        route:
        - destination:
            host: sample.foo.svc.cluster.local
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: uri-with-prefix-exact 
    spec:
      hosts:
      - sample.baz.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java

                        logger.debug("Storing child urls: {}", resultData.getChildUrlSet());
                    }
                    final int depth = urlQueue.getDepth() == null ? 1 : urlQueue.getDepth() + 1;
                    if (crawlerContext.getMaxDepth() < 0 || depth <= crawlerContext.getMaxDepth()) {
                        // add and filter urls
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top