Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 150 for Colon (0.04 sec)

  1. src/net/url/url_test.go

    		{"http://[::1]/", false},
    		{"http://[::1]a", true},
    		{"http://[::1]%23", true},
    		{"http://[::1%25en0]", false},    // valid zone id
    		{"http://[::1]:", false},         // colon, but no port OK
    		{"http://x:", false},             // colon, but no port OK
    		{"http://[::1]:%38%30", true},    // not allowed: % encoding only for non-ASCII
    		{"http://[::1%25%41]", false},    // RFC 6874 allows over-escaping in zone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    // contain:
    // * unreserved characters (alphanumeric, '-', '.', '_', '~')
    // * percent-encoded octets
    // * sub-delims ("!", "$", "&", "'", "(", ")", "*", "+", ",", ";", "=")
    // * a colon character (":")
    const httpPathFmt string = `[A-Za-z0-9/\-._~%!$&'()*+,;=:]+`
    
    var httpPathRegexp = regexp.MustCompile("^" + httpPathFmt + "$")
    
    // IsDomainPrefixedPath checks if the given string is a domain-prefixed path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pkg/volume/util/util_test.go

    			name:         "windows path no drive",
    		},
    		{
    			goos:         "windows",
    			path:         "\\:\\some\\path",
    			expectedPath: "\\:\\some\\path",
    			name:         "windows path with colon",
    		},
    	}
    	for _, test := range tests {
    		if runtime.GOOS == test.goos {
    			path := MakeAbsolutePath(test.goos, test.path)
    			if path != test.expectedPath {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. cluster/gce/config-default.sh

    # An extension to local SSDs allowing users to specify block/fs and SCSI/NVMe devices
    # Format of this variable will be "#,scsi/nvme,block/fs" you can specify multiple
    # configurations by separating them by a semi-colon ex. "2,scsi,fs;1,nvme,block"
    # is a request for 2 SCSI formatted and mounted SSDs and 1 NVMe block device SSD.
    NODE_LOCAL_SSDS_EXT=${NODE_LOCAL_SSDS_EXT:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. src/runtime/metrics/description.go

    	//
    	// The format of the metric may be described by the following regular expression.
    	//
    	// 	^(?P<name>/[^:]+):(?P<unit>[^:*/]+(?:[*/][^:*/]+)*)$
    	//
    	// The format splits the name into two components, separated by a colon: a path which always
    	// starts with a /, and a machine-parseable unit. The name may contain any valid Unicode
    	// codepoint in between / characters, but by convention will try to stick to lowercase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. src/time/zoneinfo.go

    	zone []zone
    	tx   []zoneTrans
    
    	// The tzdata information can be followed by a string that describes
    	// how to handle DST transitions not recorded in zoneTrans.
    	// The format is the TZ environment variable without a colon; see
    	// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap08.html.
    	// Example string, for America/Los_Angeles: PST8PDT,M3.2.0,M11.1.0
    	extend string
    
    	// Most lookups will be for the current time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/validation/validation_test.go

    			return conf
    		},
    		errMsg: "tracing.endpoint: Invalid value: \"dn%2s://localhost:4317\": parse \"dn%2s://localhost:4317\": first path segment in URL cannot contain colon",
    	}, {
    		name: "invalid GracefulNodeShutdownBasedOnPodPriority",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    	Long: `
    The Go path is used to resolve import statements.
    It is implemented by and documented in the go/build package.
    
    The GOPATH environment variable lists places to look for Go code.
    On Unix, the value is a colon-separated string.
    On Windows, the value is a semicolon-separated string.
    On Plan 9, the value is a list.
    
    If the environment variable is unset, GOPATH defaults
    to a subdirectory named "go" in the user's home directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. src/runtime/metrics/doc.go

    # Metric key format
    
    As mentioned earlier, metric keys are strings. Their format is simple and well-defined,
    designed to be both human and machine readable. It is split into two components,
    separated by a colon: a rooted path and a unit. The choice to include the unit in
    the key is motivated by compatibility: if a metric's unit changes, its semantics likely
    did also, and a new key should be introduced.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. cluster/gce/config-test.sh

    # An extension to local SSDs allowing users to specify block/fs and SCSI/NVMe devices
    # Format of this variable will be "#,scsi/nvme,block/fs" you can specify multiple
    # configurations by separating them by a semi-colon ex. "2,scsi,fs;1,nvme,block"
    # is a request for 2 SCSI formatted and mounted SSDs and 1 NVMe block device SSD.
    NODE_LOCAL_SSDS_EXT=${NODE_LOCAL_SSDS_EXT:-}
    NODE_ACCELERATORS=${NODE_ACCELERATORS:-''}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top