Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for a$b (0.06 sec)

  1. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    		return Convert_v1alpha2_AllocationResult_To_resource_AllocationResult(a.(*v1alpha2.AllocationResult), b.(*resource.AllocationResult), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*resource.AllocationResult)(nil), (*v1alpha2.AllocationResult)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation_test.go

    								APIVersions: []string{"a"},
    								Resources:   []string{"*", "a/b", "a/*", "*/b"},
    							},
    						},
    					}},
    					NamespaceSelector: &metav1.LabelSelector{
    						MatchLabels: map[string]string{"a": "b"},
    					},
    					ObjectSelector: &metav1.LabelSelector{
    						MatchLabels: map[string]string{"a": "b"},
    					},
    				},
    			},
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val1 + self.val2 == ['a', 'b', 'c']",
    				"self.val1 + ['c', 'd'] == ['a', 'b', 'c', 'd']",
    
    				// Join function
    				"self.val1.join('-') == 'a-b-c'",
    				"['a', 'b', 'c'].join('-') == 'a-b-c'",
    				"self.val1.join() == 'abc'",
    				"['a', 'b', 'c'].join() == 'abc'",
    
    				// CEL sets functions
    				"sets.contains(['a', 'b'], [])",
    				"sets.contains(['a', 'b'], ['b'])",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. pkg/apis/apps/validation/validation_test.go

    		Spec: apps.StatefulSetSpec{
    			PodManagementPolicy: apps.OrderedReadyPodManagement,
    			Selector:            &metav1.LabelSelector{MatchLabels: map[string]string{"a": "b"}},
    			Template:            template.Template,
    			UpdateStrategy:      apps.StatefulSetUpdateStrategy{Type: apps.RollingUpdateStatefulSetStrategyType},
    		},
    	}
    
    	for _, tw := range tweaks {
    		tw(&ss)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  5. pkg/registry/batch/job/strategy_test.go

    	}
    }
    
    func TestJobStrategy_ValidateUpdate(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    	validSelector := &metav1.LabelSelector{
    		MatchLabels: map[string]string{"a": "b"},
    	}
    	validPodTemplateSpec := api.PodTemplateSpec{
    		ObjectMeta: metav1.ObjectMeta{
    			Labels: validSelector.MatchLabels,
    		},
    		Spec: api.PodSpec{
    			RestartPolicy: api.RestartPolicyOnFailure,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	{x: []byte("abcdef"), y: []byte("abcdef")},
    	{x: [][]byte{[]byte("abcdef")}, y: [][]byte{[]byte("abcdef")}},
    
    	{x: [6]byte{'a', 'b', 'c', 'a', 'b', 'c'}, y: [6]byte{'a', 'b', 'c', 'a', 'b', 'c'}},
    	{x: [][6]byte{[6]byte{'a', 'b', 'c', 'a', 'b', 'c'}}, y: [][6]byte{[6]byte{'a', 'b', 'c', 'a', 'b', 'c'}}},
    }
    
    func TestDeepEqualAllocs(t *testing.T) {
    	for _, tt := range deepEqualPerfTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				loadRSAKey(t, "testdata/rsa_1.pem", jose.RS256),
    			},
    			claims: fmt.Sprintf(`{
    				"iss": "https://auth.example.com/a/b/foo",
    				"aud": "my-client",
    				"username": "jane",
    				"exp": %d
    			}`, valid.Unix()),
    			openIDConfig: `{
    					"issuer": "https://auth.example.com/a/b/foo",
    					"jwks_uri": "{{.URL}}/.testing/keys"
    			}`,
    			fetchKeysFromRemote: true,
    			want: &user.DefaultInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    			// C->B, use an unsupported ExtKeyUsage (in this case ExtKeyUsageCodeSigning) which invalidates
    			// the path Trust Anchor -> C -> B -> EE. The remaining valid paths should be:
    			//   * Trust Anchor -> A -> B -> EE
    			//   * Trust Anchor -> C -> A -> B -> EE
    			//
    			//     +---------+
    			//     |  Trust  |
    			//     | Anchor  |
    			//     +---------+
    			//      |       |
    			//      v       v
    			//   +---+    +---+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          return intersect(
              inputs,
              ImmutableSet.of(
                  delayedSuccess, delayedFailed, delayedCancelled, delayedRuntimeException));
        }
    
        void assertHasDelayed(ListenableFuture<String> a, ListenableFuture<String> b, Exception e) {
          ImmutableSet<ListenableFuture<String>> inputs = ImmutableSet.of(a, b);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          return intersect(
              inputs,
              ImmutableSet.of(
                  delayedSuccess, delayedFailed, delayedCancelled, delayedRuntimeException));
        }
    
        void assertHasDelayed(ListenableFuture<String> a, ListenableFuture<String> b, Exception e) {
          ImmutableSet<ListenableFuture<String>> inputs = ImmutableSet.of(a, b);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top