Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 148 for uris (0.14 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. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/SampleOutputNormalizer.groovy

            commandOutput = commandOutput.replaceAll(escapedFilePath, NORMALIZED_SAMPLES_PATH)
    
            // Replace sample project dir clickable file:/// URLs
            String escapedFileUrl = Pattern.quote(new ConsoleRenderer().asClickableFileUrl(executionMetadata.tempSampleProjectDir))
            commandOutput = commandOutput.replaceAll(escapedFileUrl, NORMALIZED_SAMPLES_FILE_URL)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

            return getClass().getSimpleName() + "(" + name + ")";
        }
    
        @Override
        public void visit(ClassLoaderVisitor visitor) {
            URL[] urls = getURLs();
            visitor.visitSpec(new Spec(name, Arrays.asList(urls)));
            visitor.visitClassPath(urls);
            visitor.visitParent(getParent());
        }
    
        public static class Spec extends ClassLoaderSpec {
            final String name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/IvySftpRepository.groovy

        }
    
        URI getUri() {
            return new URI("${serverUri}${contextPath}")
        }
    
        URI getServerUri() {
            server.uri
        }
    
        String getIvyPattern() {
            return "$uri/${backingRepository.baseIvyPattern}"
        }
    
        String getArtifactPattern() {
            return "$uri/${backingRepository.baseArtifactPattern}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top