Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 102 for aBCD (4.3 sec)

  1. tensorflow/cc/gradients/linalg_grad.cc

      // "abcd->ac". But for equations like "aabbcd->ac" (generalized traces) or
      // "abc->ca" (transpose), we'd need another einsum operation after tiling.
      if (!has_repeated_labels &&
          input_subs_without_reduced_labels == output_subs) {
        // Obtain the shape of the output, as if keepdims=True on reduce sum. E.g.
        // for the equation "abcd->ac" with input shape [2,5,3,4], we get the
    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. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    foo:////://///  s:foo p:////://///
    c:/foo  s:c p:/foo
    //foo/bar  s:http h:foo p:/bar
    http://foo/path;a??e#f#g  s:http h:foo p:/path;a q:??e f:#f#g
    http://foo/abcd?efgh?ijkl  s:http h:foo p:/abcd q:?efgh?ijkl
    http://foo/abcd#foo?bar  s:http h:foo p:/abcd f:#foo?bar
    [61:24:74]:98  s:http h:example.org p:/foo/[61:24:74]:98
    http:[61:27]/:foo  s:http h:example.org p:/foo/[61:27]/:foo
    http://[1::2]:3:4
    http://2001::1
    http://2001::1]
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. cni/pkg/plugin/plugin_test.go

    		},
    		{
    			name: "Empty",
    			args: args{ports: []string{}},
    			want: []string{},
    		},
    		{
    			name: "Non-parseable",
    			args: args{ports: []string{"abcd", "2345", "abcd"}},
    			want: []string{"abcd", "2345"},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := dedupPorts(tt.args.ports); !reflect.DeepEqual(got, tt.want) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-local/src/test/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheTest.groovy

                assert partialCacheFile.name.startsWith(hashCode)
                assert partialCacheFile.name.endsWith(BuildCacheTempFileStore.PARTIAL_FILE_SUFFIX)
    
                output << "abcd"
                throw new RuntimeException("Simulated write error")
            }
    
            then:
            def ex = thrown RuntimeException
            ex.message == "Simulated write error"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 14:32:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

              body = transferKind.newRequestBody("ABCD"),
            ),
          )
        assertThat(readAscii(response.body.byteStream(), Int.MAX_VALUE))
          .isEqualTo("Page 2")
        val page1 = server.takeRequest()
        assertThat(page1.requestLine).isEqualTo("POST /page1 HTTP/1.1")
        assertThat(page1.body.readUtf8()).isEqualTo("ABCD")
        val page2 = server.takeRequest()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    					Username: "******@****.***",
    					UID:      "abcd-1234",
    					Groups:   []string{"stuff-dev", "main-eng"},
    					Extra:    map[string]authenticationv1beta1.ExtraValue{"foo": {"bar", "baz"}},
    				},
    			},
    			expectedAuthenticated: true,
    			expectedUser: &user.DefaultInfo{
    				Name:   "******@****.***",
    				UID:    "abcd-1234",
    				Groups: []string{"stuff-dev", "main-eng"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    					Username: "******@****.***",
    					UID:      "abcd-1234",
    					Groups:   []string{"stuff-dev", "main-eng"},
    					Extra:    map[string]authenticationv1.ExtraValue{"foo": {"bar", "baz"}},
    				},
    			},
    			expectedAuthenticated: true,
    			expectedUser: &user.DefaultInfo{
    				Name:   "******@****.***",
    				UID:    "abcd-1234",
    				Groups: []string{"stuff-dev", "main-eng"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  8. src/regexp/onepass_test.go

    		}
    	}
    }
    
    var onePassTests = []struct {
    	re        string
    	isOnePass bool
    }{
    	{`^(?:a|(?:a*))$`, false},
    	{`^(?:(a)|(?:a*))$`, false},
    	{`^(?:(?:(?:.(?:$))?))$`, true},
    	{`^abcd$`, true},
    	{`^(?:(?:a{0,})*?)$`, false},
    	{`^(?:(?:a+)*)$`, true},
    	{`^(?:(?:a|(?:aa)))$`, true},
    	{`^(?:[^\s\S])$`, true},
    	{`^(?:(?:a{3,4}){0,})$`, false},
    	{`^(?:(?:(?:a*)+))$`, true},
    	{`^[a-c]+$`, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternStepFactoryTest.groovy

            !step5.matches("other")
    
            and:
            def step6 = PatternStepFactory.getStep("*bc*?", true);
            step6 instanceof RegExpPatternStep
            step6.matches("bcd")
            step6.matches("abcd")
            step6.matches("123abc1")
            !step6.matches("bc")
            !step6.matches("BC")
            !step6.matches("ABC")
            !step6.matches("other")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. cmd/dummy-data-generator_test.go

    		ok, msg := cmpReaders(r1, r2)
    		if !(ok && msg == "") {
    			t.Fatalf("unexpected")
    		}
    	}
    
    	{
    		r1 := bytes.NewReader([]byte("abc"))
    		r2 := bytes.NewReader([]byte("abcd"))
    		ok, _ := cmpReaders(r1, r2)
    		if ok {
    			t.Fatalf("unexpected")
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top