Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,134 for nameslice (0.26 sec)

  1. pilot/pkg/model/authentication.go

    	workloadLabels := selectionOpts.WorkloadLabels
    	namespace := selectionOpts.Namespace
    	configs := make([]*config.Config, 0)
    	var lookupInNamespaces []string
    	if namespace != rootNamespace {
    		// Only check the root namespace if the (workload) namespace is not already the root namespace
    		// to avoid double inclusion.
    		lookupInNamespaces = []string{namespace, rootNamespace}
    	} else {
    		lookupInNamespaces = []string{namespace}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/authentication_test.go

    }
    
    func createTestRequestAuthenticationResource(
    	name string, namespace string, selector *selectorpb.WorkloadSelector, targetRef *selectorpb.PolicyTargetReference,
    ) *config.Config {
    	ra := &config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.RequestAuthentication,
    			Name:             name,
    			Namespace:        namespace,
    		},
    		Spec: &securityBeta.RequestAuthentication{},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  3. pkg/api/v1/persistentvolume/util_test.go

    			PersistentVolumeSource: corev1.PersistentVolumeSource{
    				ISCSI: &corev1.ISCSIPersistentVolumeSource{
    					SecretRef: &corev1.SecretReference{
    						Name:      "Spec.PersistentVolumeSource.ISCSI.SecretRef",
    						Namespace: "iscsi"}}}}},
    		{Spec: corev1.PersistentVolumeSpec{
    			ClaimRef: &corev1.ObjectReference{Namespace: "claimrefns", Name: "claimrefname"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. tests/integration/ambient/main_test.go

    	apps.Uncaptured = match.ServiceName(echo.NamespacedName{Name: Uncaptured, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.Captured = match.ServiceName(echo.NamespacedName{Name: Captured, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.Sidecar = match.ServiceName(echo.NamespacedName{Name: Sidecar, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.Mesh = inMesh.GetMatches(echos)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    			GenerateName:               namespace.GenerateName,
    			Namespace:                  namespace.Namespace,
    			UID:                        namespace.UID,
    			ResourceVersion:            namespace.ResourceVersion,
    			Generation:                 namespace.Generation,
    			CreationTimestamp:          namespace.CreationTimestamp,
    			DeletionTimestamp:          namespace.DeletionTimestamp,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. pkg/test/kube/dump.go

    	}
    }
    
    // DumpPodEvents dumps the pod events for either the provided pods or all pods in the namespace if none are provided.
    func DumpPodEvents(_ resource.Context, c cluster.Cluster, workDir, namespace string, pods ...corev1.Pod) {
    	pods = podsOrFetch(c, pods, namespace)
    
    	for _, pod := range pods {
    		list, err := c.Kube().CoreV1().Events(namespace).List(context.TODO(),
    			metav1.ListOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. pkg/scheduler/metrics/resources/resources_test.go

    				# TYPE kube_pod_resource_request gauge
    				kube_pod_resource_request{namespace="test",node="",pod="foo-unscheduled-succeeded",priority="",resource="cpu",scheduler="",unit="cores"} 1
    				kube_pod_resource_request{namespace="test",node="node-one",pod="foo-pending",priority="",resource="cpu",scheduler="",unit="cores"} 1
    				kube_pod_resource_request{namespace="test",node="node-one",pod="foo-unknown",priority="",resource="cpu",scheduler="",unit="cores"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/framework/fake_listers.go

    type ServiceLister []*v1.Service
    
    // Services returns nil.
    func (f ServiceLister) Services(namespace string) corelisters.ServiceNamespaceLister {
    	var services []*v1.Service
    	for i := range f {
    		if f[i].Namespace == namespace {
    			services = append(services, f[i])
    		}
    	}
    	return &serviceNamespaceLister{
    		services:  services,
    		namespace: namespace,
    	}
    }
    
    // List returns v1.ServiceList, the list of all services.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/cluster/cluster.go

    	// Pod maps a pod name to its Pod info. The key is namespace/pod-name.
    	Pod map[string]*corev1.Pod
    	// CniPod
    	CniPod map[string]*corev1.Pod
    }
    
    func (r *Resources) insertContainer(namespace, deployment, pod, container string) {
    	if r.Root == nil {
    		r.Root = make(map[string]any)
    	}
    	if r.Root[namespace] == nil {
    		r.Root[namespace] = make(map[string]any)
    	}
    	d := r.Root[namespace].(map[string]any)
    	if d[deployment] == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. operator/pkg/helmreconciler/wait.go

    }
    
    func getPods(client kubernetes.Interface, namespace string, selector labels.Selector) ([]corev1.Pod, error) {
    	list, err := client.CoreV1().Pods(namespace).List(context.TODO(), metav1.ListOptions{
    		LabelSelector: selector.String(),
    	})
    	return list.Items, err
    }
    
    func namespacesReady(namespaces []corev1.Namespace) (bool, []string) {
    	var notReady []string
    	for _, namespace := range namespaces {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top