Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for StreamWriter (0.24 sec)

  1. src/crypto/cipher/io.go

    	return
    }
    
    // StreamWriter wraps a [Stream] into an io.Writer. It calls XORKeyStream
    // to process each slice of data which passes through. If any [StreamWriter.Write]
    // call returns short then the StreamWriter is out of sync and must be discarded.
    // A StreamWriter has no internal buffering; [StreamWriter.Close] does not need
    // to be called to flush write data.
    type StreamWriter struct {
    	S   Stream
    	W   io.Writer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/net/http/fcgi/fcgi.go

    }
    
    func newWriter(c *conn, recType recType, reqId uint16) *bufWriter {
    	s := &streamWriter{c: c, recType: recType, reqId: reqId}
    	w := bufio.NewWriterSize(s, maxWrite)
    	return &bufWriter{s, w}
    }
    
    // streamWriter abstracts out the separation of a stream into discrete records.
    // It only writes maxWrite bytes at a time.
    type streamWriter struct {
    	c       *conn
    	recType recType
    	reqId   uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"NewOFB", Func, 0},
    		{"Stream", Type, 0},
    		{"StreamReader", Type, 0},
    		{"StreamReader.R", Field, 0},
    		{"StreamReader.S", Field, 0},
    		{"StreamWriter", Type, 0},
    		{"StreamWriter.Err", Field, 0},
    		{"StreamWriter.S", Field, 0},
    		{"StreamWriter.W", Field, 0},
    	},
    	"crypto/des": {
    		{"(KeySizeError).Error", Method, 0},
    		{"BlockSize", Const, 0},
    		{"KeySizeError", Type, 0},
    		{"NewCipher", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top