Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for 01234__5 (0.11 sec)

  1. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer_test.cc

        MOCK_METHOD(void, ApplyRemat, (const RematSpec&));
      };
    };
    
    TEST_F(GreedyRematTest, MlpBasic) {
      StrictMock<MlpRemat> remat(std::vector<int>({1, 1, 1}));
      // (o)ut, (i)n, (l)ive: 0 1 2 3 4 5 Sum
      // %0 = f0()            o           1
      // %1 = f1(%0)          i o         2
      // %2 = f2(%1)          l i o       3
      // %3 = g2(   %2)       l l i o     4
      // %4 = g1(%3,%1)       l i   i o   4
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  2. src/runtime/mpallocbits_test.go

    func TestPallocBitsAlloc(t *testing.T) {
    	tests := map[string]struct {
    		before []BitRange
    		after  []BitRange
    		npages uintptr
    		hits   []uint
    	}{
    		"AllFree1": {
    			npages: 1,
    			hits:   []uint{0, 1, 2, 3, 4, 5},
    			after:  []BitRange{{0, 6}},
    		},
    		"AllFree2": {
    			npages: 2,
    			hits:   []uint{0, 2, 4, 6, 8, 10},
    			after:  []BitRange{{0, 12}},
    		},
    		"AllFree5": {
    			npages: 5,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

          <verify-metadata>true</verify-metadata>
          <ignored-keys>
             <ignored-key id="ABcdEF"/>
             <ignored-key id="012345" reason="nope"/>
          </ignored-keys>
       </configuration>
    </verification-metadata>
    """
            then:
            verifier.configuration.ignoredKeys == [key("ABCDEF"), key("012345", "nope")] as Set
        }
    
        def "can parse #expectedResult keyring format"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

            builder.addIgnoredKey(new IgnoredKey("012345", "test"))
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
       <configuration>
          <verify-metadata>true</verify-metadata>
          <verify-signatures>false</verify-signatures>
          <ignored-keys>
             <ignored-key id="012345" reason="test"/>
             <ignored-key id="ABCDEF"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem_test.cc

      std::string result;
      result.resize(6);
      int64_t read = tf_random_access_file::Read(file, 0, 6, &result[0], status_);
      ASSERT_EQ(read, 6) << "Read: " << read << "\n";
      ASSERT_TF_OK(status_);
      ASSERT_EQ(result, "012345") << "Result: " << result << "\n";
    
      read = tf_random_access_file::Read(file, 6, 6, &result[0], status_);
      ASSERT_EQ(read, 4) << "Read: " << read << "\n";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 12:04:23 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  6. pkg/webhooks/validation/server/server_test.go

    			contentType:    "application/yaml",
    			wantAllowed:    false,
    			wantStatusCode: http.StatusUnsupportedMediaType,
    		},
    		{
    			name:           "bad content",
    			body:           []byte{0, 1, 2, 3, 4, 5}, // random data
    			contentType:    "application/json",
    			wantAllowed:    false,
    			wantStatusCode: http.StatusOK,
    		},
    		{
    			name:           "no content",
    			body:           []byte{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

        ByteSource b1 = ByteSource.wrap(new byte[] {0, 1, 2, 3});
        ByteSource b2 = ByteSource.wrap(new byte[0]);
        ByteSource b3 = ByteSource.wrap(new byte[] {4, 5});
    
        byte[] expected = {0, 1, 2, 3, 4, 5};
    
        assertArrayEquals(expected, ByteSource.concat(ImmutableList.of(b1, b2, b3)).read());
        assertArrayEquals(expected, ByteSource.concat(b1, b2, b3).read());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    func.func @fused_batch_norm_v3_f16(%arg0 : tensor<?x112x112x16xf16>, %arg1 : tensor<16xf32>, %arg2 : tensor<16xf32>, %arg3 : tensor<16xf32>, %arg4 : tensor<16xf32>) -> tensor<?x112x112x16xf16> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  9. src/go/token/position_test.go

    }
    
    var tests = []struct {
    	filename string
    	source   []byte // may be nil
    	size     int
    	lines    []int
    }{
    	{"a", []byte{}, 0, []int{}},
    	{"b", []byte("01234"), 5, []int{0}},
    	{"c", []byte("\n\n\n\n\n\n\n\n\n"), 9, []int{0, 1, 2, 3, 4, 5, 6, 7, 8}},
    	{"d", nil, 100, []int{0, 5, 10, 20, 30, 70, 71, 72, 80, 85, 90, 99}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/runtime/map_test.go

    	m[0] = 12345
    	m[0] += 67890
    	m[0] /= 123
    	m[0] %= 456
    
    	const want = (12345 + 67890) / 123 % 456
    	if got := m[0]; got != want {
    		t.Errorf("got %d, want %d", got, want)
    	}
    }
    
    var sinkAppend bool
    
    func TestMapAppendAssignment(t *testing.T) {
    	m := make(map[int][]int, 0)
    
    	m[0] = nil
    	m[0] = append(m[0], 12345)
    	m[0] = append(m[0], 67890)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top