Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 476 for matchExpressions (0.33 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

            operator: operatorValue
            values:
            - 3
          onPodConditions:
          - status: statusValue
            type: typeValue
      podReplacementPolicy: podReplacementPolicyValue
      selector:
        matchExpressions:
        - key: keyValue
          operator: operatorValue
          values:
          - valuesValue
        matchLabels:
          matchLabelsKey: matchLabelsValue
      successPolicy:
        rules:
        - succeededCount: 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json

            "backoffLimitPerIndex": 12,
            "maxFailedIndexes": 13,
            "selector": {
              "matchLabels": {
                "matchLabelsKey": "matchLabelsValue"
              },
              "matchExpressions": [
                {
                  "key": "keyValue",
                  "operator": "operatorValue",
                  "values": [
                    "valuesValue"
                  ]
                }
              ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/test_utils.go

    			StorageClassName: className,
    		},
    	}}
    }
    
    func (pvb pvBuilder) withNodeAffinity(keyValues map[string][]string) pvBuilder {
    	matchExpressions := make([]v1.NodeSelectorRequirement, 0)
    	for key, values := range keyValues {
    		matchExpressions = append(matchExpressions, v1.NodeSelectorRequirement{
    			Key:      key,
    			Operator: v1.NodeSelectorOpIn,
    			Values:   values,
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    						}
    						req.Values = sets.List(sets.New(req.Values...))
    					} else {
    						req.Values = nil
    					}
    					j.MatchExpressions[i] = req
    				}
    
    				sort.Slice(j.MatchExpressions, func(a, b int) bool { return j.MatchExpressions[a].Key < j.MatchExpressions[b].Key })
    			}
    		},
    		func(j *metav1.ManagedFieldsEntry, c fuzz.Continue) {
    			c.FuzzNoCustom(j)
    			j.FieldsV1 = nil
    		},
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json

                      "labelSelector": {
                        "matchLabels": {
                          "matchLabelsKey": "matchLabelsValue"
                        },
                        "matchExpressions": [
                          {
                            "key": "keyValue",
                            "operator": "operatorValue",
                            "values": [
                              "valuesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml

        selfLink: selfLinkValue
        uid: uidValue
      spec:
        activeDeadlineSeconds: 5
        affinity:
          nodeAffinity:
            preferredDuringSchedulingIgnoredDuringExecution:
            - preference:
                matchExpressions:
                - key: keyValue
                  operator: operatorValue
                  values:
                  - valuesValue
                matchFields:
                - key: keyValue
                  operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.yaml

          uid: uidValue
        spec:
          activeDeadlineSeconds: 5
          affinity:
            nodeAffinity:
              preferredDuringSchedulingIgnoredDuringExecution:
              - preference:
                  matchExpressions:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                  matchFields:
                  - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ReplicationController.yaml

          uid: uidValue
        spec:
          activeDeadlineSeconds: 5
          affinity:
            nodeAffinity:
              preferredDuringSchedulingIgnoredDuringExecution:
              - preference:
                  matchExpressions:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                  matchFields:
                  - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodTemplate.json

                      "labelSelector": {
                        "matchLabels": {
                          "matchLabelsKey": "matchLabelsValue"
                        },
                        "matchExpressions": [
                          {
                            "key": "keyValue",
                            "operator": "operatorValue",
                            "values": [
                              "valuesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 49.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/admissionregistration.k8s.io.v1beta1.ValidatingWebhookConfiguration.json

            },
            "matchExpressions": [
              {
                "key": "keyValue",
                "operator": "operatorValue",
                "values": [
                  "valuesValue"
                ]
              }
            ]
          },
          "objectSelector": {
            "matchLabels": {
              "matchLabelsKey": "matchLabelsValue"
            },
            "matchExpressions": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top