Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 266703 (0.09 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

    * Make discovery summarizer call servers in parallel ([#26705](https://github.com/kubernetes/kubernetes/pull/26705), [@nebril](https://github.com/nebril))
    * Don't recreate lb cloud resources on kcm restart ([#29082](https://github.com/kubernetes/kubernetes/pull/29082), [@bprashanth](https://github.com/bprashanth))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	if v {
    		srv.disableKeepAlives.Store(false)
    		return
    	}
    	srv.disableKeepAlives.Store(true)
    
    	// Close idle HTTP/1 conns:
    	srv.closeIdleConns()
    
    	// TODO: Issue 26303: close HTTP/2 conns as soon as they become idle.
    }
    
    func (s *Server) logf(format string, args ...any) {
    	if s.ErrorLog != nil {
    		s.ErrorLog.Printf(format, args...)
    	} else {
    		log.Printf(format, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top