Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for TestHandler (0.15 sec)

  1. pkg/kube/multicluster/secretcontroller_test.go

    				return slices.Map(component.All(), func(e testHandler) result {
    					return result{e.ID, e.Iter}
    				})
    			}, step.want)
    		})
    	}
    }
    
    type testHandler struct {
    	ID     cluster.ID
    	Iter   int
    	Closed *atomic.Bool
    	Synced *atomic.Bool
    }
    
    func (h testHandler) Close() {
    	h.Closed.Store(true)
    }
    
    func (h testHandler) HasSynced() bool {
    	return h.Synced.Load()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. pkg/proxy/healthcheck/healthcheck_test.go

    		t.Errorf("expected 3 open ports, got %d\n%s", len(listener.openPorts), dump.Pretty(listener.openPorts))
    	}
    	// test the handlers
    	testHandler(hcs, nsn1, http.StatusServiceUnavailable, 0, t)
    	testHandler(hcs, nsn2, http.StatusServiceUnavailable, 0, t)
    	testHandler(hcs, nsn3, http.StatusServiceUnavailable, 0, t)
    
    	// sync endpoints
    	hcs.SyncEndpoints(map[types.NamespacedName]int{
    		nsn1: 9,
    		nsn2: 3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. internal/grid/grid_test.go

    		t.Log("client after", time.Since(clientEnd))
    	}
    	// local to remote, unbuffered
    	t.Run("unbuffered", func(t *testing.T) {
    		testHandler(t, handlerTest, false)
    	})
    	t.Run("buffered", func(t *testing.T) {
    		testHandler(t, handlerTest2, false)
    	})
    	t.Run("buffered", func(t *testing.T) {
    		testHandler(t, handlerTest2, true)
    	})
    }
    
    // testStreamDeadline will test if server
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector_test.go

    			APIVersion: "v1",
    		},
    	})
    	testHandler := &fakeActionHandler{
    		response: map[string]FakeResponse{
    			"GET" + "/api/v1/namespaces/ns1/replicationcontrollers/owner1": {
    				404,
    				[]byte{},
    			},
    			"GET" + "/api/v1/namespaces/ns1/pods/ToBeDeletedPod": {
    				200,
    				serilizeOrDie(t, pod),
    			},
    		},
    	}
    	srv, clientConfig := testServerAndClientConfig(testHandler.ServeHTTP)
    	defer srv.Close()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    	}
    }
    
    func TestWarningWithRequestTimeout(t *testing.T) {
    	type result struct {
    		err        interface{}
    		stackTrace string
    	}
    	clientDoneCh, resultCh := make(chan struct{}), make(chan result, 1)
    	testHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		// this will catch recoverable panic like 'Header called after Handler finished'.
    		// go runtime crashes the program if it detects a program-ending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// LoopbackClientConfig is a config for a privileged loopback connection to the API server
    	LoopbackClientConfig *restclient.Config
    
    	// minRequestTimeout is how short the request timeout can be.  This is used to build the RESTHandler
    	minRequestTimeout time.Duration
    
    	// ShutdownTimeout is the timeout used for server shutdown. This specifies the timeout before server
    	// gracefully shutdown returns.
    	ShutdownTimeout time.Duration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top