Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 99 for layers (0.12 sec)

  1. pilot/pkg/networking/core/cluster_builder_test.go

    							LoadBalancingWeight: &wrappers.UInt32Value{
    								Value: 30,
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name:   "subset cluster endpoints with labels",
    			mesh:   testMesh(),
    			labels: labels.Instance{"version": "v1"},
    			instances: []*model.ServiceInstance{
    				{
    					Service:     service,
    					ServicePort: servicePort,
    					Endpoint: &model.IstioEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		}
    	}
    
    	getAttrs := func(obj runtime.Object) (labels.Set, fields.Set, error) {
    		pod, ok := obj.(*example.Pod)
    		if !ok {
    			return nil, nil, fmt.Errorf("invalid object")
    		}
    		return labels.Set(pod.Labels), nil, nil
    	}
    	predicate := storage.SelectionPredicate{
    		Label:    labels.Set{"even": "true"}.AsSelector(),
    		GetAttrs: getAttrs,
    		Limit:    4,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    					Call:   mkCall(9000, simulation.MTLS),
    					Result: simulation.Result{ClusterMatched: "InboundPassthroughCluster"},
    				},
    			},
    		},
    	}
    	proxy := &model.Proxy{
    		Labels:   map[string]string{"app": "foo"},
    		Metadata: &model.NodeMetadata{Labels: map[string]string{"app": "foo"}},
    	}
    	for _, tt := range cases {
    		runSimulationTest(t, proxy, xds.FakeOptions{}, simulationTest{
    			name:   tt.name,
    			config: tt.config,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. tests/integration/ambient/cnirepair/main_test.go

    			ServiceAccount: true,
    			Subsets: []echo.SubsetConfig{
    				{
    					Replicas: 1,
    					Version:  "v1",
    					Labels:   map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeNone},
    				},
    				{
    					Replicas: 1,
    					Version:  "v2",
    					Labels:   map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeNone},
    				},
    			},
    		}).
    		WithConfig(echo.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. samples/addons/prometheus.yaml

    ---
    # Source: prometheus/templates/serviceaccount.yaml
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      labels:
        app.kubernetes.io/component: server
        app.kubernetes.io/name: prometheus
        app.kubernetes.io/instance: prometheus
        app.kubernetes.io/version: v2.52.0
        helm.sh/chart: prometheus-25.21.0
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: prometheus
      name: prometheus
      namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. cmd/bucket-handlers_test.go

    	nilReq, err := newTestRequest(http.MethodGet, getBucketLocationURL("", nilBucket), 0, nil)
    	if err != nil {
    		t.Errorf("MinIO %s: Failed to create HTTP request for testing the response when object Layer is set to `nil`.", instanceType)
    	}
    	// Executes the object layer set to `nil` test.
    	// `ExecObjectLayerAPINilTest` manages the operation.
    	ExecObjectLayerAPINilTest(t, nilBucket, "", instanceType, apiRouter, nilReq)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/templates/daemonset.yaml

    metadata:
      name: ztunnel
      namespace: {{ .Release.Namespace }}
      labels:
        {{- .Values.labels | toYaml | nindent 4}}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    spec:
      updateStrategy:
        rollingUpdate:
          maxSurge: 1
          maxUnavailable: 0
      selector:
        matchLabels:
          app: ztunnel
      template:
        metadata:
          labels:
            sidecar.istio.io/inject: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    			},
    		}
    		pod.Name = fmt.Sprintf("object-%d", index)
    		data := make([]byte, 1024*2, 1024*2) // 2k labels
    		rand.Read(data)
    		pod.Spec.NodeSelector["key"] = string(data)
    		return pod
    	}
    	testCases := []struct {
    		name              string
    		objectNum         int
    		expectNum         int
    		selector          labels.Selector
    		newObjectFunc     func(index int, total int, expect int) runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/productpage.py

        except BaseException:
            res = None
        if res and res.status_code == 200:
            request_result_counter.labels(destination_app='details', response_code=200).inc()
            return 200, res.json()
        else:
            status = res.status_code if res is not None and res.status_code else 500
            request_result_counter.labels(destination_app='details', response_code=status).inc()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    	utilruntime.Must(examplev1.AddToScheme(scheme))
    }
    
    // GetPodAttrs returns labels and fields of a given object for filtering purposes.
    func GetPodAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
    	pod, ok := obj.(*example.Pod)
    	if !ok {
    		return nil, nil, fmt.Errorf("not a pod")
    	}
    	return labels.Set(pod.ObjectMeta.Labels), PodToSelectableFields(pod), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top