Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 304 for rhs (0.23 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/AssignmentTrace.kt

                assignments.forEach { (lhs, rhs, callId, method) ->
                    add(
                        when (val additionResult = assignmentResolver.addAssignment(lhs, rhs, method, callId.generationId)) {
                            is AssignmentResolver.AssignmentAdditionResult.AssignmentAdded -> AssignmentTraceElement.RecordedAssignment(additionResult.resolvedLhs, rhs, additionResult.assignmentMethod)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/assignments.go

    		}
    		return
    	}
    
    	rhs, commaOk := check.multiExpr(orig_rhs[0], l == 2)
    	r = len(rhs)
    	if l == r {
    		for i, lhs := range lhs {
    			check.assignVar(lhs, nil, rhs[i], "assignment")
    		}
    		// Only record comma-ok expression if both assignments succeeded
    		// (go.dev/issue/59371).
    		if commaOk && rhs[0].mode != invalid && rhs[1].mode != invalid {
    			check.recordCommaOkTypes(orig_rhs[0], rhs)
    		}
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/ConstructorComparatorTest.groovy

            def lhs = Stub(ClassGenerator.GeneratedConstructor)
            lhs.parameterTypes >> [String]
            def rhs = Stub(ClassGenerator.GeneratedConstructor)
            rhs.parameterTypes >> [String, Number]
    
            expect:
            comparator.compare(lhs, rhs) == -1
            comparator.compare(rhs, lhs) == 1
        }
    
        def "constructors with equal parameters are sorted by type names"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/optimize.mlir

    // RUN: stablehlo-quant-opt -optimize-int-graph -split-input-file %s -verify-diagnostics | FileCheck %s
    
    // CHECK-LABEL: func @convolution_add_add
    func.func @convolution_add_add(
        %lhs: tensor<?x3x2x1xi8>, %rhs: tensor<2x1x1x1xi8>,
        %zp_offset: tensor<?x2x2x1xi32>, %bias: tensor<1xi32>
      ) -> tensor<?x2x2x1xi32> {
      // CHECK-DAG: %[[conv:.*]] = mhlo.convolution
      // CHECK-DAG: %[[combined:.*]] = chlo.broadcast_add %[[zp_offset:.*]], %[[bias:.*]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 24 02:26:47 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/client_ca_test.go

    	tests := []struct {
    		name     string
    		lhs      *dynamicCertificateContent
    		rhs      *dynamicCertificateContent
    		expected bool
    	}{
    		{
    			name:     "both nil",
    			expected: true,
    		},
    		{
    			name:     "lhs nil",
    			rhs:      &dynamicCertificateContent{},
    			expected: false,
    		},
    		{
    			name:     "rhs nil",
    			lhs:      &dynamicCertificateContent{},
    			expected: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 17 13:37:16 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_fusion.td

    def LiftDotGeneralWithBiasSameShape : Pat<
      (StableHLO_AddOp:$res
        (StableHLO_DotGeneralOp
            $lhs, $rhs, $dot_dimension_numbers, $precision_config),
        $bias),
      (LiftAsTFXlaCallModule<"composite_dot_general_with_bias_same_shape_fn">
        (ArgumentList $lhs, $rhs, $bias),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"dot_dimension_numbers"> $dot_dimension_numbers),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/cert_key.go

    	sniNames []string
    }
    
    func (c *sniCertKeyContent) Equal(rhs *sniCertKeyContent) bool {
    	if c == nil || rhs == nil {
    		return c == rhs
    	}
    
    	if len(c.sniNames) != len(rhs.sniNames) {
    		return false
    	}
    
    	for i := range c.sniNames {
    		if c.sniNames[i] != rhs.sniNames[i] {
    			return false
    		}
    	}
    
    	return c.certKeyContent.Equal(&rhs.certKeyContent)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/cert_key_test.go

    	tests := []struct {
    		name     string
    		lhs      *certKeyContent
    		rhs      *certKeyContent
    		expected bool
    	}{
    		{
    			name:     "both nil",
    			expected: true,
    		},
    		{
    			name:     "lhs nil",
    			rhs:      &certKeyContent{},
    			expected: false,
    		},
    		{
    			name:     "rhs nil",
    			lhs:      &certKeyContent{},
    			expected: false,
    		},
    		{
    			name:     "same",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 13:27:45 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/client_ca.go

    	caBundle []byte
    }
    
    func (c *dynamicCertificateContent) Equal(rhs *dynamicCertificateContent) bool {
    	if c == nil || rhs == nil {
    		return c == rhs
    	}
    
    	if !c.clientCA.Equal(&rhs.clientCA) {
    		return false
    	}
    
    	if !c.servingCert.Equal(&rhs.servingCert) {
    		return false
    	}
    
    	if len(c.sniCerts) != len(rhs.sniCerts) {
    		return false
    	}
    
    	for i := range c.sniCerts {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. src/internal/types/testdata/spec/typeAliases1.23b.go

    // A type alias may have fewer type parameters than its RHS.
    type RHS[P any, Q ~int] struct {
    	p P
    	q Q
    }
    
    type _[P any] = RHS[P, int]
    
    // Or it may have more type parameters than its RHS.
    type _[P any, Q ~int, R comparable] = RHS[P, Q]
    
    // The type parameters of a type alias must implement the
    // corresponding type constraints of the type parameters
    // on the RHS (if any)
    type _[P any, Q ~int] = RHS[P, Q]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top