Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for write32 (0.43 sec)

  1. src/cmd/link/internal/ld/data.go

    // writeBlocks writes a specified chunk of symbols to the output buffer. It
    // breaks the write up into ≥blockSize chunks to write them out, and schedules
    // as many goroutines as necessary to accomplish this task. This call then
    // blocks, waiting on the writes to complete. Note that we use the sem parameter
    // to limit the number of concurrent writes taking place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/net/http/server.go

    func (h extraHeader) Write(w *bufio.Writer) {
    	if h.date != nil {
    		w.Write(headerDate)
    		w.Write(h.date)
    		w.Write(crlf)
    	}
    	if h.contentLength != nil {
    		w.Write(headerContentLength)
    		w.Write(h.contentLength)
    		w.Write(crlf)
    	}
    	for i, v := range []string{h.contentType, h.connection, h.transferEncoding} {
    		if v != "" {
    			w.Write(extraHeaderKeys[i])
    			w.Write(colonSpace)
    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