Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for abcdg (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/einsum.mlir

    }
    
    func.func @einsum_broadcast4(%arg0: tensor<3x4x5x6x7xf32>, %arg1: tensor<7x8xf32>) -> tensor<3x4x5x6x8xf32> {
      %0 = "tf.Einsum"(%arg0, %arg1) {T = "tfdtype$DT_FLOAT", equation = "abcdh,hg->abcdg"}: (tensor<3x4x5x6x7xf32>, tensor<7x8xf32>) -> tensor<3x4x5x6x8xf32>
      func.return %0 : tensor<3x4x5x6x8xf32>
      // CHECK-LABEL: einsum_broadcast4
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. src/regexp/find_test.go

    	{`a+`, "baaab", build(1, 1, 4)},
    	{"abcd..", "abcdef", build(1, 0, 6)},
    	{`a`, "a", build(1, 0, 1)},
    	{`x`, "y", nil},
    	{`b`, "abc", build(1, 1, 2)},
    	{`.`, "a", build(1, 0, 1)},
    	{`.*`, "abcdef", build(1, 0, 6)},
    	{`^`, "abcde", build(1, 0, 0)},
    	{`$`, "abcde", build(1, 5, 5)},
    	{`^abcd$`, "abcd", build(1, 0, 4)},
    	{`^bcd'`, "abcdef", nil},
    	{`^abcd$`, "abcde", nil},
    	{`a+`, "baaab", build(1, 1, 4)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  3. src/archive/tar/writer_test.go

    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{5, "abcde"}, sparseHoles{{2, 3}}, 8},
    		tests: []testFnc{
    			testRemaining{8, 5},
    			testWrite{"ab\x00\x00\x00cde", 8, nil},
    			testWrite{"a", 0, ErrWriteTooLong},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{5, "abcde"}, sparseHoles{{2, 3}}, 8},
    		tests: []testFnc{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/MultipartReaderTest.kt

        val multipart =
          """
          |--simple boundary
          |
          |abcd
          |--simple boundary
          |
          |efgh
          |--simple boundary--
          """.trimMargin()
            .replace("\n", "\r\n")
            .replace(Regex("(?m)abcd\r\n"), "abcd\n")
    
        val parts =
          MultipartReader(
            boundary = "simple boundary",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. internal/hash/reader_test.go

    		err               error
    	}{
    		0: {
    			desc:       "Success, no checksum verification provided.",
    			src:        bytes.NewReader([]byte("abcd")),
    			size:       4,
    			actualSize: 4,
    		},
    		{
    			desc:       "Failure md5 mismatch.",
    			src:        bytes.NewReader([]byte("abcd")),
    			size:       4,
    			actualSize: 4,
    			md5hex:     "d41d8cd98f00b204e9800998ecf8427f",
    			err: BadDigest{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. src/go/printer/testdata/declarations.input

    // alignment of map composite entries
    var _ = map[int]int{
    	// small key sizes: always align even if size ratios are large
    	a: a,
    	abcdefghabcdefgh: a,
    	ab: a,
    	abc: a,
    	abcdefgabcdefg: a,
    	abcd: a,
    	abcde: a,
    	abcdef: a,
    
    	// mixed key sizes: align when key sizes change within accepted ratio
    	abcdefgh: a,
    	abcdefghabcdefg: a,
    	abcdefghij: a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  7. src/net/ip_test.go

    	{"abcd:2345::/63", ParseIP("abcd:2345::"), &IPNet{IP: ParseIP("abcd:2345::"), Mask: IPMask(ParseIP("ffff:ffff:ffff:fffe::"))}, nil},
    	{"abcd:2345::/33", ParseIP("abcd:2345::"), &IPNet{IP: ParseIP("abcd:2345::"), Mask: IPMask(ParseIP("ffff:ffff:8000::"))}, nil},
    	{"abcd:2345::/32", ParseIP("abcd:2345::"), &IPNet{IP: ParseIP("abcd:2345::"), Mask: IPMask(ParseIP("ffff:ffff::"))}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. src/go/printer/testdata/declarations.golden

    // alignment of map composite entries
    var _ = map[int]int{
    	// small key sizes: always align even if size ratios are large
    	a:			a,
    	abcdefghabcdefgh:	a,
    	ab:			a,
    	abc:			a,
    	abcdefgabcdefg:		a,
    	abcd:			a,
    	abcde:			a,
    	abcdef:			a,
    
    	// mixed key sizes: align when key sizes change within accepted ratio
    	abcdefgh:		a,
    	abcdefghabcdefg:	a,
    	abcdefghij:		a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse_test.go

    	{`(?<name>a)`, `cap{name:lit{a}}`},
    
    	// Case-folded literals
    	{`[Aa]`, `litfold{A}`},
    	{`[\x{100}\x{101}]`, `litfold{Ā}`},
    	{`[Δδ]`, `litfold{Δ}`},
    
    	// Strings
    	{`abcde`, `str{abcde}`},
    	{`[Aa][Bb]cd`, `cat{strfold{AB}str{cd}}`},
    
    	// Factoring.
    	{`abc|abd|aef|bcx|bcy`, `alt{cat{lit{a}alt{cat{lit{b}cc{0x63-0x64}}str{ef}}}cat{str{bc}cc{0x78-0x79}}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/CharSourceTest.java

      }
    
      public void testConcat() throws IOException {
        CharSource c1 = CharSource.wrap("abc");
        CharSource c2 = CharSource.wrap("");
        CharSource c3 = CharSource.wrap("de");
    
        String expected = "abcde";
    
        assertEquals(expected, CharSource.concat(ImmutableList.of(c1, c2, c3)).read());
        assertEquals(expected, CharSource.concat(c1, c2, c3).read());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top