Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for labelSelectors (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		ListMeta: metav1.ListMeta{
    			ResourceVersion: "10",
    		},
    		Items: storage.list,
    	}
    	storage.requestedLabelSelector = labels.Everything()
    	if options != nil && options.LabelSelector != nil {
    		storage.requestedLabelSelector = options.LabelSelector
    	}
    	storage.requestedFieldSelector = fields.Everything()
    	if options != nil && options.FieldSelector != nil {
    		storage.requestedFieldSelector = options.FieldSelector
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    							Image: "fake-image1",
    						},
    						{
    							Name:  "fake-container2",
    							Image: "fake-image2",
    						},
    					},
    				},
    			},
    			Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "bar"}},
    		},
    		Status: apps.DeploymentStatus{
    			Replicas:            10,
    			UpdatedReplicas:     2,
    			AvailableReplicas:   1,
    			UnavailableReplicas: 4,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    			{
    				Type: autoscalingv2.ExternalMetricSourceType,
    				External: &autoscalingv2.ExternalMetricSource{
    					Metric: autoscalingv2.MetricIdentifier{
    						Name:     "qps",
    						Selector: &metav1.LabelSelector{},
    					},
    					Target: autoscalingv2.MetricTarget{
    						Type:  autoscalingv2.ValueMetricType,
    						Value: resource.NewMilliQuantity(6666, resource.DecimalSI),
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.pb.go

    	s := strings.Join([]string{`&MatchResources{`,
    		`NamespaceSelector:` + strings.Replace(fmt.Sprintf("%v", this.NamespaceSelector), "LabelSelector", "v1.LabelSelector", 1) + `,`,
    		`ObjectSelector:` + strings.Replace(fmt.Sprintf("%v", this.ObjectSelector), "LabelSelector", "v1.LabelSelector", 1) + `,`,
    		`ResourceRules:` + repeatedStringForResourceRules + `,`,
    		`ExcludeResourceRules:` + repeatedStringForExcludeResourceRules + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 117.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

              },
              "objectSelector": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.SignerName != nil {
    		in, out := &in.SignerName, &out.SignerName
    		*out = new(string)
    		**out = **in
    	}
    	if in.LabelSelector != nil {
    		in, out := &in.LabelSelector, &out.LabelSelector
    		*out = new(v1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Optional != nil {
    		in, out := &in.Optional, &out.Optional
    		*out = new(bool)
    		**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)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.SignerName != nil {
    		in, out := &in.SignerName, &out.SignerName
    		*out = new(string)
    		**out = **in
    	}
    	if in.LabelSelector != nil {
    		in, out := &in.LabelSelector, &out.LabelSelector
    		*out = new(metav1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Optional != nil {
    		in, out := &in.Optional, &out.Optional
    		*out = new(bool)
    		**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)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
          "properties": {
            "labelSelector": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
              "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain."
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    					{
    						LabelSelector: &metav1.LabelSelector{
    							MatchLabels: map[string]string{"foo": "foo"},
    						},
    					},
    				},
    			},
    			wantOption: false,
    		},
    		{
    			name: "UpdateEmptyLabelSelector",
    			oldPodSpec: &api.PodSpec{
    				TopologySpreadConstraints: []api.TopologySpreadConstraint{
    					{
    						LabelSelector: nil,
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/generated.pb.go

    }
    func (this *DaemonSetSpec) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&DaemonSetSpec{`,
    		`Selector:` + strings.Replace(fmt.Sprintf("%v", this.Selector), "LabelSelector", "v1.LabelSelector", 1) + `,`,
    		`Template:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Template), "PodTemplateSpec", "v11.PodTemplateSpec", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 217.1K bytes
    - Viewed (0)
Back to top