Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,954 for nameslice (0.26 sec)

  1. 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)
  2. pilot/pkg/config/kube/gateway/testdata/http.yaml

        allowedRoutes:
          namespaces:
            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["first.domain.example", "another.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /get
          headers:
          - name: my-header
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. 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)
  5. pkg/proxy/config/api_test.go

    		ObjectMeta: metav1.ObjectMeta{Namespace: "testnamespace", Name: "foo"},
    	}
    	eps2 := &discoveryv1.EndpointSlice{
    		ObjectMeta: metav1.ObjectMeta{Namespace: "testnamespace", Name: "bar"},
    	}
    
    	expectedSvcState := map[types.NamespacedName]*v1.Service{
    		{Name: svc1.Name, Namespace: svc1.Namespace}: svc1,
    		{Name: svc2.Name, Namespace: svc2.Namespace}: svc2,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/NamespaceIdTest.groovy

        def "can set namespace and name" () {
            given:
            NamespaceId id = new NamespaceId("some-namespace", "some-name")
    
            expect:
            id.getNamespace() == "some-namespace"
            id.getName() == "some-name"
        }
    
        def "hashCode and equals determine equality" () {
            given:
            NamespaceId id1 = new NamespaceId("some-namespace", "some-name")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K 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