Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 90 for buffer_end (0.67 sec)

  1. 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)
  2. 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)
  3. cmd/admin-handlers.go

    		return
    	}
    	setEventStreamHeaders(w)
    
    	// Trace Publisher and peer-trace-client uses nonblocking send and hence does not wait for slow receivers.
    	// Keep 100k buffered channel.
    	// If receiver cannot keep up with that we drop events.
    	traceCh := make(chan []byte, 100000)
    	peers, _ := newPeerRestClients(globalEndpoints)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    					return
    				}
    			}
    		}()
    	}
    	wg.Wait()
    }
    
    // Test that the bufio.Reader returned by Hijack includes any buffered
    // byte (from the Server's backgroundRead) in its buffer. We want the
    // Handler code to be able to tell that a byte is available via
    // bufio.Reader.Buffered(), without resorting to Reading it
    // (potentially blocking) to get at it.
    func TestServerHijackGetsBackgroundByte(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. 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)
  6. src/net/http/request.go

    	}
    	// TODO: validate r.Method too? At least it's less likely to
    	// come from an attacker (more likely to be a constant in
    	// code).
    
    	// Wrap the writer in a bufio Writer if it's not already buffered.
    	// Don't always call NewWriter, as that forces a bytes.Buffer
    	// and other small bufio Writers to have a minimum 4k buffer
    	// size.
    	var bw *bufio.Writer
    	if _, ok := w.(io.ByteWriter); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    	input     bytes.Reader // application data waiting to be read, from rawInput.Next
    	hand      bytes.Buffer // handshake data waiting to be read
    	buffering bool         // whether records are buffered in sendBuf
    	sendBuf   []byte       // a buffer of records waiting to be sent
    
    	// bytesSent counts the bytes of application data sent.
    	// packetsSent counts packets.
    	bytesSent   int64
    	packetsSent int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

          out.writeUtf8("square")
          out.flush()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("stream was reset: CANCEL")
        }
        // Close throws because buffered data wasn't flushed.
        assertFailsWith<IOException> {
          out.close()
        }
        assertThat(connection.openStreamCount()).isEqualTo(0)
    
        // Verify the peer received what was expected.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. src/net/http/client_test.go

    	net.Conn
    	count *int
    }
    
    func (c *writeCountingConn) Write(p []byte) (int, error) {
    	*c.count++
    	return c.Conn.Write(p)
    }
    
    // TestClientWrites verifies that client requests are buffered and we
    // don't send a TCP packet per line of the http request + body.
    func TestClientWrites(t *testing.T) { run(t, testClientWrites, []testMode{http1Mode}) }
    func testClientWrites(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	// enter mark termination.
    	//
    	// TODO: We could clear out buffers just before mark if this
    	// has a non-negligible impact on STW time.
    	for _, p := range allp {
    		// The write barrier may have buffered pointers since
    		// the gcMarkDone barrier. However, since the barrier
    		// ensured all reachable objects were marked, all of
    		// these must be pointers to black objects. Hence we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top