Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,786 for labels0 (0.22 sec)

  1. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    			name:         "no resources requested, pods without container scheduled",
    			pods: []*v1.Pod{
    				st.MakePod().Node("node1").Labels(labels2).Obj(),
    				st.MakePod().Node("node1").Labels(labels1).Obj(),
    				st.MakePod().Node("node2").Labels(labels1).Obj(),
    				st.MakePod().Node("node2").Labels(labels1).Obj(),
    			},
    			args:        config.NodeResourcesBalancedAllocationArgs{Resources: defaultResourceBalancedAllocationSet},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    // Matches returns true if the given object's labels and fields (as
    // returned by s.GetAttrs) match s.Label and s.Field. An error is
    // returned if s.GetAttrs fails.
    func (s *SelectionPredicate) Matches(obj runtime.Object) (bool, error) {
    	if s.Empty() {
    		return true, nil
    	}
    	labels, fields, err := s.GetAttrs(obj)
    	if err != nil {
    		return false, err
    	}
    	matched := s.Label.Matches(labels)
    	if matched && s.Field != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/componentconfigs/checksums_test.go

    		configMap: &v1.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "le-config",
    				Namespace: "le-namespace",
    				Labels: map[string]string{
    					"label1": "value1",
    					"label2": "value2",
    				},
    				Annotations: map[string]string{
    					"annotation1": "value1",
    					"annotation2": "value2",
    				},
    			},
    			Data: map[string]string{
    				"foo": "bar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint-no-network-label.yaml

          - emptyDir: {}
            name: istio-data
          - emptyDir: {}
            name: go-proxy-data
          - downwardAPI:
              items:
              - fieldRef:
                  fieldPath: metadata.labels
                path: labels
              - fieldRef:
                  fieldPath: metadata.annotations
                path: annotations
            name: istio-podinfo
          - name: istio-token
            projected:
              sources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/util.go

    	var services []*v1.Service
    	for _, service := range allServices {
    		if labels.Instance(service.Spec.Selector).Match(pod.Labels) {
    			services = append(services, service)
    		}
    	}
    
    	return services
    }
    
    func getNodeSelectorsForService(svc *v1.Service) labels.Instance {
    	if nodeSelector := svc.Annotations[annotation.TrafficNodeSelector.Name]; nodeSelector != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 02:01:47 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. releasenotes/notes/otel-builtin-labels.yaml

    zirain <******@****.***> 1718030161 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 151 bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/Label.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.logging.console;
    
    public interface Label {
        void setText(String text);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 721 bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/deploymentconfig-with-canonical-service-label.yaml

    apiVersion: v1
    kind: DeploymentConfig
    metadata:
      name: hello
    spec:
      replicas: 7
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
            service.istio.io/canonical-name: test-service-name
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 774 bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/deploymentconfig-with-canonical-service-label.yaml.injected

              medium: Memory
            name: istio-envoy
          - emptyDir: {}
            name: istio-data
          - downwardAPI:
              items:
              - fieldRef:
                  fieldPath: metadata.labels
                path: labels
              - fieldRef:
                  fieldPath: metadata.annotations
                path: annotations
            name: istio-podinfo
          - name: istio-token
            projected:
              sources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. pkg/webhooks/webhookpatch.go

    import (
    	"bytes"
    	"errors"
    	"math"
    	"strings"
    	"time"
    
    	v1 "k8s.io/api/admissionregistration/v1"
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/util/workqueue"
    
    	"istio.io/api/label"
    	"istio.io/istio/pilot/pkg/keycertbundle"
    	kubelib "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top