Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 5,965 for nameslice (0.17 sec)

  1. tests/integration/security/sds_ingress/quic/ingress_test.go

    		})).
    		Setup(namespace.Setup(&echo1NS, namespace.Config{Prefix: "echo1", Inject: true})).
    		Setup(func(ctx resource.Context) error {
    			// TODO: due to issue https://github.com/istio/istio/issues/25286,
    			// currently VM does not work in this test
    			err := ingressutil.SetupTest(ctx, &customConfig, namespace.Future(&echo1NS))
    			if err != nil {
    				return err
    			}
    			return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pkg/kube/kclient/client_test.go

    	})
    	assert.Equal(t, deploys, []*appsv1.Deployment{obj1, obj2})
    	assert.Equal(t, tester.Get(obj3.Name, obj3.Namespace), nil)
    
    	tester.Delete(obj3.Name, obj3.Namespace)
    	tester.Delete(obj2.Name, obj2.Namespace)
    	tester.Delete(obj1.Name, obj1.Namespace)
    	tracker.WaitOrdered("delete/2", "delete/1")
    	assert.Equal(t, tester.List(obj1.Namespace, klabels.Everything()), nil)
    
    	// Create some more objects again
    	tester.Create(obj3)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "caBundle" .Values.istiodRemote.injectionCABundle
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    {{- /* Kubernetes unfortunately requires a unique name for the webhook in some newer versions, so we assign
    a unique prefix to each. */}}
    - name: {{.Prefix}}sidecar-injector.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "caBundle" .Values.istiodRemote.injectionCABundle
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    {{- /* Kubernetes unfortunately requires a unique name for the webhook in some newer versions, so we assign
    a unique prefix to each. */}}
    - name: {{.Prefix}}sidecar-injector.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/client/tests/listwatch_test.go

    			resource:      "pods",
    			namespace:     metav1.NamespaceAll,
    			fieldSelector: fields.Set{"spec.host": ""}.AsSelector(),
    		},
    		{
    			desc: "pod in namespace 'foo'",
    			location: buildLocation(
    				"/api/v1/namespaces/foo/pods",
    				buildQueryValues(url.Values{fieldSelectorQueryParamName: []string{"spec.host="}})),
    			resource:      "pods",
    			namespace:     "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 17:08:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher.go

    	}
    	return utilerrors.NewAggregate(errs)
    }
    
    // GetNamespaceLabels gets the labels of the namespace related to the attr.
    func (m *Matcher) GetNamespaceLabels(attr admission.Attributes) (map[string]string, error) {
    	// If the request itself is creating or updating a namespace, then get the
    	// labels from attr.Object, because namespaceLister doesn't have the latest
    	// namespace yet.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/kubelet/pod/mirror_client_test.go

    		name, namespace, err := kubecontainer.ParsePodFullName(podFullName)
    		if err != nil {
    			t.Errorf("unexpected error when parsing the full name: %v", err)
    			continue
    		}
    		if name != expected.Name || namespace != expected.Namespace {
    			t.Errorf("expected name %q, namespace %q; got name %q, namespace %q",
    				expected.Name, expected.Namespace, name, namespace)
    		}
    	}
    	for _, podFullName := range failedCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:44:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				},
    				model.WorkloadAuthorization{
    					LabelSelector: model.NewSelector(map[string]string{"app": "foo"}),
    					Authorization: &security.Authorization{Name: "root-ns", Namespace: "istio-system"},
    				},
    			},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    					Labels: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/renderers/namespace_renderer.cc

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    NamespaceRenderer::NamespaceRenderer(RendererContext context)
        : Renderer(context) {}
    
    void NamespaceRenderer::Open() {
      for (const string& ns : context_.cpp_config.namespaces) {
        CodeLine("namespace " + ns + " {");
      }
    }
    
    void NamespaceRenderer::Close() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion_test.go

        namespace: istio-system
      to:
      - group: ""
        kind: Secret
    `,
    			expectations: []res{
    				// allow cross namespace
    				{"kubernetes-gateway://default/wildcard-example-com-cert", "istio-system", true},
    				// denied same namespace. We do not implicitly allow (in this code - higher level code does)
    				{"kubernetes-gateway://default/wildcard-example-com-cert", "default", false},
    				// denied namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
Back to top