Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 145 for 2345 (0.15 sec)

  1. cni/pkg/nodeagent/informers_test.go

    	defer cancel()
    
    	enrolledNotRedirected := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "enrolled-not-redirected",
    			Namespace: "test",
    			UID:       "12345",
    			Labels:    map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeAmbient},
    		},
    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: "11.1.1.12",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. pkg/serviceaccount/jwt_test.go

    func TestTokenGenerateAndValidate(t *testing.T) {
    	expectedUserName := "system:serviceaccount:test:my-service-account"
    	expectedUserUID := "12345"
    
    	// Related API objects
    	serviceAccount := &v1.ServiceAccount{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "my-service-account",
    			UID:       "12345",
    			Namespace: "test",
    		},
    	}
    	rsaSecret := &v1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "my-rsa-secret",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3, 4}, -9, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -5, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -1, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, 0, new short[] {1, 2, 3, 4});
        testRotate(new short[] {1, 2, 3, 4}, 1, new short[] {4, 1, 2, 3});
        testRotate(new short[] {1, 2, 3, 4}, 5, new short[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  4. pkg/controller/serviceaccount/tokens_controller_test.go

    	return &v1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "token-secret-1",
    			Namespace:       "default",
    			UID:             "23456",
    			ResourceVersion: "1",
    			Annotations: map[string]string{
    				v1.ServiceAccountNameKey: "default",
    				v1.ServiceAccountUIDKey:  "12345",
    			},
    		},
    		Type: v1.SecretTypeServiceAccountToken,
    		Data: map[string][]byte{
    			"token":     []byte("ABC"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. src/runtime/string_test.go

    		{"012345", 12345, true},
    		{"98765432100", 98765432100, true},
    		{"9223372036854775807", 1<<63 - 1, true},
    
    		// Good trivial suffix inputs.
    		{"1B", 1, true},
    		{"12345B", 12345, true},
    		{"012345B", 12345, true},
    		{"98765432100B", 98765432100, true},
    		{"9223372036854775807B", 1<<63 - 1, true},
    
    		// Good binary suffix inputs.
    		{"1KiB", 1 << 10, true},
    		{"05KiB", 5 << 10, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/arith_test.go

    		0, 1, 2, 3, 4, 5,
    		-1, -2, -3, -4, -5,
    		sixS, 2 * sixS, 3 * sixS, 5 * sixS, 12345 * sixS,
    		sixS + 1, 2*sixS - 5, 3*sixS + 3, 5*sixS + 4, 12345*sixS - 2,
    		-sixS, -2 * sixS, -3 * sixS, -5 * sixS, -12345 * sixS,
    		-sixS + 1, -2*sixS - 5, -3*sixS + 3, -5*sixS + 4, -12345*sixS - 2,
    		nineteenS, 2 * nineteenS, 3 * nineteenS, 5 * nineteenS, 12345 * nineteenS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  7. test/codegen/slices.go

    //   Test PPC64 SUBFCconst folding rules   //
    //   triggered by slice operations.        //
    // --------------------------------------- //
    
    func SliceWithConstCompare(a []int, b int) []int {
    	var c []int = []int{1, 2, 3, 4, 5}
    	if b+len(a) < len(c) {
    		// ppc64x:-"NEG"
    		return c[b:]
    	}
    	return a
    }
    
    func SliceWithSubtractBound(a []int, b int) []int {
    	// ppc64x:"SUBC",-"NEG"
    	return a[(3 - b):]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 18:57:27 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/storage/storage_test.go

    		},
    		{
    			pod: api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Status:     api.PodStatus{PodIPs: []api.PodIP{{IP: expectedIP}}},
    			},
    			query:    "foo:12345",
    			location: expectedIP + ":12345",
    		},
    		{
    			pod: api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{Name: "ctr"},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3, 4}, -9, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -5, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, -1, new short[] {2, 3, 4, 1});
        testRotate(new short[] {1, 2, 3, 4}, 0, new short[] {1, 2, 3, 4});
        testRotate(new short[] {1, 2, 3, 4}, 1, new short[] {4, 1, 2, 3});
        testRotate(new short[] {1, 2, 3, 4}, 5, new short[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/LongsTest.java

        testRotate(new long[] {1, 2, 3, 4}, -9, new long[] {2, 3, 4, 1});
        testRotate(new long[] {1, 2, 3, 4}, -5, new long[] {2, 3, 4, 1});
        testRotate(new long[] {1, 2, 3, 4}, -1, new long[] {2, 3, 4, 1});
        testRotate(new long[] {1, 2, 3, 4}, 0, new long[] {1, 2, 3, 4});
        testRotate(new long[] {1, 2, 3, 4}, 1, new long[] {4, 1, 2, 3});
        testRotate(new long[] {1, 2, 3, 4}, 5, new long[] {4, 1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top