Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for bghelper (0.75 sec)

  1. pkg/kubelet/kubelet_test.go

    }
    
    func (nl testNodeLister) List(_ labels.Selector) (ret []*v1.Node, err error) {
    	return nl.nodes, nil
    }
    
    func checkPodStatus(t *testing.T, kl *Kubelet, pod *v1.Pod, phase v1.PodPhase) {
    	t.Helper()
    	status, found := kl.statusManager.GetPodStatus(pod.UID)
    	require.True(t, found, "Status of pod %q is not found in the status map", pod.UID)
    	require.Equal(t, phase, status.Phase)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy firewall-check
    		add rule ip kube-proxy firewall-check ip daddr . meta l4proto . th dport vmap @firewall-ips
    
    		add chain ip kube-proxy reject-chain { comment "helper for @no-endpoint-services / @no-endpoint-nodeports" ; }
    		add rule ip kube-proxy reject-chain reject
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	return t.driver
    }
    
    // OpenDB opens a database using a [driver.Connector], allowing drivers to
    // bypass a string based data source name.
    //
    // Most users will open a database via a driver-specific connection
    // helper function that returns a [*DB]. No database drivers are included
    // in the Go standard library. See https://golang.org/s/sqldrivers for
    // a list of third-party drivers.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. cmd/server_test.go

    func (c *check) Assert(gotValue interface{}, expectedValue interface{}) {
    	c.Helper()
    	if !reflect.DeepEqual(gotValue, expectedValue) {
    		c.Fatalf("Test %s expected %v, got %v", c.testType, expectedValue, gotValue)
    	}
    }
    
    func verifyError(c *check, response *http.Response, code, description string, statusCode int) {
    	c.Helper()
    	data, err := io.ReadAll(response.Body)
    	c.Assert(err, nil)
    	errorResponse := APIErrorResponse{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    	exec(t, db, "WIPE")                            // check not deadlocked
    }
    
    func exec(t testing.TB, db *DB, query string, args ...any) {
    	t.Helper()
    	_, err := db.Exec(query, args...)
    	if err != nil {
    		t.Fatalf("Exec of %q: %v", query, err)
    	}
    }
    
    func closeDB(t testing.TB, db *DB) {
    	if e := recover(); e != nil {
    		fmt.Printf("Panic: %v\n", e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    			return conn, nil
    		},
    		DisableKeepAlives: false,
    	}
    	defer tr.CloseIdleConnections()
    	c := &Client{Transport: tr}
    
    	testResponse := func(req *Request, name string, wantCode int) {
    		t.Helper()
    		res, err := c.Do(req)
    		if err != nil {
    			t.Fatalf("%s: Do: %v", name, err)
    		}
    		if res.StatusCode != wantCode {
    			t.Fatalf("%s: Response Statuscode=%d; want %d", name, res.StatusCode, wantCode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    			checkValidation(t, warn, err, tc.valid, tc.warning)
    		})
    	}
    }
    
    func checkValidation(t *testing.T, gotWarning Warning, gotError error, valid bool, warning bool) {
    	t.Helper()
    	if (gotError == nil) != valid {
    		t.Fatalf("got valid=%v but wanted valid=%v: %v", gotError == nil, valid, gotError)
    	}
    	if (gotWarning == nil) == warning {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	// either pass through the sequence of states in want or enter a state outside
    	// of that sequence.
    	wantLog := func(doRequests func(), want ...ConnState) {
    		t.Helper()
    		complete := make(chan struct{})
    		activeLog <- &stateLog{want: want, complete: complete}
    
    		doRequests()
    
    		<-complete
    		sl := <-activeLog
    		if !reflect.DeepEqual(sl.got, sl.want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	}
    	// The HTTPS server used for requesting distributed groups claims.
    	ts := newClaimServer(t, toKeySet(c.pubKeys), signer, c.claimToResponseMap, &c.openIDConfig)
    	defer ts.Close()
    
    	// Make the certificate of the helper server available to the authenticator
    	caBundle := pem.EncodeToMemory(&pem.Block{
    		Type:  "CERTIFICATE",
    		Bytes: ts.Certificate().Raw,
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    func init() {
    	exithook.Gosched = Gosched
    	exithook.Goid = func() uint64 { return getg().goid }
    	exithook.Throw = throw
    }
    
    func runExitHooks(code int) {
    	exithook.Run(code)
    }
    
    // start forcegc helper goroutine
    func init() {
    	go forcegchelper()
    }
    
    func forcegchelper() {
    	forcegc.g = getg()
    	lockInit(&forcegc.lock, lockRankForcegc)
    	for {
    		lock(&forcegc.lock)
    		if forcegc.idle.Load() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top