Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for 01234567890E0 (0.29 sec)

  1. guava-tests/test/com/google/common/io/CharStreamsTest.java

       */
      public void testCopyWithReaderThatDoesNotFillBuffer() throws IOException {
        // need a long enough string for the buffer to hit 0 remaining before the copy completes
        String string = Strings.repeat("0123456789", 100);
        StringBuilder b = new StringBuilder();
        // the main assertion of this test is here... the copy will fail if the buffer size goes down
        // each time it is not filled completely
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. src/time/mono_test.go

    	mono int64
    	want string
    }{
    	{0, "m=+0.000000000"},
    	{123456789, "m=+0.123456789"},
    	{-123456789, "m=-0.123456789"},
    	{123456789000, "m=+123.456789000"},
    	{-123456789000, "m=-123.456789000"},
    	{9e18, "m=+9000000000.000000000"},
    	{-9e18, "m=-9000000000.000000000"},
    	{-1 << 63, "m=-9223372036.854775808"},
    }
    
    func TestMonotonicString(t *testing.T) {
    	t1 := Now()
    	t.Logf("Now() = %v", t1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/topology_hints_test.go

    			pod:       *testPod4,
    			container: *testContainer4,
    			assignments: state.ContainerCPUAssignments{
    				string(testPod4.UID): map[string]cpuset.CPUSet{
    					testContainer4.Name: cpuset.New(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
    				},
    			},
    			defaultCPUSet: cpuset.New(),
    			expectedHints: []topologymanager.TopologyHint{
    				{
    					NUMANodeAffinity: crossSocketMask,
    					Preferred:        true,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/math/big/natconv_test.go

    	{"0o18", 0, false, nat{1}, 8, 1, nil, '8'},
    	{"0O17", 0, false, nat{017}, 8, 2, nil, 0},
    	{"03271", 0, false, nat{03271}, 8, 4, nil, 0},
    	{"10ab", 0, false, nat{10}, 10, 2, nil, 'a'},
    	{"1234567890", 0, false, nat{1234567890}, 10, 10, nil, 0},
    	{"A", 36, false, nat{10}, 36, 1, nil, 0},
    	{"A", 37, false, nat{36}, 37, 1, nil, 0},
    	{"xyz", 36, false, nat{(33*36+34)*36 + 35}, 36, 3, nil, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  5. src/runtime/string_test.go

    			for i := 0; i < b.N; i++ {
    				escapeString = string(buf)
    			}
    		})
    		buf = append(buf, buf...)
    	}
    }
    
    var stringdata = []struct{ name, data string }{
    	{"ASCII", "01234567890"},
    	{"Japanese", "日本語日本語日本語"},
    	{"MixedLength", "$Ѐࠀက퀀𐀀\U00040000\U0010FFFF"},
    }
    
    var sinkInt int
    
    func BenchmarkRuneCount(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  6. src/math/big/floatconv_test.go

    		{"%20f", 1.23456789e3, "         1234.567890"},
    		{"%20f", 1.23456789e-3, "            0.001235"},
    		{"%20f", 12345678901.23456789, "  12345678901.234568"},
    		{"%-20f", 1.23456789e3, "1234.567890         "},
    		{"%20.8f", 1.23456789e3, "       1234.56789000"},
    		{"%20.8f", 1.23456789e-3, "          0.00123457"},
    		{"%g", 1.23456789e3, "1234.56789"},
    		{"%g", 1.23456789e-3, "0.00123456789"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner_test.go

    		{"foo$bar = 0", "invalid character U+0024 '$'", 0, 3},
    		{"0123456789", "invalid digit '8' in octal literal", 0, 8},
    		{"0123456789. /* foobar", "comment not terminated", 0, 12},   // valid float constant
    		{"0123456789e0 /*\nfoobar", "comment not terminated", 0, 13}, // valid float constant
    		{"var a, b = 09, 07\n", "invalid digit '9' in octal literal", 0, 12},
    
    		{`''`, "empty rune literal or unescaped '", 0, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  8. src/crypto/md5/md5_test.go

    			t.Errorf("md5(%q) = 0x%x != marshaled 0x%x", g.in, actual, actual2)
    		}
    	}
    }
    
    func TestLarge(t *testing.T) {
    	const N = 10000
    	ok := "2bb571599a4180e1d542f76904adc3df" // md5sum of "0123456789" * 1000
    	block := make([]byte, 10004)
    	c := New()
    	for offset := 0; offset < 4; offset++ {
    		for i := 0; i < N; i++ {
    			block[offset+i] = '0' + byte(i%10)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  9. src/fmt/fmt_test.go

    	{"%20f", 1.23456789e3, "         1234.567890"},
    	{"%20f", 1.23456789e-3, "            0.001235"},
    	{"%20f", 12345678901.23456789, "  12345678901.234568"},
    	{"%-20f", 1.23456789e3, "1234.567890         "},
    	{"%20.8f", 1.23456789e3, "       1234.56789000"},
    	{"%20.8f", 1.23456789e-3, "          0.00123457"},
    	{"%g", 1.23456789e3, "1234.56789"},
    	{"%g", 1.23456789e-3, "0.00123456789"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %10 = "tfl.reduce_all"(%arg_unknown, %axis_unknown) { keep_dims = true } : (tensor<?xi1>, tensor<?xi32>) -> tensor<?xi1>
      func.return %0, %1, %2, %3, %4, %5, %6, %7, %8, %9, %10 : tensor<i1>, tensor<i1>, tensor<2x1x3xi1>, tensor<1x2x1x3xi1>, tensor<1x1x1x3xi1>, tensor<1x1x3xi1>, tensor<1x2x3xi1>, tensor<1x2x1x3xi1>, tensor<1x2x1xi1>, tensor<1x2x1x1xi1>, tensor<?xi1>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
Back to top