Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for aabbcd (0.12 sec)

  1. tensorflow/cc/gradients/linalg_grad.cc

        // the shape [2,5,3,4] results in the gradient wrt "abcd".
        return BroadcastTo(scope, Reshape(scope, output_grad, reduced_shape),
                           input_shape);
      }
    
      // If we *do* have traces or transpose operations, then prepend the extra
      // reduced dimensions to the front. E.g. Given the equation "aabbcd->ca" we'd
      // first obtain the VJP for "bdca->ca", and then the VJP for "aabbcd->bdca".
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  2. src/regexp/testdata/basic.dat

    BE	^a$			a		(0,1)
    BE	abc			abc		(0,3)
    BE	abc			xabcy		(1,4)
    BE	abc			ababc		(2,5)
    BE	ab*c			abc		(0,3)
    BE	ab*bc			abc		(0,3)
    BE	ab*bc			abbc		(0,4)
    BE	ab*bc			abbbbc		(0,6)
    E	ab+bc			abbc		(0,4)
    E	ab+bc			abbbbc		(0,6)
    E	ab?bc			abbc		(0,4)
    E	ab?bc			abc		(0,3)
    E	ab?c			abc		(0,3)
    BE	^abc$			abc		(0,3)
    BE	^abc			abcc		(0,3)
    BE	abc$			aabc		(1,4)
    BE	^			abc		(0,0)
    BE	$			abc		(3,3)
    BE	a.c			abc		(0,3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  3. src/regexp/testdata/repetition.dat

    :HA#281:E	(ab|a|c|bcd){1,}(d*)	ababcd	(0,6)(4,5)(5,6)	RE2/Go
    #:HA#282:E	(ab|a|c|bcd){2,}(d*)	ababcd	(0,6)(3,6)(6,6)
    :HA#282:E	(ab|a|c|bcd){2,}(d*)	ababcd	(0,6)(4,5)(5,6)	RE2/Go
    #:HA#283:E	(ab|a|c|bcd){3,}(d*)	ababcd	(0,6)(3,6)(6,6)
    :HA#283:E	(ab|a|c|bcd){3,}(d*)	ababcd	(0,6)(4,5)(5,6)	RE2/Go
    :HA#284:E	(ab|a|c|bcd){4,}(d*)	ababcd	NOMATCH
    #:HA#285:E	(ab|a|c|bcd){0,10}(d*)	ababcd	(0,6)(3,6)(6,6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRendererTest.groovy

            signatureFailure("Maven", ['abcd': signatureError(FAILED)])             | 'Artifact was signed with key abcd (not found) but signature didn\'t match'
            signatureFailure("Maven", ['abcd': signatureError(IGNORED_KEY)])        | 'Artifact was signed with an ignored key: abcd (not found)'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/generate/generate_test.go

    	inLine = "//go:generate CMD0"
    	expected = []string{"abZcd"}
    	got = g.split(inLine + "\n")
    
    	if !reflect.DeepEqual(got, expected) {
    		t.Errorf("split(%q): got %q expected %q", inLine, got, expected)
    	}
    
    	// What if the variable is now undefined?  Should be empty substitution.
    
    	os.Unsetenv("_X")
    	inLine = "//go:generate CMD0"
    	expected = []string{"abcd"}
    	got = g.split(inLine + "\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    	{"xab"[:2], "ab", -1},
    	{"", "abc", -1},
    	{"xbc", "abc", -1},
    	{"abc", "abc", 0},
    	{"xabc", "abc", 1},
    	{"xabc"[:3], "abc", -1},
    	{"xabxc", "abc", -1},
    	{"", "abcd", -1},
    	{"xbcd", "abcd", -1},
    	{"abcd", "abcd", 0},
    	{"xabcd", "abcd", 1},
    	{"xyabcd"[:5], "abcd", -1},
    	{"xbcqq", "abcqq", -1},
    	{"abcqq", "abcqq", 0},
    	{"xabcqq", "abcqq", 1},
    	{"xyabcqq"[:6], "abcqq", -1},
    	{"xabxcqq", "abcqq", -1},
    	{"xabcqxq", "abcqq", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/bytes/bytes_test.go

    	s   string
    	sep string
    	n   int
    	a   []string
    }
    
    var splittests = []SplitTest{
    	{"", "", -1, []string{}},
    	{abcd, "a", 0, nil},
    	{abcd, "", 2, []string{"a", "bcd"}},
    	{abcd, "a", -1, []string{"", "bcd"}},
    	{abcd, "z", -1, []string{"abcd"}},
    	{abcd, "", -1, []string{"a", "b", "c", "d"}},
    	{commas, ",", -1, []string{"1", "2", "3", "4"}},
    	{dots, "...", -1, []string{"1", ".2", ".3", ".4"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. mkdocs.yml

          emoji_generator: !!python/name:materialx.emoji.to_svg
      - pymdownx.inlinehilite
      - pymdownx.magiclink
      - pymdownx.smartsymbols
      - pymdownx.superfences
      - pymdownx.tilde
      - pymdownx.tabbed:
          alternate_style: true
      - tables
    
    plugins:
      - search
      - redirects:
          redirect_maps:
            # Redirect all feature pages to features/*
            'caching.md': 'features/caching.md'
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

        def "prefers exact match over camel case match"() {
            expect:
            matches("sName", "sName", "someName", "sNames")
            matches("so Name", "so Name", "some Name", "so name")
            matches("ABC", "ABC", "AaBbCc")
        }
    
        def "prefers exact match over kebab case match"() {
            expect:
            matches("sName", "sName", "some-name", "some-Name")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  10. 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)
Back to top