Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for IsRead (0.08 sec)

  1. src/net/http/server.go

    // running.
    func (cw *chunkWriter) writeHeader(p []byte) {
    	if cw.wroteHeader {
    		return
    	}
    	cw.wroteHeader = true
    
    	w := cw.res
    	keepAlivesEnabled := w.conn.server.doKeepAlives()
    	isHEAD := w.req.Method == "HEAD"
    
    	// header is written out to w.conn.buf below. Depending on the
    	// state of the handler, we either own the map or not. If we
    	// don't own it, the exclude map is created lazily for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    		}
    	} else if len(clens) > 1 {
    		// TODO: care? unlike http/1, it won't mess up our framing, so it's
    		// more safe smuggling-wise to ignore.
    	} else if f.StreamEnded() && !cs.isHead {
    		res.ContentLength = 0
    	}
    
    	if cs.isHead {
    		res.Body = http2noBody
    		return res, nil
    	}
    
    	if f.StreamEnded() {
    		if res.ContentLength > 0 {
    			res.Body = http2missingBody{}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top