Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Rings (0.06 sec)

  1. prow/config/calico.yaml

                              type: integer
                            type:
                              description: Match on a specific ICMP type.  For example
                                a value of 8 refers to ICMP Echo Request (i.e. pings).
                              type: integer
                          type: object
                        ipVersion:
                          description: IPVersion is an optional field that restricts the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	var p [8]byte
    	for {
    		if _, err := rand.Read(p[:]); err != nil {
    			return err
    		}
    		cc.mu.Lock()
    		// check for dup before insert
    		if _, found := cc.pings[p]; !found {
    			cc.pings[p] = c
    			cc.mu.Unlock()
    			break
    		}
    		cc.mu.Unlock()
    	}
    	var pingError error
    	errc := make(chan struct{})
    	go func() {
    		cc.t.markNewGoroutine()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.21.md

    - Enable SPDY pings to keep connections alive, so that `kubectl exec` and `kubectl portforward` won't be interrupted. ([#97083](https://github.com/kubernetes/kubernetes/pull/97083), [@knight42](https://github.com/knight42)) [SIG API Machinery and CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top