Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 437 for uris (0.04 sec)

  1. cluster/gce/manifests/etcd.manifest

    /usr/local/bin/migrate-if-needed.sh 1>>/var/log/etcd{{ suffix }}.log 2>&1; fi; exec /usr/local/bin/etcd --name etcd-{{ hostname }} --listen-peer-urls {{ etcd_protocol }}://{{ host_ip }}:{{ server_port }} --initial-advertise-peer-urls {{ etcd_protocol }}://{{ hostname }}:{{ server_port }} --advertise-client-urls {{ etcd_apiserver_protocol }}://127.0.0.1:{{ port }} --listen-client-urls {{ etcd_apiserver_protocol }}://{{ listen_client_ip }}:{{ port }} {{ quota_bytes }} --data-dir /var/etcd/data{{ suffix }} --initial-cluster-state...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/snippets/plugins/buildService/kotlin/buildSrc/src/main/java/WebServer.java

            // Use the parameters
            int port = getParameters().getPort().get();
            uri = new URI(String.format("https://localhost:%d/", port));
    
            // Start the server ...
    
            System.out.println(String.format("Server is running at %s", uri));
        }
    
        // A public method for tasks to use
        public URI getUri() {
            return uri;
        }
    
        @Override
        public void close() {
            // Stop the server ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/buildServiceUsingServiceReference/kotlin/buildSrc/src/main/java/WebServer.java

            // Use the parameters
            int port = getParameters().getPort().get();
            uri = new URI(String.format("https://localhost:%d/", port));
    
            // Start the server ...
    
            System.out.println(String.format("Server is running at %s", uri));
        }
    
        // A public method for tasks to use
        public URI getUri() {
            return uri;
        }
    
        @Override
        public void close() {
            // Stop the server ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResourceAccessor.java

         */
        public HttpResponseResource getRawResource(final URI uri, boolean revalidate) {
            String location = uri.toString();
            LOGGER.debug("Constructing external resource: {}", location);
            HttpClientResponse response = http.performRawGet(location, revalidate);
            return wrapResponse(uri, response);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top