Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for wantCode (0.33 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    		statusCode int
    		object     runtime.Object
    
    		wantCode    int
    		wantHeaders http.Header
    		wantBody    []byte
    	}{
    		{
    			name:        "serialize object",
    			out:         smallPayload,
    			req:         &http.Request{Header: http.Header{}, URL: &url.URL{Path: "/path"}},
    			wantCode:    http.StatusOK,
    			wantHeaders: http.Header{"Content-Type": []string{""}},
    			wantBody:    smallPayload,
    		},
    
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pkg/registry/storage/csidriver/strategy_test.go

    	tests := []struct {
    		name                                string
    		old, update                         *storage.CSIDriver
    		seLinuxMountReadWriteOncePodEnabled bool
    		wantCapacity                        *bool
    		wantModes                           []storage.VolumeLifecycleMode
    		wantTokenRequests                   []storage.TokenRequest
    		wantRequiresRepublish               *bool
    		wantGeneration                      int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. src/net/http/clientserver_test.go

    func testHandlerWritesTooMuch(t *testing.T, mode testMode) {
    	wantBody := []byte("123")
    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		rc := NewResponseController(w)
    		w.Header().Set("Content-Length", fmt.Sprintf("%v", len(wantBody)))
    		rc.Flush()
    		w.Write(wantBody)
    		rc.Flush()
    		n, err := io.WriteString(w, "x") // too many
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  4. pkg/controller/controller_utils_test.go

    		name            string
    		podCreationFunc func(podControl RealPodControl) error
    		wantPod         *v1.Pod
    	}
    	var tests = []test{
    		{
    			name: "Create pod",
    			podCreationFunc: func(podControl RealPodControl) error {
    				return podControl.CreatePods(context.TODO(), ns, controllerSpec.Spec.Template, controllerSpec, controllerRef)
    			},
    			wantPod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. pkg/kube/inject/inject_test.go

    		}
    		gotPod = patchedPod
    	} else {
    		gotPod = inputPod
    	}
    
    	if err := normalizeAndCompareDeployments(gotPod, wantPod, false, t); err != nil {
    		t.Fatal(err)
    	}
    	if idempotencyCheck {
    		t.Run("idempotency", func(t *testing.T) {
    			if err := normalizeAndCompareDeployments(gotPod, wantPod, true, t); err != nil {
    				t.Fatal(err)
    			}
    		})
    	}
    }
    
    func TestSkipUDPPorts(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top