Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 710 for equality (0.32 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/common/equality.go

    Alexander Zielenski <******@****.***> 1697682699 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 21:53:21 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/tests/sharingObjectsWithConfigurationCache.out

    > Task :checkEquality
    POJO reference equality: true
    Collection reference equality: false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 115 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/tests/sharingObjectsWithoutConfigurationCache.out

    > Task :checkEquality
    POJO reference equality: true
    Collection reference equality: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 114 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/groovy/build.gradle

        stateObject = objectValue
        strings = stringsValue
    
        doLast { // <1>
            println("POJO reference equality: ${stateObject === objectValue}") // <2>
            println("Collection reference equality: ${strings === stringsValue}") // <3>
            println("Collection equality: ${strings == stringsValue}") // <4>
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 641 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/sharedObjects/kotlin/build.gradle.kts

        stateObject = objectValue
        strings = stringsValue
    
        doLast { // <1>
            println("POJO reference equality: ${stateObject === objectValue}") // <2>
            println("Collection reference equality: ${strings === stringsValue}") // <3>
            println("Collection equality: ${strings == stringsValue}") // <4>
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 657 bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

     * follows:
     *
     * <ul>
     *   <li>"{@code [group }<i>i</i>{@code , item }<i>j</i>{@code ]}" refers to the
     *       <i>j</i><sup>th</sup> item in the <i>i</i><sup>th</sup> equality group, where both equality
     *       groups and the items within equality groups are numbered starting from 1. When either a
     *       constructor argument or an equal object is provided, that becomes group 1.
     * </ul>
     *
     * @author Jim McMaster
     * @author Jige Yu
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/EqualsTester.java

     * follows:
     *
     * <ul>
     *   <li>"{@code [group }<i>i</i>{@code , item }<i>j</i>{@code ]}" refers to the
     *       <i>j</i><sup>th</sup> item in the <i>i</i><sup>th</sup> equality group, where both equality
     *       groups and the items within equality groups are numbered starting from 1. When either a
     *       constructor argument or an equal object is provided, that becomes group 1.
     * </ul>
     *
     * @author Jim McMaster
     * @author Jige Yu
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbolBase.kt

    /**
     * [KaFirNamedClassOrObjectSymbolBase] provides shared equality and hash code implementations for FIR-based named class or object symbols so
     * that symbols of different kinds can be compared and remain interchangeable.
     */
    internal sealed class KaFirNamedClassOrObjectSymbolBase : KaNamedClassOrObjectSymbol(), KaFirSymbol<FirRegularClassSymbol> {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue67160.go

    // Test to make sure that we don't try using larger loads for
    // generated equality functions on architectures that can't do
    // unaligned loads.
    
    package main
    
    // T has a big field that wants to be compared with larger loads/stores.
    // T is "special" because of the unnamed field, so it needs a generated equality function.
    // T is an odd number of bytes in size and has alignment 1.
    type T struct {
    	src [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:34:04 UTC 2024
    - 767 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultIsolatedProjectSpec.groovy

            def subject = new DefaultIsolatedProject(project, project)
    
            when:
            def hashCode = subject.hashCode()
            def equality = subject.equals(new DefaultIsolatedProject(project, project))
    
            then:
            hashCode == 42
            equality
            1 * project.hashCode() >> 42
            1 * project.equals(project) >> true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 13:01:58 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top