Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for makeHandler (0.12 sec)

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

    	kubeClient := createTestClient()
    	fakeRecorder := &record.FakeRecorder{}
    	fakeHandler := volumetesting.NewBlockVolumePathHandler()
    	oex := operationexecutor.NewOperationExecutor(operationexecutor.NewOperationGenerator(
    		kubeClient,
    		volumePluginMgr,
    		fakeRecorder,
    		fakeHandler,
    	))
    	reconciler := NewReconciler(
    		kubeClient,
    		false, /* controllerAttachDetachEnabled */
    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. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	fakeKubeClient := controllervolumetesting.CreateTestClient()
    	fakeRecorder := &record.FakeRecorder{}
    	fakeHandler := volumetesting.NewBlockVolumePathHandler()
    	ad := operationexecutor.NewOperationExecutor(operationexecutor.NewOperationGenerator(
    		fakeKubeClient,
    		volumePluginMgr,
    		fakeRecorder,
    		fakeHandler))
    	informerFactory := informers.NewSharedInformerFactory(fakeKubeClient, controller.NoResyncPeriodFunc())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set_test.go

    	// Setup a test server so we can lie about the current state of pods
    	logger, ctx := ktesting.NewTestContext(t)
    	fakeHandler := utiltesting.FakeHandler{
    		StatusCode:    200,
    		ResponseBody:  "{}",
    		SkipRequestFn: skipListerFunc,
    		T:             t,
    	}
    	testServer := httptest.NewServer(&fakeHandler)
    	defer testServer.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  4. pkg/controller/endpoint/endpoints_controller_test.go

    		}
    		store.Add(p)
    	}
    }
    
    func makeTestServer(t *testing.T, namespace string) (*httptest.Server, *utiltesting.FakeHandler) {
    	fakeEndpointsHandler := utiltesting.FakeHandler{
    		StatusCode:   http.StatusOK,
    		ResponseBody: runtime.EncodeOrDie(clientscheme.Codecs.LegacyCodec(v1.SchemeGroupVersion), &v1.Endpoints{}),
    	}
    	mux := http.NewServeMux()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top