Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 661 for nAmespace (0.14 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/workload.go

    	Address   string
    	Node      string
    	Namespace string
    }
    
    // Verify returns true if the passed workload matches the filter fields
    func (wf *WorkloadFilter) Verify(workload *ZtunnelWorkload) bool {
    	if wf.Address == "" && wf.Node == "" && wf.Namespace == "" {
    		return true
    	}
    
    	if wf.Namespace != "" {
    		if !strings.EqualFold(workload.Namespace, wf.Namespace) {
    			return false
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/filters_test.go

    	// simple pod with a different namespace
    	a1Ns2 = &fakeInstance{Cluster: cls1, Namespace: echo2NS, Service: "a"}
    	a2Ns2 = &fakeInstance{Cluster: cls2, Namespace: echo2NS, Service: "a"}
    	// virtual machine
    	vm1 = &fakeInstance{Cluster: cls1, Namespace: echo1NS, Service: "vm", DeployAsVM: true}
    	vm2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "vm", DeployAsVM: true}
    	// headless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	log.Debugf("Handle EDS endpoint %s %s in namespace %s", namespacedName.Name, event, namespacedName.Namespace)
    	if event == model.EventDelete {
    		esc.deleteEndpointSlice(ep)
    	} else {
    		esc.updateEndpointSlice(ep)
    	}
    	hostnames := esc.c.hostNamesForNamespacedName(namespacedName)
    	// Trigger EDS push for all hostnames.
    	esc.pushEDS(hostnames, namespacedName.Namespace)
    
    	name := serviceNameForEndpointSlice(esLabels)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/ztunnel/configdump/policies.go

    type PolicyFilter struct {
    	Namespace string
    }
    
    // Verify returns true if the passed workload matches the filter fields
    func (wf *PolicyFilter) Verify(pol *ZtunnelPolicy) bool {
    	if wf.Namespace != "" {
    		if !strings.EqualFold(pol.Namespace, wf.Namespace) {
    			return false
    		}
    	}
    
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf_test.cc

    #include "tensorflow/core/lib/monitoring/cell_reader.h"
    #include "tensorflow/core/platform/resource_loader.h"
    #include "tsl/lib/core/status_test_util.h"
    #include "tsl/platform/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v1 {
    namespace {
    
    using ::mlir::DialectRegistry;
    using ::mlir::MLIRContext;
    using ::mlir::ModuleOp;
    using ::mlir::OwningOpRef;
    using ::tensorflow::monitoring::testing::CellReader;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:44:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    			discoveryNamespaceFilter: discoveryNamespacesFilter,
    		},
    		{
    			name: "waypoint",
    			gw: k8sbeta.Gateway{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "namespace",
    					Namespace: "default",
    					Labels: map[string]string{
    						"topology.istio.io/network": "network-1", // explicitly set network won't be overwritten
    					},
    				},
    				Spec: k8s.GatewaySpec{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor_test.cc

    #include "tensorflow/core/lib/monitoring/cell_reader.h"
    #include "tensorflow/core/platform/resource_loader.h"
    #include "tsl/lib/core/status_test_util.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    namespace {
    
    constexpr char kExportStreamzName[] =
        "/tensorflow/core/tf2xla/api/v2/tf_dialect_to_executor_dialect_status";
    constexpr char kExportSuccess[] = "success";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/analyzers_test.go

    		},
    		analyzer: &injection.ImageAnalyzer{},
    		expected: []message{
    			{msg.PodsIstioProxyImageMismatchInNamespace, "Namespace enabled-namespace"},
    			{msg.PodsIstioProxyImageMismatchInNamespace, "Namespace enabled-namespace-native"},
    			{msg.PodsIstioProxyImageMismatchInNamespace, "Namespace revision-namespace"},
    		},
    	},
    	{
    		name:       "portNameNotFollowConvention",
    		inputFiles: []string{"testdata/service-no-port-name.yaml"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    }
    
    func (c *Controller) NewEndpointBuilder(pod *v1.Pod) *EndpointBuilder {
    	var locality, sa, namespace, hostname, subdomain, ip, node string
    	var podLabels labels.Instance
    	if pod != nil {
    		locality = c.getPodLocality(pod)
    		sa = kube.SecureNamingSAN(pod, c.meshWatcher.Mesh())
    		podLabels = pod.Labels
    		namespace = pod.Namespace
    		subdomain = pod.Spec.Subdomain
    		if subdomain != "" {
    			hostname = pod.Spec.Hostname
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/storage/eviction_test.go

    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "default"},
    				Spec:       policyv1.PodDisruptionBudgetSpec{Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"a": "true"}}},
    				Status:     policyv1.PodDisruptionBudgetStatus{DisruptionsAllowed: 0},
    			}},
    			eviction:    &policy.Eviction{ObjectMeta: metav1.ObjectMeta{Name: "t1", Namespace: "default"}, DeleteOptions: metav1.NewDeleteOptions(0)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top