Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 555 for LabelSelector (0.24 sec)

  1. pkg/registry/admissionregistration/validatingadmissionpolicy/strategy_test.go

    					r := admissionregistration.MatchPolicyType("Exact")
    					return &r
    				}(),
    				ObjectSelector: &metav1.LabelSelector{
    					MatchLabels: map[string]string{"a": "b"},
    				},
    				NamespaceSelector: &metav1.LabelSelector{
    					MatchLabels: map[string]string{"a": "b"},
    				},
    				ResourceRules: []admissionregistration.NamedRuleWithOperations{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme/register_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func TestListOptions(t *testing.T) {
    	// verify round trip conversion
    	ten := int64(10)
    	in := &metav1.ListOptions{
    		LabelSelector:   "a=1",
    		FieldSelector:   "b=1",
    		ResourceVersion: "10",
    		TimeoutSeconds:  &ten,
    		Watch:           true,
    	}
    	out := &metainternalversion.ListOptions{}
    	if err := scheme.Convert(in, out, nil); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy_test.go

    				},
    				Spec: api.PodSpec{
    					Affinity: &api.Affinity{
    						PodAffinity: &api.PodAffinity{
    							RequiredDuringSchedulingIgnoredDuringExecution: []api.PodAffinityTerm{
    								{
    									LabelSelector: &metav1.LabelSelector{
    										MatchLabels: map[string]string{
    											"region": "Asia",
    										},
    									},
    									MatchLabelKeys:    []string{"country"},
    									MismatchLabelKeys: []string{"city"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.ListOptions.yaml

    allowWatchBookmarks: true
    apiVersion: v1
    continue: continueValue
    fieldSelector: fieldSelectorValue
    kind: ListOptions
    labelSelector: labelSelectorValue
    limit: 7
    resourceVersion: resourceVersionValue
    resourceVersionMatch: resourceVersionMatchValue
    sendInitialEvents: true
    timeoutSeconds: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 300 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ListOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 376 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ListOptions.yaml

    allowWatchBookmarks: true
    apiVersion: v1
    continue: continueValue
    fieldSelector: fieldSelectorValue
    kind: ListOptions
    labelSelector: labelSelectorValue
    limit: 7
    resourceVersion: resourceVersionValue
    resourceVersionMatch: resourceVersionMatchValue
    sendInitialEvents: true
    timeoutSeconds: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 300 bytes
    - Viewed (0)
  7. hack/testdata/rollingupdate-daemonset.yaml

      template:
        metadata:
          labels:
            service: bind
        spec:
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
                - labelSelector:
                    matchExpressions:
                    - key: "service"
                      operator: "In"
                      values: ["bind"]
                  topologyKey: "kubernetes.io/hostname"
                  namespaces: []
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 735 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta1/zz_generated.deepcopy.go

    func (in *ExternalMetricSource) DeepCopyInto(out *ExternalMetricSource) {
    	*out = *in
    	if in.MetricSelector != nil {
    		in, out := &in.MetricSelector, &out.MetricSelector
    		*out = new(v1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.TargetValue != nil {
    		in, out := &in.TargetValue, &out.TargetValue
    		x := (*in).DeepCopy()
    		*out = &x
    	}
    	if in.TargetAverageValue != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 15.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ListOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 376 bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/helper_test.go

    	tests := []struct {
    		Name          string
    		Err           bool
    		ErrMsg        string
    		FieldSelector string
    		LabelSelector string
    	}{
    		{
    			Name: "No selector",
    			Err:  false,
    		},
    		{
    			Name:          "Only Label Selector",
    			Err:           false,
    			LabelSelector: "foo=baz",
    		},
    		{
    			Name:          "Only Field Selector",
    			Err:           false,
    			FieldSelector: "xyz=zyx",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 25.2K bytes
    - Viewed (0)
Back to top