Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for alphanums (0.13 sec)

  1. pkg/volume/csi/csi_plugin_test.go

    	}{
    		{
    			name:       "missing spec",
    			shouldFail: true,
    		},
    		{
    			name:       "alphanum names for pv",
    			driverName: "testdr",
    			volName:    "testvol",
    			spec:       volume.NewSpecFromPersistentVolume(makeTestPV("test-pv", 10, "testdr", "testvol"), false),
    		},
    		{
    			name:       "alphanum names for vol source",
    			driverName: "testdr",
    			volName:    "testvol",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    	{
    		"http://[fe80::1%25en0]/", // alphanum zone identifier
    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en0]",
    			Path:   "/",
    		},
    		"",
    	},
    	// host and port subcomponents; IPv6 address with zone identifier in RFC 6874
    	{
    		"http://[fe80::1%25en0]:8080/", // alphanum zone identifier
    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en0]:8080",
    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. src/net/url/url.go

    //
    // Please be informed that for now shouldEscape does not check all
    // reserved characters correctly. See golang.org/issue/5684.
    func shouldEscape(c byte, mode encoding) bool {
    	// §2.3 Unreserved characters (alphanum)
    	if 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' || '0' <= c && c <= '9' {
    		return false
    	}
    
    	if mode == encodeHost || mode == encodeZone {
    		// §3.2.2 Host allows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    		}, {
    			name: "valid num name",
    			vol: core.Volume{
    				Name: "123",
    				VolumeSource: core.VolumeSource{
    					EmptyDir: &core.EmptyDirVolumeSource{},
    				},
    			},
    		}, {
    			name: "valid alphanum name",
    			vol: core.Volume{
    				Name: "empty-123",
    				VolumeSource: core.VolumeSource{
    					EmptyDir: &core.EmptyDirVolumeSource{},
    				},
    			},
    		}, {
    			name: "valid numalpha name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top