Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for nextIdent (0.58 sec)

  1. src/crypto/tls/quic_test.go

    	for _, c := range []*testQUICConn{a, b} {
    		if !c.conn.conn.quic.started {
    			if err := c.conn.Start(ctx); err != nil {
    				return err
    			}
    		}
    	}
    	idleCount := 0
    	for {
    		e := a.conn.NextEvent()
    		if onEvent != nil && onEvent(e, a, b) {
    			continue
    		}
    		switch e.Kind {
    		case QUICNoEvent:
    			idleCount++
    			if idleCount == 2 {
    				if !a.complete || !b.complete {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/internal/trace/batchcursor.go

    type batchCursor struct {
    	m       ThreadID
    	lastTs  Time
    	idx     int       // next index into []batch
    	dataOff int       // next index into batch.data
    	ev      baseEvent // last read event
    }
    
    func (b *batchCursor) nextEvent(batches []batch, freq frequency) (ok bool, err error) {
    	// Batches should generally always have at least one event,
    	// but let's be defensive about that and accept empty batches.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. api/go1.21.txt

    pkg crypto/tls, method (*QUICConn) ConnectionState() ConnectionState #44886
    pkg crypto/tls, method (*QUICConn) HandleData(QUICEncryptionLevel, []uint8) error #44886
    pkg crypto/tls, method (*QUICConn) NextEvent() QUICEvent #44886
    pkg crypto/tls, method (*QUICConn) SendSessionTicket(QUICSessionTicketOptions) error #60107
    pkg crypto/tls, type QUICSessionTicketOptions struct #60107
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    ){event.outFlowEvents.forEach(function(outflow){if((outflow.category===POSTTASK_FLOW_EVENT||outflow.category===IPC_FLOW_EVENT)&&outflow.endSlice){this.associatedEvents_.push(outflow);const nextEvent=outflow.endSlice.mostTopLevelSlice;if(!visited.contains(nextEvent)){visited.push(nextEvent);queue.push(nextEvent);}}},this);},backtraceFromDraw(beginImplFrame,visited){const pendingEventQueue=[];pendingEventQueue.push(beginImplFrame.mostTopLevelSlice);while(pendingEventQueue.length!==0){const event=p...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Dialer).Dial", Method, 15},
    		{"(*Dialer).DialContext", Method, 15},
    		{"(*QUICConn).Close", Method, 21},
    		{"(*QUICConn).ConnectionState", Method, 21},
    		{"(*QUICConn).HandleData", Method, 21},
    		{"(*QUICConn).NextEvent", Method, 21},
    		{"(*QUICConn).SendSessionTicket", Method, 21},
    		{"(*QUICConn).SetTransportParameters", Method, 21},
    		{"(*QUICConn).Start", Method, 21},
    		{"(*SessionState).Bytes", Method, 21},
    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