Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0G (0.03 sec)

  1. src/fmt/fmt_test.go

    	{"%#.0f", 1.23 + 1.0i, "(1.+1.i)"},
    	{"%#.0e", 1.23 + 1.0i, "(1.e+00+1.e+00i)"},
    	{"%#.0x", 1.23 + 1.0i, "(0x1.p+00+0x1.p+00i)"},
    	{"%#.0g", 1.23 + 1.0i, "(1.+1.i)"},
    	{"%#.0g", 0 + 100000i, "(0.+1.e+05i)"},
    	{"%#.0g", 1230000 + 0i, "(1.e+06+0.i)"},
    	{"%#.4f", 1 + 1.23i, "(1.0000+1.2300i)"},
    	{"%#.4e", 123 + 1i, "(1.2300e+02+1.0000e+00i)"},
    	{"%#.4x", 123 + 1i, "(0x1.ec00p+06+0x1.0000p+00i)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. src/encoding/hex/hex_test.go

    	in  string
    	out string
    	err error
    }{
    	{"", "", nil},
    	{"0", "", ErrLength},
    	{"zd4aa", "", InvalidByteError('z')},
    	{"d4aaz", "\xd4\xaa", InvalidByteError('z')},
    	{"30313", "01", ErrLength},
    	{"0g", "", InvalidByteError('g')},
    	{"00gg", "\x00", InvalidByteError('g')},
    	{"0\x01", "", InvalidByteError('\x01')},
    	{"ffeed", "\xff\xee", ErrLength},
    }
    
    func TestDecodeErr(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    000001f0  c8 cc db e3 f7 89 69 a3  3b 22 d0 75 16 c8 16 cc  |......i.;".u....|
    00000200  a2 3c 56 c5 00 d1 1d 11  7f 74 1f bb 3d ec 1b c0  |.<V......t..=...|
    00000210  30 67 81 36 11 11 60 d2  e1 be ce e4 0c f6 d0 df  |0g.6..`.........|
    00000220  fd 7c dc 7f 3d 40 8d 65  ec 69 c7 55 30 db 9c d3  |.|..=@.e.i.U0...|
    00000230  bc 92 ae 14 85 18 ce 10  7e 0f 52 52 a4 c7 b7 1f  |........~.RR....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"0Ki", decQuantity(0, 0, BinarySI)},
    		{"0k", decQuantity(0, 0, DecimalSI)},
    		{"0Mi", decQuantity(0, 0, BinarySI)},
    		{"0M", decQuantity(0, 0, DecimalSI)},
    		{"0Gi", decQuantity(0, 0, BinarySI)},
    		{"0G", decQuantity(0, 0, DecimalSI)},
    		{"0Ti", decQuantity(0, 0, BinarySI)},
    		{"0T", decQuantity(0, 0, DecimalSI)},
    
    		// Quantity less numbers are allowed
    		{"1", decQuantity(1, 0, DecimalSI)},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation_test.go

    					core.ReadWriteOnce,
    					core.ReadOnlyMany,
    				},
    				Resources: core.VolumeResourceRequirements{
    					Requests: core.ResourceList{
    						core.ResourceName(core.ResourceStorage): resource.MustParse("0G"),
    					},
    				},
    				StorageClassName: &validClassName,
    			}),
    		},
    		"invalid-label-selector": {
    			isExpectedFailure: true,
    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