Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for 987654321G (0.13 sec)

  1. src/regexp/testdata/basic.dat

    E	(ab|a)(bc|c)		abc	(0,3)(0,2)(2,3)
    E	(ab)c|abc		abc	(0,3)(0,2)
    E	a{0}b		ab			(1,2)
    E	(a*)(b?)(b+)b{3}	aaabbbbbbb	(0,10)(0,3)(3,4)(4,7)
    E	(a*)(b{0,1})(b{1,})b{3}	aaabbbbbbb	(0,10)(0,3)(3,4)(4,7)
    E	a{9876543210}	NULL	BADBR
    E	((a|a)|a)			a	(0,1)(0,1)(0,1)
    E	(a*)(a|aa)			aaaa	(0,4)(0,3)(3,4)
    E	a*(a.|aa)			aaaa	(0,4)(2,4)
    E	a(b)|c(d)|a(e)f			aef	(0,3)(?,?)(?,?)(1,2)
    E	(a|b)?.*			b	(0,1)(0,1)
    E	(a|b)c|a(b|c)			ac	(0,2)(0,1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    var sumZZ = []argZZ{
    	{NewInt(0), NewInt(0), NewInt(0)},
    	{NewInt(1), NewInt(1), NewInt(0)},
    	{NewInt(1111111110), NewInt(123456789), NewInt(987654321)},
    	{NewInt(-1), NewInt(-1), NewInt(0)},
    	{NewInt(864197532), NewInt(-123456789), NewInt(987654321)},
    	{NewInt(-1111111110), NewInt(-123456789), NewInt(-987654321)},
    }
    
    var prodZZ = []argZZ{
    	{NewInt(0), NewInt(0), NewInt(0)},
    	{NewInt(0), NewInt(1), NewInt(0)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    	spec := v1.PodSpec{NodeName: string(kl.nodeName), Containers: []v1.Container{{Ports: []v1.ContainerPort{{HostPort: 80}}}}}
    	pods := []*v1.Pod{
    		podWithUIDNameNsSpec("123456789", "newpod", "foo", spec),
    		podWithUIDNameNsSpec("987654321", "oldpod", "foo", spec),
    	}
    	// Make sure the Pods are in the reverse order of creation time.
    	pods[1].CreationTimestamp = metav1.NewTime(time.Now())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. src/runtime/string_test.go

    		{"98765432100", 98765432100, true},
    		{"9223372036854775807", 1<<63 - 1, true},
    
    		// Good trivial suffix inputs.
    		{"1B", 1, true},
    		{"12345B", 12345, true},
    		{"012345B", 12345, true},
    		{"98765432100B", 98765432100, true},
    		{"9223372036854775807B", 1<<63 - 1, true},
    
    		// Good binary suffix inputs.
    		{"1KiB", 1 << 10, true},
    		{"05KiB", 5 << 10, true},
    		{"1MiB", 1 << 20, true},
    		{"10MiB", 10 << 20, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  5. src/go/constant/value_test.go

    		}
    	}
    }
    
    func TestMakeFloat64(t *testing.T) {
    	var zero float64
    	for _, arg := range []float64{
    		-math.MaxFloat32,
    		-10,
    		-0.5,
    		-zero,
    		zero,
    		1,
    		10,
    		123456789.87654321e-23,
    		1e10,
    		math.MaxFloat64,
    	} {
    		val := MakeFloat64(arg)
    		if val.Kind() != Float {
    			t.Errorf("%v: got kind = %d; want %d", arg, val.Kind(), Float)
    		}
    
    		// -0.0 is mapped to 0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  6. src/archive/tar/strconv_test.go

    		{"0.123456789abcdef", time.Time{}, false},
    		{"foo", time.Time{}, false},
    		{"\x00", time.Time{}, false},
    		{"đŸĩ𝟴đŸŗ𝟲𝟱.đŸ°đŸ¯đŸŽđŸ­đŸŦ", time.Time{}, false}, // Unicode numbers (U+1D7EC to U+1D7F5)
    		{"98765īš’43210", time.Time{}, false}, // Unicode period (U+FE52)
    	}
    
    	for _, v := range vectors {
    		ts, err := parsePAXTime(v.in)
    		ok := (err == nil)
    		if v.ok != ok {
    			if v.ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-prefer-tf2xla.mlir

      %cst = "tf.Const"() {value = dense<[32, 12, 12, 64]> : tensor<4xi32>} : () -> tensor<4xi32>
      %0 = "tf.RandomUniform"(%cst) {seed = 87654321 : i64, seed2 = 0 : i64} : (tensor<4xi32>) -> tensor<32x12x12x64xf32>
        // CHECK: return %17 : tensor<32x12x12x64xf32>
      func.return %0 : tensor<32x12x12x64xf32>
    }
    
    // CHECK-LABEL: slice_variable_start
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

                "+1.+2.+3.4",
                "1.2.3.4e0",
                "6:5:4:3:2:1:0", // too few parts
                "::7:6:5:4:3:2:1:0", // too many parts
                "7:6:5:4:3:2:1:0::", // too many parts
                "9:8:7:6:5:4:3::2:1", // too many parts
                "0:1:2:3::4:5:6:7", // :: must remove at least one 0.
                "3ffe:0:0:0:0:0:0:0:1", // too many parts (9 instead of 8)
                "3ffe::10000", // hextet exceeds 16 bits
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/outside_compilation.mlir

          %outputs_4, %control_5 = tf_executor.island wraps "tf.RandomUniform"(%outputs_2) {device = "", seed = 87654321 : i64, seed2 = 0 : i64} : (tensor<1xi32>) -> tensor<*xf32>
          %outputs_6, %control_7 = tf_executor.island wraps "tf.AddV2"(%arg2, %outputs) {device = ""} : (tensor<i32>, tensor<i32>) -> tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:19:45 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. src/math/big/nat_test.go

    		}
    	}
    }
    
    type funNN func(z, x, y nat) nat
    type argNN struct {
    	z, x, y nat
    }
    
    var sumNN = []argNN{
    	{},
    	{nat{1}, nil, nat{1}},
    	{nat{1111111110}, nat{123456789}, nat{987654321}},
    	{nat{0, 0, 0, 1}, nil, nat{0, 0, 0, 1}},
    	{nat{0, 0, 0, 1111111110}, nat{0, 0, 0, 123456789}, nat{0, 0, 0, 987654321}},
    	{nat{0, 0, 0, 1}, nat{0, 0, _M}, nat{0, 0, 1}},
    }
    
    var prodNN = []argNN{
    	{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top