Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mismatchLabelKeys (0.24 sec)

  1. pkg/api/pod/util_test.go

    			name:    "[PodAffinity/required] feature disabled, only old pod uses MatchLabelKeys/MismatchLabelKeys field",
    			enabled: false,
    			oldPodSpec: &api.PodSpec{
    				Affinity: &api.Affinity{
    					PodAffinity: &api.PodAffinity{
    						RequiredDuringSchedulingIgnoredDuringExecution: []api.PodAffinityTerm{
    							{MatchLabelKeys: []string{"foo"}, MismatchLabelKeys: []string{"foo"}},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.MatchLabelKeys != nil {
    		in, out := &in.MatchLabelKeys, &out.MatchLabelKeys
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.MismatchLabelKeys != nil {
    		in, out := &in.MismatchLabelKeys, &out.MismatchLabelKeys
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.MatchLabelKeys != nil {
    		in, out := &in.MatchLabelKeys, &out.MatchLabelKeys
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.MismatchLabelKeys != nil {
    		in, out := &in.MismatchLabelKeys, &out.MismatchLabelKeys
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top