Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for Stalled (0.11 sec)

  1. src/net/http/transport.go

    //
    // If earlyCloseFn is non-nil and Close is called before io.EOF is
    // seen, earlyCloseFn is called instead of fn, and its return value is
    // the return value from Close.
    type bodyEOFSignal struct {
    	body         io.ReadCloser
    	mu           sync.Mutex        // guards following 4 fields
    	closed       bool              // whether Close has been called
    	rerr         error             // sticky Read error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    					*called++
    					return checkFields(c, called, "client")
    				}
    			},
    		},
    		{
    			name: "RequestClientCert",
    			configureServer: func(config *Config, called *int) {
    				config.ClientAuth = RequestClientCert
    				config.VerifyConnection = func(c ConnectionState) error {
    					*called++
    					return checkFields(c, called, "server")
    				}
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    // valid and unchanging. The traceback function may also be called
    // deeper in the call stack on the same thread that recorded the
    // context. The traceback function may be called multiple times with
    // the same Context value; it will usually be appropriate to cache the
    // result, if possible, the first time this is called for a specific
    // context value.
    //
    // If the traceback function is called from a signal handler on a Unix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/testing/testing.go

    		c.helperPCs[pc[0]] = struct{}{}
    		c.helperNames = nil // map will be recreated next time it is needed
    	}
    }
    
    // Cleanup registers a function to be called when the test (or subtest) and all its
    // subtests complete. Cleanup functions will be called in last added,
    // first called order.
    func (c *common) Cleanup(f func()) {
    	c.checkFuzzFn("Cleanup")
    	var pc [maxStackLen]uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	Get(sessionKey string) (session *ClientSessionState, ok bool)
    
    	// Put adds the ClientSessionState to the cache with the given key. It might
    	// get called multiple times in a connection if a TLS 1.3 server provides
    	// more than one session ticket. If called with a nil *ClientSessionState,
    	// it should remove the cache entry.
    	Put(sessionKey string, cs *ClientSessionState)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    		proxier.Sync()
    	}
    }
    
    // OnServiceDelete is called whenever deletion of an existing service
    // object is observed.
    func (proxier *Proxier) OnServiceDelete(service *v1.Service) {
    	proxier.OnServiceUpdate(service, nil)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. src/crypto/tls/tls_test.go

    	const expectedCount = 9
    	called := 0
    
    	c1 := Config{
    		Time: func() time.Time {
    			called |= 1 << 0
    			return time.Time{}
    		},
    		GetCertificate: func(*ClientHelloInfo) (*Certificate, error) {
    			called |= 1 << 1
    			return nil, nil
    		},
    		GetClientCertificate: func(*CertificateRequestInfo) (*Certificate, error) {
    			called |= 1 << 2
    			return nil, nil
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    		proxier.Sync()
    	}
    }
    
    // OnServiceDelete is called whenever deletion of an existing service
    // object is observed.
    func (proxier *Proxier) OnServiceDelete(service *v1.Service) {
    	proxier.OnServiceUpdate(service, nil)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/proxier.go

    		proxier.Sync()
    	}
    }
    
    // OnServiceDelete is called whenever deletion of an existing service
    // object is observed.
    func (proxier *Proxier) OnServiceDelete(service *v1.Service) {
    	proxier.OnServiceUpdate(service, nil)
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	if err := c.conn.Close(); err != nil {
    		return err
    	}
    	return alertErr
    }
    
    var errEarlyCloseWrite = errors.New("tls: CloseWrite called before handshake complete")
    
    // CloseWrite shuts down the writing side of the connection. It should only be
    // called once the handshake has completed and does not call CloseWrite on the
    // underlying connection. Most callers should just use [Conn.Close].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top