Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,035 for equality (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/equality.go

    limitations under the License.
    */
    
    package fieldmanager
    
    import (
    	"context"
    	"fmt"
    	"os"
    	"reflect"
    	"strconv"
    	"sync"
    	"time"
    
    	"k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/meta"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apiserver/pkg/endpoints/metrics"
    	"k8s.io/klog/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 14:56:34 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. test/fixedbugs/issue4585.go

    	if a != b {
    		panic("broken equality: a != b")
    	}
    
    	m[a] = 1
    	m[b] = 2
    	if len(m) == 2 {
    		panic("broken hash: len(m) == 2")
    	}
    	if m[a] != 2 {
    		panic("m[a] != 2")
    	}
    }
    
    func test3() {
    	var a, b USmall
    	copy((*[12]byte)(unsafe.Pointer(&a))[:], "hello world!")
    	a.A, a.B = 1, 2
    	b.A, b.B = 1, 2
    	if a != b {
    		panic("broken equality: a != b")
    	}
    }
    
    func test4() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/sparse_test.go

    	}
    
    	// clear typemeta
    	uncastDstObj1.(*FakeV1Obj).TypeMeta = metav1.TypeMeta{}
    	uncastDstObj2.(*FakeV2DifferentObj).TypeMeta = metav1.TypeMeta{}
    
    	if !equality.Semantic.DeepEqual(srcObj1, uncastDstObj1) {
    		t.Fatal(cmp.Diff(srcObj1, uncastDstObj1))
    	}
    	if !equality.Semantic.DeepEqual(srcObj2, uncastDstObj2) {
    		t.Fatal(cmp.Diff(srcObj2, uncastDstObj2))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top