Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 410 for 1011 (0.09 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-SAME: dim_numbers = [b, 0, 1, 2, f]x[0, 1, 2, o, i]->[b, 0, 1, 2, f]
      // CHECK-SAME{LITERAL}: window = {stride = [1, 1, 1], pad = [[1, 1], [1, 1], [1, 1]], lhs_dilate = [1, 1, 1], rhs_dilate = [1, 1, 1]}
      // CHECK-SAME: batch_group_count = 1 : i64,
      // CHECK-SAME: feature_group_count = 1 : i64
    
      // CHECK: return %[[RESULT]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // %9 = stablehlo.broadcast_in_dim %8
    // %10 = stablehlo.convert %9  // i8 -> f32 cast trick for z1.
    // %11 = stablehlo.convert %5  // i8 -> f32 cast trick for filter.
    // %12 = stablehlo.convolution(%10, %11)  // q2 * z1
    // %13 = stablehlo.subtract %7, %12  // q1 * q2 - q2 * z1
    // %14 = stablehlo.constant  // Merged scale s1 * s2, precalculated.
    // %15 = stablehlo.broadcast_in_dim %14
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom

        </dependency>
      </dependencies>
      <scm>
        <connection>scm:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-1.0.10</connection>
        <developerConnection>scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-1.0.10</developerConnection>
        <url>http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-1.0.10</url>
      </scm>
      <organization>
        <name>Codehaus</name>
        <url>http://www.codehaus.org/</url>
      </organization>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_test.go

    	}
    
    	clientConfig.MinVersion = 0
    	serverConfig.MaxVersion = VersionTLS11
    	_, _, err = testHandshake(t, clientConfig, serverConfig)
    	if err == nil {
    		t.Fatalf("expected failure to connect with TLS 1.0/1.1")
    	}
    }
    
    func TestCipherSuitePreference(t *testing.T) {
    	serverConfig := &Config{
    		CipherSuites: []uint16{TLS_RSA_WITH_RC4_128_SHA, TLS_AES_128_GCM_SHA256,
    			TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

                    "1.0.1-rc-1-SNAPSHOT",
                    "1.0.1-rc-1",
                    "1.0.1-SNAPSHOT",
                    "1.0.1",
                    "1.1-SNAPSHOT",
                    "1.1");
    
            assertSequence("1.0-alpha", "1.0", "1.0-1");
            assertSequence("1.0.alpha", "1.0", "1.0-1");
            assertSequence("1.0-alpha", "1.0", "1.0.1");
            assertSequence("1.0.alpha", "1.0", "1.0.1");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

    // CHECK:     return %1#0, %1#1 : tensor<?x?x!tf_type.string>, tensor<?x?x!tf_type.string>
    // CHECK:   }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    	{r: "bytes=0-9", code: StatusPartialContent, ranges: []wantRange{{0, testFileLen - 1}}},
    	{r: "bytes=0-10", code: StatusPartialContent, ranges: []wantRange{{0, testFileLen}}},
    	{r: "bytes=0-11", code: StatusPartialContent, ranges: []wantRange{{0, testFileLen}}},
    	{r: "bytes=10-11", code: StatusPartialContent, ranges: []wantRange{{testFileLen - 1, testFileLen}}},
    	{r: "bytes=10-", code: StatusPartialContent, ranges: []wantRange{{testFileLen - 1, testFileLen}}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. cmd/server_test.go

    	// also has expected response data.
    	testCases := []struct {
    		byteRange      string
    		expectedString string
    	}{
    		// request for byte range 10-11.
    		// expecting the result to contain only putContent[10:12] bytes.
    		{"10-11", putContent[10:12]},
    		// request for object data after the first byte.
    		{"1-", putContent[1:]},
    		// request for object data after the first byte.
    		{"6-", putContent[6:]},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    		{"test-bucket-list-object", "Asia", "europe-object", "", 0, ListObjectsInfo{}, nil, true},
    		// Setting a non-existing directory to be prefix (10-11).
    		{"empty-bucket", "europe/france/", "", "", 1, ListObjectsInfo{}, nil, true},
    		{"empty-bucket", "africa/tunisia/", "", "", 1, ListObjectsInfo{}, nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  10. src/html/template/exec_test.go

    	{"len(s) < indexes < cap(s)", "{{slice .SICap 6 10 10}}", "[0 0 0 0]", tVal, true},
    	{"indexes > cap(s)", "{{slice .SICap 10 11}}", "", tVal, false},
    	{"indexes > cap(s)", "{{slice .SICap 6 10 11}}", "", tVal, false},
    	{"array[:]", "{{slice .AI}}", "[3 4 5]", tVal, true},
    	{"array[1:]", "{{slice .AI 1}}", "[4 5]", tVal, true},
    	{"array[1:2]", "{{slice .AI 1 2}}", "[4]", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top