Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 655 for IsSame (0.1 sec)

  1. src/internal/types/testdata/check/cycles1.go

    		C
    	}
    	ABC3 interface {
    		A
    		BC
    	}
    )
    
    var (
    	x1 ABC1
    	x2 ABC2
    	x3 ABC3
    )
    
    func _() {
    	// all types have the same method set
    	x1 = x2
    	x2 = x1
    
    	x1 = x3
    	x3 = x1
    
    	x2 = x3
    	x3 = x2
    
    	// all methods return the same type again
    	x1 = x1.a()
    	x1 = x1.b()
    	x1 = x1.c()
    
    	x2 = x2.a()
    	x2 = x2.b()
    	x2 = x2.c()
    
    	x3 = x3.a()
    	x3 = x3.b()
    	x3 = x3.c()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 781 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testplugin/testdata/host/host.go

    		log.Fatalf("plugin1.ReadCommonX()=%d, want %d", got, wantX)
    	}
    
    	// sub/plugin1.so is a different plugin with the same name as
    	// the already loaded plugin. It also depends on common. Test
    	// that we can load the different plugin, it is actually
    	// different, and that it sees the same common package.
    	subpPath, err := filepath.Abs("sub/plugin1.so")
    	if err != nil {
    		log.Fatalf("filepath.Abs(%q) failed: %v", subpPath, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/xla_call_module_to_call.mlir

    module {
      // CHECK-LABEL: func.func @main
      func.func @main(%arg0: tensor<1x1024xf32>) -> tensor<1x3xf32> {
        // CHECK: call @composite_dot_general_fn_1
        // CHECK-SAME: (tensor<1x1024xf32>, tensor<1024x3xf32>) -> tensor<1x3xf32>
        // CHECK-NOT: tf.XlaCallModule
        %0 = "tf.Const"() <{value = dense<0.5> : tensor<1024x3xf32>}> : () -> tensor<1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 20:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/decompose_resource_op.mlir

    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 293 : i32}} {
    
    // CHECK-LABEL: func @gather
    // CHECK-SAME: ([[in_chain:%.*]]: !tfrt.chain
    // CHECK-SAME: [[arg0:%.*]]: !tfrt_fallback.tf_tensor, [[arg1:%.*]]: !tfrt_fallback.tf_tensor)
    // CHECK: [[const:%.*]] = tfrt_fallback_async.const_dense_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. operator/pkg/translate/strategic_port_merge_test.go

    		},
    		{
    			name:                "same base and overlay",
    			basePorts:           []*v1.ServicePort{httpPort, httpsPort},
    			overlayPorts:        []*v1.ServicePort{httpsPort, httpPort},
    			expectedMergedPorts: []*v1.ServicePort{httpPort, httpsPort},
    		},
    		{
    			name:                "base and overlay for the same port, different protocol",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:37 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/unwrap_xla_call_module_op.mlir

      // CHECK-SAME: _entry_function = @composite_dot_general_fn_1
      // CHECK-SAME: _tfl_quant_trait = "fully_quantizable"
      // CHECK-NOT: "tf.XlaCallModule"
      // CHECK-NEXT: %[[RESHAPE:.*]] = stablehlo.reshape %[[CALL1]] : (tensor<10x1x3xf32>) -> tensor<3x10xf32>
      // CHECK-NEXT: %[[CALL2:.*]] = "tf.XlaCallModule"(%[[RESHAPE]])
      // CHECK-SAME: _entry_function = @main_1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/hash/maphash/example_test.go

    	// changing its seed.
    	h.Reset()
    
    	// Use SetSeed to create a new Hash h2 which will behave
    	// identically to h.
    	var h2 maphash.Hash
    	h2.SetSeed(h.Seed())
    
    	h.WriteString("same")
    	h2.WriteString("same")
    	fmt.Printf("%#x == %#x\n", h.Sum64(), h2.Sum64())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 24 01:59:55 UTC 2020
    - 933 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

      CPred<"getElementTypeOrSelf($0).isa<mlir::quant::UniformQuantizedType>()">>;
    
    // Checks if the given two values have the same type.
    def AreTheSameElementType : Constraint<
      CPred<"$0.getType() == $1.getType()">>;
    
    // Checks if the given two values are the same.
    def AreTheSameValue : Constraint<
      CPred<"$0 == $1">>;
    
    // Checks if the value has rank.
    def HasRank : Constraint<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/IncludedBuildValidationIntegrationTest.groovy

            when:
            fails(buildA, "help")
    
            then:
            failure.assertHasDescription("Included build in ${buildB} has name 'buildB' which is the same as a project of the main build.")
        }
    
        def "included build name can be the same as root project name"() {
            given:
            buildB.settingsFile.text = "rootProject.name = 'buildA'"
    
            when:
            includedBuilds << buildB
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_flow.mlir

      func.return %4 : tensor<*xf32>
    }
    
    // CHECK-LABEL: @fake_quant_conv
    // CHECK-SAME: %[[ARG0:.*]]: tensor<1x3
    // CHECK-SAME: %[[ARG1:.*]]: tensor<2x3
    // CHECK-DAG: %[[CST:.*]] = "tf.Const"() <{value = dense<0.00117647066> : tensor<f32>}> : () -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top