Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for 2345678 (0.22 sec)

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

    		{decQuantity(10800, -4, DecimalSI), "1080m", ""},
    		{decQuantity(300, 6, DecimalSI), "300M", ""},
    		{decQuantity(1, 12, DecimalSI), "1T", ""},
    		{decQuantity(1234567, 6, DecimalSI), "1234567M", ""},
    		{decQuantity(1234567, -3, BinarySI), "1234567m", ""},
    		{decQuantity(3, 3, DecimalSI), "3k", ""},
    		{decQuantity(1025, 0, BinarySI), "1025", ""},
    		{decQuantity(0, 0, DecimalSI), "0", ""},
    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. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

            IteratorTester.KnownOrder.KNOWN_ORDER) {
          @Override
          protected Iterator<List<Integer>> newTargetIterator() {
            Iterator<Integer> source = Iterators.forArray(1, 2, 3, 4, 5, 6, 7);
            return Iterators.partition(source, 3);
          }
        }.test();
      }
    
      public void testPartition_view() {
        List<Integer> list = asList(1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    //                 |     |     |     |     |
    //                 -------     -------     |
    //                    |           |        |
    //                    5           6        |
    //                    |           |        |
    //                    -------------        |
    //                          |              |
    //                          7              |
    //                          |              |
    //                          ----------------
    //                                 |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. cmd/xl-storage_test.go

    		shouldPass bool
    	}{
    		// Cases which should pass the test.
    		// passing in valid bucket names.
    		{"lol", true},
    		{"1-this-is-valid", true},
    		{"1-this-too-is-valid-1", true},
    		{"this.works.too.1", true},
    		{"1234567", true},
    		{"123", true},
    		{"s3-eu-west-1.amazonaws.com", true},
    		{"ideas-are-more-powerful-than-guns", true},
    		{"testbucket", true},
    		{"1bucket", true},
    		{"bucket1", true},
    		{"$this-is-not-valid-too", true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
Back to top