Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 189 for buffer_end (0.21 sec)

  1. src/go/printer/printer.go

    		if ch == newline || ch == formfeed {
    			return true
    		}
    	}
    	return false
    }
    
    // intersperseComments consumes all comments that appear before the next token
    // tok and prints it together with the buffered whitespace (i.e., the whitespace
    // that needs to be written before the next token). A heuristic is used to mix
    // the comments and whitespace. The intersperseComments result indicates if a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  2. cmd/peer-rest-server.go

    	}
    
    	rulesMap := event.NewRulesMap(eventNames, pattern, event.TargetID{ID: mustGetUUID()})
    
    	// Listen Publisher uses nonblocking publish and hence does not wait for slow subscribers.
    	// Use buffered channel to take care of burst sends or slow w.Write()
    	ch := make(chan event.Event, globalAPIConfig.getRequestsPoolCapacity())
    	err := globalHTTPListen.Subscribe(mask, ch, ctx.Done(), func(ev event.Event) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    func (cw http2closeWaiter) Wait() {
    	<-cw
    }
    
    // bufferedWriter is a buffered writer that writes to w.
    // Its buffered writer is lazily allocated as needed, to minimize
    // idle memory usage with many connections.
    type http2bufferedWriter struct {
    	_  http2incomparable
    	w  io.Writer     // immutable
    	bw *bufio.Writer // non-nil when data is buffered
    }
    
    func http2newBufferedWriter(w io.Writer) *http2bufferedWriter {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	haveExemptPL, haveCatchAllPL bool
    
    	// Buffered FlowSchema status updates to do.  Do them when the
    	// lock is not held, to avoid a deadlock due to such a request
    	// provoking a call into this controller while the lock held
    	// waiting on that request to complete.
    	fsStatusUpdates []fsStatusUpdate
    
    	maxWaitingRequests, maxExecutingRequests int
    }
    
    // A buffered set of status updates for FlowSchemas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  5. src/encoding/base32/base32.go

    	buf := make([]byte, enc.EncodedLen(len(src)))
    	enc.Encode(buf, src)
    	return string(buf)
    }
    
    type encoder struct {
    	err  error
    	enc  *Encoding
    	w    io.Writer
    	buf  [5]byte    // buffered data waiting to be encoded
    	nbuf int        // number of bytes in buf
    	out  [1024]byte // output buffer
    }
    
    func (e *encoder) Write(p []byte) (n int, err error) {
    	if e.err != nil {
    		return 0, e.err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/encoding/base64/base64.go

    	buf := make([]byte, enc.EncodedLen(len(src)))
    	enc.Encode(buf, src)
    	return string(buf)
    }
    
    type encoder struct {
    	err  error
    	enc  *Encoding
    	w    io.Writer
    	buf  [3]byte    // buffered data waiting to be encoded
    	nbuf int        // number of bytes in buf
    	out  [1024]byte // output buffer
    }
    
    func (e *encoder) Write(p []byte) (n int, err error) {
    	if e.err != nil {
    		return 0, e.err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/ByteSource.java

       *
       * @throws IOException if an I/O error occurs while opening the stream
       */
      public abstract InputStream openStream() throws IOException;
    
      /**
       * Opens a new buffered {@link InputStream} for reading from this source. The returned stream is
       * not required to be a {@link BufferedInputStream} in order to allow implementations to simply
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
  8. src/net/http/requestwrite_test.go

    // TestRequestWriteError tests the Write err != nil checks in (*Request).write.
    func TestRequestWriteError(t *testing.T) {
    	failAfter, writeCount := 0, 0
    	errFail := errors.New("fake write failure")
    
    	// w is the buffered io.Writer to write the request to. It
    	// fails exactly once on its Nth Write call, as controlled by
    	// failAfter. It also tracks the number of calls in
    	// writeCount.
    	w := struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  9. cmd/storage-rest-client.go

    }
    
    // where we keep old *Readers
    var readMsgpReaderPool = sync.Pool{New: func() interface{} { return &msgp.Reader{} }}
    
    // mspNewReader returns a *Reader that reads from the provided reader.
    // The reader will be buffered.
    // Return with readMsgpReaderPoolPut when done.
    func msgpNewReader(r io.Reader) *msgp.Reader {
    	p := readMsgpReaderPool.Get().(*msgp.Reader)
    	if p.R == nil {
    		p.R = xbufio.NewReaderSize(r, 4<<10)
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. src/compress/flate/inflate.go

    // to switch to a new underlying [Reader]. This permits reusing a ReadCloser
    // instead of allocating a new one.
    type Resetter interface {
    	// Reset discards any buffered data and resets the Resetter as if it was
    	// newly initialized with the given reader.
    	Reset(r io.Reader, dict []byte) error
    }
    
    // The data structure for decoding Huffman tables is based on that of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top