Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 408 for equality (0.28 sec)

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

        else -> sameType(valueType, isAssignableTo)
    }
    
    
    /**
     * Can't check for equality: TAPI proxies are not equal to the original implementations.
     * TODO: maybe "reify" the TAPI proxies to ensure equality?
     */
    private
    fun sameType(left: DataType, right: DataType) = when (left) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultProjectComponentSelectorTest.groovy

            strictlyEquals(defaultBuildComponentSelector1, defaultBuildComponentSelector2) == equality
            (defaultBuildComponentSelector1.hashCode() == defaultBuildComponentSelector2.hashCode()) == hashCode
            (defaultBuildComponentSelector1.toString() == defaultBuildComponentSelector2.toString()) == stringRepresentation
    
            where:
            projectPath       | equality | hashCode | stringRepresentation
            ':myProjectPath1' | true     | true     | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/DefaultLibraryBinaryIdentifierTest.groovy

            (defaultBuildComponentIdentifier1.hashCode() == defaultBuildComponentIdentifier2.hashCode()) == hashCode
            (defaultBuildComponentIdentifier1.toString() == defaultBuildComponentIdentifier2.toString()) == stringRepresentation
    
            where:
            projectPath       | libraryName | variant | equality | hashCode | stringRepresentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultModuleComponentIdentifierTest.groovy

            (defaultModuleComponentIdentifier1.hashCode() == defaultModuleComponentIdentifier2.hashCode()) == hashCode
            (defaultModuleComponentIdentifier1.toString() == defaultModuleComponentIdentifier2.toString()) == stringRepresentation
    
            where:
            group         | name         | version | equality | hashCode | stringRepresentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/reflect/deepequal.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Deep equality test via reflection
    
    package reflect
    
    import (
    	"internal/bytealg"
    	"unsafe"
    )
    
    // During deepValueEqual, must keep track of checks that are
    // in progress. The comparison algorithm assumes that all
    // checks in progress are true when it reencounters them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammar.kt

            genericCallLikeComparison * zeroOrMore(comparisonOperator * genericCallLikeComparison)
        }
    
        val equality by debug {
            comparison * zeroOrMore(equalityOperator * comparison)
        }
    
        val conjunction by debug {
            equality * zeroOrMore(token(ANDAND) * equality)
        }
    
        val disjunction =
            conjunction * zeroOrMore(token(OROR) * conjunction)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/package-info.java

     *   <dt>{@link ListMultimap}
     *   <dd>An extension of {@link Multimap} which permits duplicate entries, supports random access of
     *       values for a particular key, and has <i>partially order-dependent equality</i> as defined
     *       by {@link ListMultimap#equals(Object)}. {@code ListMultimap} takes its name from the fact
     *       that the {@linkplain ListMultimap#get collection of values} associated with a given key
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 06 16:29:45 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/package-info.java

     *   <dt>{@link ListMultimap}
     *   <dd>An extension of {@link Multimap} which permits duplicate entries, supports random access of
     *       values for a particular key, and has <i>partially order-dependent equality</i> as defined
     *       by {@link ListMultimap#equals(Object)}. {@code ListMultimap} takes its name from the fact
     *       that the {@linkplain ListMultimap#get collection of values} associated with a given key
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 06 16:29:45 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectLibraryTest.groovy

            expect:
            with(library) {
                name == null
                classes == [] as Set
                sources == [] as Set
                javadoc == [] as Set
            }
        }
    
        def "defines equality as deep equality of all its properties"() {
            expect:
            new ProjectLibrary() == new ProjectLibrary()
            new ProjectLibrary(name: "lib1") == new ProjectLibrary(name: "lib1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    import (
    	"context"
    	"fmt"
    	"sort"
    	"time"
    
    	rbacv1ac "k8s.io/client-go/applyconfigurations/rbac/v1"
    	"k8s.io/klog/v2"
    
    	rbacv1 "k8s.io/api/rbac/v1"
    	"k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top