Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for uris (0.07 sec)

  1. src/crypto/x509/x509.go

    		ip := rawIP.To4()
    		if ip == nil {
    			ip = rawIP
    		}
    		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeIP, Class: 2, Bytes: ip})
    	}
    	for _, uri := range uris {
    		uriStr := uri.String()
    		if err := isIA5String(uriStr); err != nil {
    			return nil, err
    		}
    		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeURI, Class: 2, Bytes: []byte(uriStr)})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. index.yaml

        - storage
        - object-storage
        - s3
        - cluster
        maintainers:
        - email: ******@****.***
          name: MinIO, Inc
        name: minio
        sources:
        - https://github.com/minio/minio
        urls:
        - https://charts.min.io/helm-releases/minio-5.2.0.tgz
        version: 5.2.0
      - apiVersion: v1
        appVersion: RELEASE.2024-03-03T17-50-39Z
        created: "2024-04-28T03:14:12.226017252-07:00"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/virtualservice_test.go

    		},
    		{
    			name: "regex uri in root and delegate does not have uri",
    			root: &networking.HTTPMatchRequest{
    				Uri: &networking.StringMatch{
    					MatchType: &networking.StringMatch_Regex{Regex: "^/productpage"},
    				},
    			},
    			leaf:     &networking.HTTPMatchRequest{},
    			expected: false,
    		},
    		{
    			name: "regex uri in delegate and root does not have uri",
    			root: &networking.HTTPMatchRequest{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_test.go

    				Name: "route",
    				Match: []*networking.HTTPMatchRequest{
    					{
    						Name: "non-catch-all",
    						Uri: &networking.StringMatch{
    							MatchType: &networking.StringMatch_Prefix{
    								Prefix: "/route/v1",
    							},
    						},
    					},
    					{
    						Name: "catch-all",
    						Uri: &networking.StringMatch{
    							MatchType: &networking.StringMatch_Prefix{
    								Prefix: "/",
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      New-Item -Force -ItemType 'directory' $tmp_dir | Out-Null
    
      $urls = ${kube_env}['NODE_BINARY_TAR_URL'].Split(",")
      $filename = Split-Path -leaf $urls[0]
      $hash = $null
      if ($kube_env.ContainsKey('NODE_BINARY_TAR_HASH')) {
        $hash = ${kube_env}['NODE_BINARY_TAR_HASH']
      }
      MustDownload-File -Hash $hash -OutFile $tmp_dir\$filename -URLs $urls
    
      tar xzvf $tmp_dir\$filename -C $tmp_dir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

     * and workgroups.
     * <p>
     * <font color="#800000"><i>Important: all SMB URLs that represent
     * workgroups, servers, shares, or directories require a trailing slash '/'.
     * </i></font>
     * <p>
     * When using the <tt>java.net.URL</tt> class with
     * 'smb://' URLs it is necessary to first call the static
     * <tt>jcifs.Config.registerSmbURLHandler();</tt> method. This is required
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Gradle now uses the `URI` class to parse and decode URLs, but with a fallback to the legacy behavior in the event of an error.
    
    Starting in Gradle 9.0, the fallback will be removed, and an error will be thrown instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top