Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 108 for 2345678 (0.12 sec)

  1. pkg/kubelet/pod_workers_test.go

    		t:         t,
    	}
    
    	tests := []struct {
    		pod       *v1.Pod
    		mirrorPod *v1.Pod
    	}{
    		{
    			&v1.Pod{},
    			&v1.Pod{},
    		},
    		{
    			podWithUIDNameNs("12345678", "foo", "new"),
    			podWithUIDNameNs("12345678", "fooMirror", "new"),
    		},
    		{
    			podWithUIDNameNs("98765", "bar", "new"),
    			podWithUIDNameNs("98765", "barMirror", "new"),
    		},
    	}
    
    	for i, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    		{"invalid", "invalid!", familyIPv4, false, nil},
    		{"zero", "00000000", familyIPv4, true, net.IP{0, 0, 0, 0}},
    		{"ffff", "FFFFFFFF", familyIPv4, true, net.IP{0xff, 0xff, 0xff, 0xff}},
    		{"valid v4", "12345678", familyIPv4, true, net.IP{120, 86, 52, 18}},
    		{"valid v6", "fe800000000000000000000000000000", familyIPv6, true, net.IP{0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  3. src/runtime/hash_test.go

    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	if race.Enabled {
    		t.Skip("Too long for race mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	permutation(t, h, []uint32{0, 1, 2, 3, 4, 5, 6, 7}, 8)
    	permutation(t, h, []uint32{0, 1 << 29, 2 << 29, 3 << 29, 4 << 29, 5 << 29, 6 << 29, 7 << 29}, 8)
    	permutation(t, h, []uint32{0, 1}, 20)
    	permutation(t, h, []uint32{0, 1 << 31}, 20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad_test.cc

        return CRV({{-1.0f, 0.5f}, {1.0f, 0.5f}, {2, -1}});
      };
      TestCWiseGrad<complex64, complex64>(SQRT, x_fn);
    }
    
    TEST_F(CWiseUnaryGradTest, Rsqrt) {
      auto x_fn = [this](const int i) { return RV({1, 2, 3, 4, 5, 6, 7, 8}); };
      TestCWiseGrad<float, float>(RSQRT, x_fn);
    }
    
    TEST_F(CWiseUnaryGradTest, Rsqrt_Complex) {
      auto x_fn = [this](const int i) {
        return CRV({{-1.0f, 0.5f}, {1.0f, 0.5f}, {2, -1}});
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  5. src/time/format_test.go

    	}
    	if time.Second() != 57 {
    		t.Errorf("%s: bad second: %d not %d", test.name, time.Second(), 57)
    	}
    	// Nanoseconds must be checked against the precision of the input.
    	nanosec, err := strconv.ParseUint("012345678"[:test.fracDigits]+"000000000"[:9-test.fracDigits], 10, 0)
    	if err != nil {
    		panic(err)
    	}
    	if time.Nanosecond() != int(nanosec) {
    		t.Errorf("%s: bad nanosecond: %d not %d", test.name, time.Nanosecond(), nanosec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    					Name:      "very-long-service-name-why-would-you-even-do-this-i-mean-really",
    				},
    				Port: "port-443-providing-the-hypertext-transmission-protocol-with-tls",
    			},
    			protocol: "sctp",
    			endpoint: "[1234:5678:9abc:def0::abc:1234]:443",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	// - The URL path of an imageMatch must be a prefix of the target image URL path.
    	// - If the imageMatch contains a port, then the port must match in the image as well.
    	//
    	// Example values of matchImages:
    	//   - `123456789.dkr.ecr.us-east-1.amazonaws.com`
    	//   - `*.azurecr.io`
    	//   - `gcr.io`
    	//   - `*.*.registry.io`
    	//   - `registry.io:8080/path`
    	MatchImages []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/math_grad.cc

      auto zero = Const(scope, 0);
      auto one = Const(scope, 1);
    
      // The gradient can be expressed by dividing the product by each entry of
      // the input tensor. If our input is
      // [
      //  [3, 4],
      //  [5, 6],
      //  [7, 8]
      // ]
      // and we do a Prod operation on the axis 1, we will obtain [[105, 192]].
      // The gradient will have the same shape as the input
      //     [
      //       [105/3, 192/4],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  9. src/cmd/link/link_test.go

    		break
    	}
    	if !found {
    		t.Errorf("no LC_BUILD_VERSION load command found")
    	}
    }
    
    const Issue34788src = `
    
    package blah
    
    func Blah(i int) int {
    	a := [...]int{1, 2, 3, 4, 5, 6, 7, 8}
    	return a[i&7]
    }
    `
    
    func TestIssue34788Android386TLSSequence(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This is a cross-compilation test, so it doesn't make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. src/bufio/bufio_test.go

    		b.WriteString("56789012")   // longer than BufSize
    		tw.check(t, "12345678", "") // but not enough (after filling the partially-filled buffer)
    		b.Flush()
    		tw.check(t, "123456789012", "")
    	}
    	{
    		tw := &teststringwriter{}
    		b := NewWriterSize(tw, BufSize)
    		b.WriteString("123456789")   // long string, empty buffer:
    		tw.check(t, "", "123456789") // use WriteString
    	}
    	{
    		tw := &teststringwriter{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
Back to top