Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for cde (0.48 sec)

  1. src/archive/tar/writer_test.go

    		tests: []testFnc{
    			testWrite{"ab", 2, nil},
    			testRemaining{6, 3},
    			testReadFrom{fileOps{int64(3), "cde"}, 6, nil},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{5, "abcde"}, sparseHoles{{2, 3}}, 8},
    		tests: []testFnc{
    			testReadFrom{fileOps{"ab", int64(3), "cde"}, 8, nil},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{5, "abcde"}, sparseHoles{{2, 3}}, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  2. src/path/filepath/path_test.go

    	root, path, want string
    }
    
    var reltests = []RelTests{
    	{"a/b", "a/b", "."},
    	{"a/b/.", "a/b", "."},
    	{"a/b", "a/b/.", "."},
    	{"./a/b", "a/b", "."},
    	{"a/b", "./a/b", "."},
    	{"ab/cd", "ab/cde", "../cde"},
    	{"ab/cd", "ab/c", "../c"},
    	{"a/b", "a/b/c/d", "c/d"},
    	{"a/b", "a/b/../c", "../c"},
    	{"a/b/../c", "a/b", "../b"},
    	{"a/b/c", "a/c/d", "../../c/d"},
    	{"a/b", "c/d", "../../c/d"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions.mlir

    }
    
    
    // -----
    
    module {
      func.func @float_einsum(%arg0: tensor<?x64x32xf32>, %arg1: tensor<32x2x16xf32>) -> (tensor<?x64x2x16xf32>) {
        %0 = "tf.Einsum"(%arg0, %arg1) {equation = "abc,cde->abde"} : (tensor<?x64x32xf32>, tensor<32x2x16xf32>) -> tensor<?x64x2x16xf32>
        func.return %0 : tensor<?x64x2x16xf32>
      }
    
    // CHECK-LABEL: func @float_einsum
    // CHECK: -------- Quantization Summary --------
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            }
    
            ['archive/folder/file', 'root/archives/file', 'root/folder/abc',
             'collections/folder/file', 'root/collections/file', 'archives/collections/file',
             'root/folder/cde'].each {
                assertMatches matcher.negate(), it
            }
        }
    
        private static void assertMatches(PatternMatcher matcher, String path) {
            def file = relativeFile(path)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  5. src/strings/replace_test.go

    	{NewReplacer("12", "123"), "*strings.singleStringReplacer"},
    	{NewReplacer("1", "12"), "*strings.byteStringReplacer"},
    	{NewReplacer("", "X"), "*strings.genericReplacer"},
    	{NewReplacer("a", "1", "b", "12", "cde", "123"), "*strings.genericReplacer"},
    }
    
    // TestPickAlgorithm tests that NewReplacer picks the correct algorithm.
    func TestPickAlgorithm(t *testing.T) {
    	for i, tc := range algorithmTestCases {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  6. src/archive/tar/reader_test.go

    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{"abcde", 5}, sparseDatas{{0, 2}, {5, 3}}, 8},
    		tests: []testFnc{
    			testRemaining{8, 5},
    			testWriteTo{fileOps{"ab", int64(3), "cde"}, 8, nil},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{"abcde", 5}, sparseDatas{{0, 2}, {5, 3}}, 10},
    		tests: []testFnc{
    			testRemaining{10, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
Back to top