Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 00000012345 (0.2 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"0.00000000050", decQuantity(1, -9, DecimalSI)},
    		{"0.5e-9", decQuantity(1, -9, DecimalExponent)},
    		{"0.9n", decQuantity(1, -9, DecimalSI)},
    		{"0.00000012345", decQuantity(124, -9, DecimalSI)},
    		{"0.00000012354", decQuantity(124, -9, DecimalSI)},
    		{"9Ei", Quantity{d: maxAllowed, Format: BinarySI}},
    		{"9223372036854775807Ki", Quantity{d: maxAllowed, Format: BinarySI}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K 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