Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 191 for uris (0.11 sec)

  1. manifests/charts/istio-control/istio-discovery/values.yaml

        serviceAccountAnnotations: {}
    
        topologySpreadConstraints: []
    
        # You can use jwksResolverExtraRootCA to provide a root certificate
        # in PEM format. This will then be trusted by pilot when resolving
        # JWKS URIs.
        jwksResolverExtraRootCA: ""
    
        # This is used to set the source of configuration for
        # the associated address in configSource, if nothing is specified
        # the default MCP is assumed.
        configSource:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. 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)
  3. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    				}
    			}
    		}
    	}
    	return allErrs
    }
    
    // ValidateURLs validates the URLs given in the string slice, makes sure they are parsable. Optionally, it can enforces HTTPS usage.
    func ValidateURLs(urls []string, requireHTTPS bool, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	for _, urlstr := range urls {
    		u, err := url.Parse(urlstr)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. src/crypto/x509/verify.go

    	// certificate.”
    
    	host := uri.Host
    	if len(host) == 0 {
    		return false, fmt.Errorf("URI with empty host (%q) cannot be matched against constraints", uri.String())
    	}
    
    	if strings.Contains(host, ":") && !strings.HasSuffix(host, "]") {
    		var err error
    		host, _, err = net.SplitHostPort(uri.Host)
    		if err != nil {
    			return false, err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. 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)
  6. src/net/url/url_test.go

    	{"http://[fe80::%31%25en0]:8080/", false},
    
    	// These two cases are valid as textual representations as
    	// described in RFC 4007, but are not valid as address
    	// literals with IPv6 zone identifiers in URIs as described in
    	// RFC 6874.
    	{"http://[fe80::1%en0]/", false},
    	{"http://[fe80::1%en0]:8080/", false},
    }
    
    func TestParseRequestURI(t *testing.T) {
    	for _, test := range parseRequestURLTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // can be configured for a single control plane.
      PilotConfigSource configSource = 31;
    
      // Specifies an extra root certificate in PEM format. This certificate will be trusted
      // by pilot when resolving JWKS URIs.
      string jwksResolverExtraRootCA = 32;
    
      // Hub to pull the container image from. Image will be `Hub/Image:Tag-Variant`.
      string hub = 34;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>Resolves a file path to a URI, relative to the project directory of this project. Evaluates the provided path
         * object as described for {@link #file(Object)}, with the exception that any URI scheme is supported, not just
         * 'file:' URIs.</p>
         *
         * @param path The object to resolve as a URI.
         * @return The resolved URI. Never returns null.
         */
        URI uri(Object path);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    			}
    			for _, v := range c.EmailAddresses {
    				check ^= xxh3.HashString(v)
    			}
    			for _, v := range c.IPAddresses {
    				check ^= xxh3.HashString(v.String())
    			}
    			for _, v := range c.URIs {
    				check ^= xxh3.HashString(v.String())
    			}
    			tlsInfo.Certs = append(tlsInfo.Certs, madmin.TLSCert{
    				PubKeyAlgo:    c.PublicKeyAlgorithm.String(),
    				SignatureAlgo: c.SignatureAlgorithm.String(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/JavaClass.java

        }
    
        public boolean isEmpty() {
            return files.isEmpty();
        }
    
        public Collection<URI> getAsURIs() {
            List<URI> urls = new ArrayList<URI>();
            for (File file : files) {
                urls.add(file.toURI());
            }
            return urls;
        }
    
        public Collection<File> getAsFiles() {
            return files;
        }
    
        public URL[] getAsURLArray() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top