Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 849 for flushF (0.17 sec)

  1. src/runtime/tracecpu.go

    		}
    
    		// Write out a trace event.
    		w := unsafeTraceWriter(gen, trace.cpuBuf[gen%2])
    
    		// Ensure we have a place to write to.
    		var flushed bool
    		w, flushed = w.ensure(2 + 5*traceBytesPerNumber /* traceEvCPUSamples + traceEvCPUSample + timestamp + g + m + p + stack ID */)
    		if flushed {
    			// Annotate the batch as containing strings.
    			w.byte(byte(traceEvCPUSamples))
    		}
    
    		// Add the stack to the table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    	defer func() {
    		if s.MemoryAllocator != nil {
    			runtime.AllocatorPool.Put(s.MemoryAllocator)
    		}
    	}()
    
    	flusher, ok := w.(http.Flusher)
    	if !ok {
    		err := fmt.Errorf("unable to start watch - can't get http.Flusher: %#v", w)
    		utilruntime.HandleError(err)
    		s.Scope.err(errors.NewInternalError(err), w, req)
    		return
    	}
    
    	framer := s.Framer.NewFrameWriter(w)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/test2json.go

    		if c == '\n' {
    			return i, 1
    		}
    		if c == marker && i > 0 { // test -v=json emits ^V at start of framing lines
    			return i, 0
    		}
    	}
    	return -1, 0
    }
    
    // flush flushes the line buffer.
    func (l *lineBuffer) flush() {
    	if len(l.b) > 0 {
    		// Must be a line without a \n, so a partial line.
    		l.part(l.b)
    		l.b = l.b[:0]
    	}
    }
    
    var benchmark = []byte("Benchmark")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    		scanobject(b, gcw)
    
    		// Flush background scan work credit.
    		if gcw.heapScanWork >= gcCreditSlack {
    			gcController.heapScanWork.Add(gcw.heapScanWork)
    			workFlushed += gcw.heapScanWork
    			gcw.heapScanWork = 0
    		}
    	}
    
    	// Unlike gcDrain, there's no need to flush remaining work
    	// here because this never flushes to bgScanCredit and
    	// gcw.dispose will flush any remaining work to scanWork.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. pkg/hbone/server.go

    	t0 := time.Now()
    	log.WithLabels("host", r.Host, "source", r.RemoteAddr).Info("Received CONNECT")
    	// Send headers back immediately so we can start getting the body
    	w.(http.Flusher).Flush()
    	ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
    	defer cancel()
    
    	dst, err := (&net.Dialer{}).DialContext(ctx, "tcp", r.Host)
    	if err != nil {
    		w.WriteHeader(http.StatusServiceUnavailable)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. src/hash/maphash/maphash.go

    // (The seed remains the same.)
    func (h *Hash) Reset() {
    	h.initSeed()
    	h.state = h.seed
    	h.n = 0
    }
    
    // precondition: buffer is full.
    func (h *Hash) flush() {
    	if h.n != len(h.buf) {
    		panic("maphash: flush of partially full buffer")
    	}
    	h.initSeed()
    	h.state.s = rthash(h.buf[:h.n], h.state.s)
    	h.n = 0
    }
    
    // Sum64 returns h's current 64-bit value, which depends on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/ReaderInputStream.java

            // == true. Then there is a final call to flush.
            CoderResult result;
            if (doneFlushing) {
              result = CoderResult.UNDERFLOW;
            } else if (doneEncoding) {
              result = encoder.flush(byteBuffer);
            } else {
              result = encoder.encode(charBuffer, byteBuffer, endOfInput);
            }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/ReaderInputStream.java

            // == true. Then there is a final call to flush.
            CoderResult result;
            if (doneFlushing) {
              result = CoderResult.UNDERFLOW;
            } else if (doneEncoding) {
              result = encoder.flush(byteBuffer);
            } else {
              result = encoder.encode(charBuffer, byteBuffer, endOfInput);
            }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. src/encoding/ascii85/ascii85.go

    // Decode expects these to have been stripped by the caller.
    //
    // If flush is true, Decode assumes that src represents the
    // end of the input stream and processes it completely rather
    // than wait for the completion of another 32-bit block.
    //
    // [NewDecoder] wraps an [io.Reader] interface around Decode.
    func Decode(dst, src []byte, flush bool) (ndst, nsrc int, err error) {
    	var v uint32
    	var nb int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/timeout.go

    	}
    	return tw.w.Write(p)
    }
    
    func (tw *baseTimeoutWriter) Flush() {
    	tw.mu.Lock()
    	defer tw.mu.Unlock()
    
    	if tw.timedOut {
    		return
    	}
    
    	// the outer ResponseWriter object returned by WrapForHTTP1Or2 implements
    	// http.Flusher if the inner object (tw.w) implements http.Flusher.
    	tw.w.(http.Flusher).Flush()
    }
    
    func (tw *baseTimeoutWriter) WriteHeader(code int) {
    	tw.mu.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top