Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,464 for nameslice (0.24 sec)

  1. pkg/apis/core/validation/events_test.go

    					Name:      "test1",
    					Namespace: "foo",
    				},
    				InvolvedObject: core.ObjectReference{
    					Namespace: "bar",
    					Kind:      "Pod",
    				},
    			},
    			false,
    		}, {
    			&core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "test2",
    					Namespace: "aoeu-_-aoeu",
    				},
    				InvolvedObject: core.ObjectReference{
    					Namespace: "aoeu-_-aoeu",
    					Kind:      "Pod",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  2. plugin/pkg/admission/podtolerationrestriction/admission_test.go

    		t.Errorf("error in marshalling namespace tolerations %v", namespaceTolerations)
    	}
    	namespace := &corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "testNamespace",
    			Namespace: "",
    		},
    	}
    	namespace.Annotations = map[string]string{NSDefaultTolerations: string(tolerationsStr)}
    	err = informerFactory.Core().V1().Namespaces().Informer().GetStore().Update(namespace)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			attrs:  authorizer.AttributesRecord{User: node0, ResourceRequest: true, Verb: "get", Resource: "leases", APIGroup: "coordination.k8s.io", Name: "node0", Namespace: "foo"},
    			expect: authorizer.DecisionNoOpinion,
    		},
    		{
    			name:   "disallowed create lease in namespace other than kube-node-lease - feature enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  4. pilot/test/mock/config.go

    func CheckCacheFreshness(cache model.ConfigStoreController, namespace string, t *testing.T) {
    	stop := make(chan struct{})
    	done := make(chan bool)
    	o := Make(namespace, 0)
    
    	// validate cache consistency
    	cache.RegisterEventHandler(mockGvk, func(_, config config2.Config, ev model.Event) {
    		elts := cache.List(mockGvk, namespace)
    		elt := cache.Get(o.GroupVersionKind, o.Name, o.Namespace)
    		switch ev {
    		case model.EventAdd:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe_test.go

    			client.Istio().NetworkingV1alpha3().DestinationRules(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{})
    		case *v1alpha3.Gateway:
    			client.Istio().NetworkingV1alpha3().Gateways(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{})
    		case *v1alpha3.VirtualService:
    			client.Istio().NetworkingV1alpha3().VirtualServices(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{})
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. operator/pkg/compare/compare_test.go

    		},
    		{
    			desc: "two additional",
    			a: `apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      namespace: istio-system
      labels:
        release: istio`,
    			b: `apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: istio-ingressgateway
      namespace: istio-system
      labels:
        app: istio-ingressgateway
        release: istio`,
    			want: `metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

        parentRef:
          kind: Gateway
          name: gateway
          namespace: istio-system
          sectionName: same-namespace
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: section-name-cross-namespace
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/ingress/controller_test.go

    	vs := wait()
    	if vs.Name != ingress1.Name+"-"+"virtualservice" || vs.Namespace != ingress1.Namespace {
    		t.Errorf("received unecpected config %v/%v", vs.Namespace, vs.Name)
    	}
    	ingress.Update(&ingress2)
    	vs = wait()
    	if vs.Name != ingress1.Name+"-"+"virtualservice" || vs.Namespace != ingress1.Namespace {
    		t.Errorf("received unecpected config %v/%v", vs.Namespace, vs.Name)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/manager_test.go

    	podUID := "test-pod-uid"
    	namespace := "test-namespace"
    
    	claimInfo := &ClaimInfo{
    		ClaimInfoState: state.ClaimInfoState{PodUIDs: sets.New(podUID), ClaimName: claimName, Namespace: namespace},
    	}
    	manager.cache.add(claimInfo)
    	if !manager.cache.contains(claimName, namespace) {
    		t.Fatalf("failed to get claimInfo from cache for claim name %s, namespace %s: err:%v", claimName, namespace, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:29 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. tests/integration/pilot/analyze_test.go

    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			g := NewWithT(t)
    
    			ns1 := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix: "istioctl-analyze-1",
    				Inject: true,
    			})
    			ns2 := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix: "istioctl-analyze-2",
    				Inject: true,
    			})
    
    			applyFileOrFail(t, ns1.Name(), gatewayFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top