Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for uris (0.04 sec)

  1. pilot/pkg/networking/util/util.go

    		div *= unit
    		exp++
    	}
    	return fmt.Sprintf("%.1f%cB",
    		float64(b)/float64(div), "kMGTPE"[exp])
    }
    
    // IPv6Compliant encloses ipv6 addresses in square brackets followed by port number in Host header/URIs
    func IPv6Compliant(host string) string {
    	if strings.Contains(host, ":") {
    		return "[" + host + "]"
    	}
    	return host
    }
    
    // DomainName builds the domain name for a given host and port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. cmd/server-main.go

      filesystem separated by space. You may also use a '...' convention
      to abbreviate the directory arguments. Remote directories in a
      distributed setup are encoded as HTTP(s) URIs.
    {{if .VisibleFlags}}
    FLAGS:
      {{range .VisibleFlags}}{{.}}
      {{end}}{{end}}
    EXAMPLES:
      1. Start MinIO server on "/home/shared" directory.
         {{.Prompt}} {{.HelpName}} /home/shared
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. manifests/charts/base/crds/crd-all.gen.yaml

                        rewrite:
                          description: Rewrite HTTP URIs and Authority headers.
                          properties:
                            authority:
                              description: rewrite the Authority/Host header with this
                                value.
                              type: string
                            uri:
                              description: rewrite the path (or the prefix) portion of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                        rewrite:
                          description: Rewrite HTTP URIs and Authority headers.
                          properties:
                            authority:
                              description: rewrite the Authority/Host header with this
                                value.
                              type: string
                            uri:
                              description: rewrite the path (or the prefix) portion of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/RemoteScriptUpToDateChecker.kt

        private val cachedExternalResourceIndex: CachedExternalResourceIndex<String>
    ) {
    
        fun isUpToDate(uri: URI): Boolean =
            if (startParameter.isOffline) {
                true
            } else {
                val externalResourceName = ExternalResourceName(uri)
    
                val cached = cachedExternalResourceIndex.lookup(externalResourceName.toString())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *##else
    #*      *### unrecognized license will require analysis to know obligations
    #*      *##set ( $spdx = 'unrecognized' )
    #*    *##end
    #*    *###
    #*    *### fix project urls that are wrong in pom
    #*    *##if ( $project.url.startsWith( "http://www.eclipse.org/sisu/" ) )
    #*      *##set ( $project.url = 'https://www.eclipse.org/sisu/' )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

        assertNotNull(FinalizableReferenceQueue.getStartFinalizer(finalizerCopy));
      }
    
      static class DecoupledClassLoader extends URLClassLoader {
    
        public DecoupledClassLoader(URL[] urls) {
          super(urls);
        }
    
        @Override
        protected synchronized Class<?> loadClass(String name, boolean resolve)
            throws ClassNotFoundException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. samples/bookinfo/src/details/details.rb

            'ISBN-10' => '1234567890',
            'ISBN-13' => '123-1234567890'
        }
    end
    
    def fetch_details_from_external_service(isbn, id, headers)
        uri = URI.parse('https://www.googleapis.com/books/v1/volumes?q=isbn:' + isbn)
        http = Net::HTTP.new(uri.host, ENV['DO_NOT_ENCRYPT'] === 'true' ? 80:443)
        http.read_timeout = 5 # seconds
    
        # DO_NOT_ENCRYPT is used to configure the details service to use either
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFailuresIntegrationTest.groovy

                    implementation
                }
    
                dependencies {
                    implementation 'non:existent:1.0'
                }
    
                repositories {
                    maven { url = uri('${emptyRepo.uri}') }
                }
    
                class Bean {
                    @InputFiles FileCollection files
                }
    
                abstract class Test extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top