Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 330 for tespod (0.14 sec)

  1. pilot/pkg/status/distribution/reporter_test.go

    	Expect(r.reverseStatus).To(Equal(map[string]sets.String{"a": {"conB~": x}, "c": {"conC~": x}, "d": {"conD~": x}}))
    }
    
    func initReporterWithoutStarting() (out Reporter) {
    	out.PodName = "tespod"
    	out.inProgressResources = map[string]*inProgressEntry{}
    	out.client = nil              // TODO
    	out.clock = clock.RealClock{} // TODO
    	out.UpdateInterval = 300 * time.Millisecond
    	out.cm = nil // TODO
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/main/webapp/css/admin/respond.min.js

    /*! Respond.js v1.4.2: min/max-width media query polyfill * Copyright 2013 Scott Jehl
     * Licensed under https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT
     *  */
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Oct 08 12:14:13 UTC 2015
    - 4.3K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    	// create a pod that has an active deadline
    	newPod := validPod("allowed-pod", 1, getResourceRequirements(getResourceList("100m", "2Gi"), getResourceList("", "")))
    	activeDeadlineSeconds := int64(30)
    	newPod.Spec.ActiveDeadlineSeconds = &activeDeadlineSeconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. pkg/kubelet/status/status_manager_test.go

    	}
    	syncer.SetPodStatus(testPod, firstStatus)
    
    	t.Logf("set the testPod to a pod with Phase running, to simulate a stale pod")
    	testPod.Status = getRandomPodStatus()
    	testPod.Status.Phase = v1.PodRunning
    	testPod.Status.InitContainerStatuses = []v1.ContainerStatus{
    		{Name: "test-1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  5. pkg/registry/core/pod/strategy.go

    func dropNonEphemeralContainerUpdates(newPod, oldPod *api.Pod) *api.Pod {
    	pod := oldPod.DeepCopy()
    	pod.Name = newPod.Name
    	pod.Namespace = newPod.Namespace
    	pod.ResourceVersion = newPod.ResourceVersion
    	pod.UID = newPod.UID
    	pod.Spec.EphemeralContainers = newPod.Spec.EphemeralContainers
    	return pod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers_test.go

    			return false
    		}
    	}
    	return true
    }
    
    func TestEvictonMessageWithResourceResize(t *testing.T) {
    	testpod := newPod("testpod", 1, []v1.Container{
    		newContainer("testcontainer", newResourceList("", "200Mi", ""), newResourceList("", "", "")),
    	}, nil)
    	testpod.Status = v1.PodStatus{
    		ContainerStatuses: []v1.ContainerStatus{
    			{
    				Name:               "testcontainer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/fake/fake_cache.go

    func (c *Cache) UpdatePod(logger klog.Logger, oldPod, newPod *v1.Pod) error { return nil }
    
    // RemovePod is a fake method for testing.
    func (c *Cache) RemovePod(logger klog.Logger, pod *v1.Pod) error { return nil }
    
    // IsAssumedPod is a fake method for testing.
    func (c *Cache) IsAssumedPod(pod *v1.Pod) (bool, error) {
    	return c.IsAssumedPodFunc(pod), nil
    }
    
    // GetPod is a fake method for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. pkg/volume/util/recyclerclient/recycler_client_test.go

    		Type:   eventtype,
    		Object: newPod(name, phase, message),
    	}
    }
    
    func newEvent(eventtype, message string) watch.Event {
    	return watch.Event{
    		Type: watch.Added,
    		Object: &v1.Event{
    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: metav1.NamespaceDefault,
    			},
    			Reason:  "MockEvent",
    			Message: message,
    			Type:    eventtype,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  9. pkg/controller/controller_utils_test.go

    			rc := newReplicationController(0)
    			podList := newPodList(nil, 5, v1.PodRunning, rc)
    			for idx, testPod := range test.pods {
    				podList.Items[idx].Name = testPod.podName
    				podList.Items[idx].Status.Phase = testPod.podPhase
    			}
    
    			var podPointers []*v1.Pod
    			for i := range podList.Items {
    				podPointers = append(podPointers, &podList.Items[i])
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. pkg/scheduler/scheduler_test.go

    			defer cancel()
    
    			client := fake.NewSimpleClientset(&v1.PodList{Items: []v1.Pod{*testPod}})
    			informerFactory := informers.NewSharedInformerFactory(client, 0)
    			podInformer := informerFactory.Core().V1().Pods()
    			// Need to add/update/delete testPod to the store.
    			podInformer.Informer().GetStore().Add(testPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top