Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for 00000012345 (0.24 sec)

  1. pkg/proxy/apis/config/validation/validation_test.go

    				config.ClusterCIDR = "fd00:192:168:59::/64"
    			},
    		},
    		"alternate healthz port": {
    			mutateConfigFunc: func(config *kubeproxyconfig.KubeProxyConfiguration) {
    				config.HealthzBindAddress = "0.0.0.0:12345"
    			},
    		},
    		"ClusterCIDR is wrong IP family": {
    			mutateConfigFunc: func(config *kubeproxyconfig.KubeProxyConfiguration) {
    				config.ClusterCIDR = "fd00:192:168::/64"
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		{`"2000-01-01T1:12:34Z"`, `<nil>`},
    		{`"2000-01-01T00:00:00,000Z"`, `<nil>`},
    		{`"2000-01-01T00:00:00+24:00"`, `<nil>`},
    		{`"2000-01-01T00:00:00+00:60"`, `<nil>`},
    		{`"2000-01-01T00:00:00+123:45"`, `parsing time "2000-01-01T00:00:00+123:45" as "2006-01-02T15:04:05Z07:00": cannot parse "+123:45" as "Z07:00"`},
    	}
    
    	for _, tt := range tests {
    		var ts Time
    
    		want := tt.want
    		err := json.Unmarshal([]byte(tt.in), &ts)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top