Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for buffer_end (0.26 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       *  * Both input and output streams have transmitted all data and headers.
       *
       * Note that the input stream may continue to yield data even after a stream reports itself as
       * not open. This is because input data is buffered.
       */
      val isOpen: Boolean
        get() {
          this.withLock {
            if (errorCode != null) {
              return false
            }
            if ((source.finished || source.closed) &&
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/text/scanner/scanner.go

    	lastCharLen  int // length of last character in bytes
    
    	// Token text buffer
    	// Typically, token text is stored completely in srcBuf, but in general
    	// the token text's head may be buffered in tokBuf while the token text's
    	// tail is stored in srcBuf.
    	tokBuf bytes.Buffer // token text head that is not in srcBuf anymore
    	tokPos int          // token text tail position (srcBuf index); valid if >= 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/time/sleep_test.go

    func await(slot int, result chan<- afterResult, ac <-chan Time) {
    	result <- afterResult{slot, <-ac}
    }
    
    func testAfterQueuing1(delta Duration, after func(Duration) <-chan Time) error {
    	// make the result channel buffered because we don't want
    	// to depend on channel queuing semantics that might
    	// possibly change in the future.
    	result := make(chan afterResult, len(slots))
    
    	t0 := Now()
    	for _, slot := range slots {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle.go

    		es.stats.missedExpiryTasks.Add(1)
    	}
    }
    
    // globalExpiryState is the per-node instance which manages all ILM expiry tasks.
    var globalExpiryState *expiryState
    
    // newExpiryState creates an expiryState with buffered channels allocated for
    // each ILM expiry task type.
    func newExpiryState(ctx context.Context, objAPI ObjectLayer, n int) *expiryState {
    	es := &expiryState{
    		ctx:    ctx,
    		objAPI: objAPI,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768.go

    	// bits (dropped with a mask) and the leftmost bits are the least
    	// significant bits (dropped with a right shift).
    
    	var a nttElement
    	var j int        // index into a
    	var buf [24]byte // buffered reads from B
    	off := len(buf)  // index into buf, starts in a "buffer fully consumed" state
    	for {
    		if off >= len(buf) {
    			B.Read(buf[:])
    			off = 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof.go

    var cpu struct {
    	sync.Mutex
    	profiling bool
    	done      chan bool
    }
    
    // StartCPUProfile enables CPU profiling for the current process.
    // While profiling, the profile will be buffered and written to w.
    // StartCPUProfile returns an error if profiling is already enabled.
    //
    // On Unix-like systems, StartCPUProfile does not work by default for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    }
    
    // Trace public API.
    
    var (
    	traceAdvanceSema  uint32 = 1
    	traceShutdownSema uint32 = 1
    )
    
    // StartTrace enables tracing for the current process.
    // While tracing, the data will be buffered and available via [ReadTrace].
    // StartTrace returns an error if tracing is already enabled.
    // Most clients should use the [runtime/trace] package or the [testing] package's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top