Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for admission (0.19 sec)

  1. src/cmd/trace/jsontrace.go

    			log.Printf("failed to generate trace: %v", err)
    		}
    	})
    }
    
    // traceContext is a wrapper around a traceviewer.Emitter with some additional
    // information that's useful to most parts of trace viewer JSON emission.
    type traceContext struct {
    	*traceviewer.Emitter
    	startTime trace.Time
    	endTime   trace.Time
    }
    
    // elapsed returns the elapsed time between the trace time and the start time
    // of the trace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/runtime/coro.go

    	}
    
    	// Emit the trace event after getting gnext but before changing curg.
    	// GoSwitch expects that the current G is running and that we haven't
    	// switched yet for correct status emission.
    	if trace.ok() {
    		trace.GoSwitch(gnext, exit)
    	}
    
    	// Start running next, without heavy scheduling machinery.
    	// Set mp.curg and gnext.m and then update scheduling state
    	// directly if possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top