Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for lake (0.31 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	return wait.ExponentialBackoff(backoff, fn)
    }
    
    func createTestClient(attachedVolumes ...v1.AttachedVolume) *fake.Clientset {
    	fakeClient := &fake.Clientset{}
    	if len(attachedVolumes) == 0 {
    		attachedVolumes = append(attachedVolumes, v1.AttachedVolume{
    			Name:       "fake-plugin/fake-device1",
    			DevicePath: "fake/path",
    		})
    	}
    	fakeClient.AddReactor("get", "nodes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix_test.go

    	// around after this test is done if we don't call dnsWaitGroup.Wait.
    	ctx, cancel := context.WithTimeout(context.Background(), 2*time.Microsecond)
    	defer cancel()
    	_, err := r.LookupIPAddr(ctx, "where.are.they.now")
    	if err == nil {
    		t.Fatal("fake DNS lookup unexpectedly succeeded")
    	}
    }
    
    func lookupWithFake(fake fakeDNSServer, name string, typ dnsmessage.Type) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    		attachedVolumes:        make(map[v1.UniqueVolumeName]attachedVolume),
    		nodesToUpdateStatusFor: make(map[types.NodeName]nodeToUpdateStatusFor),
    		volumePluginMgr:        volumePluginMgr,
    	}
    	nodeName := types.NodeName("node-1")
    	nodeToUpdate := nodeToUpdateStatusFor{
    		nodeName:                  nodeName,
    		statusUpdateNeeded:        true,
    		volumesToReportAsAttached: make(map[v1.UniqueVolumeName]v1.UniqueVolumeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  4. plugin/pkg/admission/resourcequota/admission_test.go

    		config := testCase.config
    		resourceQuota := testCase.quota
    		kubeClient := fake.NewSimpleClientset(resourceQuota)
    		if testCase.anotherQuota != nil {
    			kubeClient = fake.NewSimpleClientset(resourceQuota, testCase.anotherQuota)
    		}
    		indexer := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{"namespace": cache.MetaNamespaceIndexFunc})
    		stopCh := make(chan struct{})
    		defer close(stopCh)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    }
    
    func TestSyncPod(t *testing.T) {
    	syncer := newTestManager(&fake.Clientset{})
    	testPod := getTestPod()
    	syncer.kubeClient = fake.NewSimpleClientset(testPod)
    	syncer.SetPodStatus(testPod, getRandomPodStatus())
    	verifyActions(t, syncer, []core.Action{getAction(), patchAction()})
    }
    
    func TestSyncPodChecksMismatchedUID(t *testing.T) {
    	syncer := newTestManager(&fake.Clientset{})
    	pod := getTestPod()
    	pod.UID = "first"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    	// let both patches fail. The rs controller will assume it fails to take
    	// control of the pods and requeue to try again.
    	fakePodControl.Err = fmt.Errorf("fake Error")
    	rsKey := GetKey(rs, t)
    	err := processSync(ctx, manager, rsKey)
    	if err == nil || !strings.Contains(err.Error(), "fake Error") {
    		t.Errorf("expected fake Error, got %+v", err)
    	}
    	// 2 patches to take control of pod1 and pod2 (both fail).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. pkg/controller/disruption/disruption_test.go

    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/apimachinery/pkg/util/uuid"
    	"k8s.io/apimachinery/pkg/util/wait"
    	discoveryfake "k8s.io/client-go/discovery/fake"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	scalefake "k8s.io/client-go/scale/fake"
    	core "k8s.io/client-go/testing"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/client-go/util/workqueue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. pkg/controller/history/controller_history_test.go

    		revisions []*apps.ControllerRevision
    		want      map[string]bool
    	}
    	testFn := func(test *testcase, t *testing.T) {
    		client := fake.NewSimpleClientset()
    		informerFactory := informers.NewSharedInformerFactory(client, controller.NoResyncPeriodFunc())
    
    		stop := make(chan struct{})
    		defer close(stop)
    		informerFactory.Start(stop)
    		informer := informerFactory.Apps().V1().ControllerRevisions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			oldObj:                          st.MakePod().Name("pod2").Req(map[v1.ResourceName]string{v1.ResourceCPU: "2"}).Node("fake").Obj(),
    			newObj:                          st.MakePod().Name("pod2").Req(map[v1.ResourceName]string{v1.ResourceCPU: "1"}).Node("fake").Obj(),
    			enableInPlacePodVerticalScaling: false,
    			expectedHint:                    framework.QueueSkip,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	kubetypes "k8s.io/apimachinery/pkg/types"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/kubernetes/fake"
    	core "k8s.io/client-go/testing"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	csitrans "k8s.io/csi-translation-lib"
    	"k8s.io/kubernetes/pkg/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top