Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 001Ki (0.14 sec)

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

    func TestQuantityParseEmit(t *testing.T) {
    	table := []struct {
    		in     string
    		expect string
    	}{
    		{"1Ki", "1Ki"},
    		{"1Mi", "1Mi"},
    		{"1Gi", "1Gi"},
    		{"1024Mi", "1Gi"},
    		{"1000M", "1G"},
    		{".001Ki", "1024m"},
    		{".000001Ki", "1024u"},
    		{".000000001Ki", "1024n"},
    		{".000000000001Ki", "2n"},
    	}
    
    	for _, item := range table {
    		q, err := ParseQuantity(item.in)
    		if err != nil {
    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. test/print.out

    (0x0,0x0)
    (0x0,0x0)
    0x0
    [0/0]0x0
    -7
    7
    7
    7
    7
    7
    7
    +8.000000e+000
    (+9.000000e+000+1.000000e+001i)
    true
    false
    hello
    one two
    one two
    hello
    false
    true
    (+1.400000e+001+1.500000e+001i)
    +1.300000e+001
    12
    12
    12
    12
    12
    12
    -11
    [0/0]0x0
    0x0
    (0x0,0x0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 26 04:08:38 UTC 2017
    - 247 bytes
    - Viewed (0)
  3. test/fixedbugs/issue19658.go

    		{"uint32", "8", "panic: 8"},
    		{"uint64", "8", "panic: 8"},
    		{"uintptr", "8", "panic: 8"},
    		{"bool", "true", "panic: true"},
    		{"complex64", "8 + 16i", "panic: (+8.000000e+000+1.600000e+001i)"},
    		{"complex128", "8+16i", "panic: (+8.000000e+000+1.600000e+001i)"},
    		{"string", `"test"`, "panic: test"}} {
    
    		b := bytes.Buffer{}
    		fmt.Fprintf(&b, fn, tc.Type, tc.Input)
    
    		err = ioutil.WriteFile(tmpFile, b.Bytes(), 0644)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/runtime/panic_test.go

    	tests := []struct {
    		name            string
    		wantPanicPrefix string
    	}{
    		{"panicCustomBool", `panic: main.MyBool(true)`},
    		{"panicCustomComplex128", `panic: main.MyComplex128(+3.210000e+001+1.000000e+001i)`},
    		{"panicCustomComplex64", `panic: main.MyComplex64(+1.100000e-001+3.000000e+000i)`},
    		{"panicCustomFloat32", `panic: main.MyFloat32(-9.370000e+001)`},
    		{"panicCustomFloat64", `panic: main.MyFloat64(-9.370000e+001)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/strconv/ctoa_test.go

    		{-5 + 6i, 'g', -1, 128, "(-5+6i)"},
    		{-7 - 8i, 'g', -1, 128, "(-7-8i)"},
    
    		// test that fmt and prec are working
    		{3.14159 + 0.00123i, 'e', 3, 128, "(3.142e+00+1.230e-03i)"},
    		{3.14159 + 0.00123i, 'f', 3, 128, "(3.142+0.001i)"},
    		{3.14159 + 0.00123i, 'g', 3, 128, "(3.14+0.00123i)"},
    
    		// ensure bitSize rounding is working
    		{1.2345678901234567 + 9.876543210987654i, 'f', -1, 128, "(1.2345678901234567+9.876543210987654i)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 30 00:13:25 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    \000Q\367b\337\244m?\3703\245>\014`\324?\272\203\340B\260\023\322?\275u\016\310\020\302\355?\036f\354\376\273\270\347?\353}j0*s\345?\324\261\3239\367I\343?\206\036\242\371I\221\320?\256\373\266\230\203\377\344?\300\277\365B\007\"\236?\252\216\225\001fI\350?\320\317\207\203\371#\322?\265\2572n\\\307\343?\000\217\034\325\355<\357?\332\004Q\202P(\330?L\357\031Z\334m\345?\304a\315\223[!\352?-\364/\027<0\352?\322>\343\334P]\357?\340@qR8q\227?u\3566\251\307_\347?\300\244\253\3468\204\217?\251\312\320\...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
Back to top