Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for sched (0.05 sec)

  1. src/runtime/metrics/doc.go

    		by code called via cgo or via the syscall package. Sum of all
    		metrics in /memory/classes.
    
    	/sched/gomaxprocs:threads
    		The current runtime.GOMAXPROCS setting, or the number of
    		operating system threads that can execute user-level Go code
    		simultaneously.
    
    	/sched/goroutines:goroutines
    		Count of live goroutines.
    
    	/sched/latencies:seconds
    		Distribution of the time goroutines have spent in the scheduler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. src/runtime/metrics.go

    				sched.timeToRun.write(out)
    			},
    		},
    		"/sched/pauses/stopping/gc:seconds": {
    			compute: func(_ *statAggregate, out *metricValue) {
    				sched.stwStoppingTimeGC.write(out)
    			},
    		},
    		"/sched/pauses/stopping/other:seconds": {
    			compute: func(_ *statAggregate, out *metricValue) {
    				sched.stwStoppingTimeOther.write(out)
    			},
    		},
    		"/sched/pauses/total/gc:seconds": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. src/runtime/cgocall.go

    	}
    
    	// Do not unwind m->g0->sched.sp.
    	// Our caller, cgocallback, will do that.
    	restore = false
    }
    
    func unwindm(restore *bool) {
    	if *restore {
    		// Restore sp saved by cgocallback during
    		// unwind of g's stack (see comment at top of file).
    		mp := acquirem()
    		sched := &mp.g0.sched
    		sched.sp = *(*uintptr)(unsafe.Pointer(sched.sp + alignUp(sys.MinFrameSize, sys.StackAlign)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/runtime/asm_arm.s

    	MOVW	R3, 12(R13)
    	BL	runtime·cgocallbackg(SB)
    
    	// Restore g->sched (== m->curg->sched) from saved values.
    	MOVW	0(R13), R5
    	MOVW	R5, (g_sched+gobuf_pc)(g)
    	MOVW	$(12+4)(R13), R4	// must match frame size
    	MOVW	R4, (g_sched+gobuf_sp)(g)
    
    	// Switch back to m->g0's stack and restore m->g0->sched.sp.
    	// (Unlike m->curg, the g0 goroutine never uses sched.pc,
    	// so we do not have to restore it.)
    	MOVW	g_m(g), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  5. src/runtime/asm_ppc64x.s

    	// Restore g->sched (== m->curg->sched) from saved values.
    	MOVD	0(R1), R5
    	MOVD	R5, (g_sched+gobuf_pc)(g)
    	MOVD	$(24+FIXED_FRAME)(R1), R4       // must match frame size
    	MOVD	R4, (g_sched+gobuf_sp)(g)
    
    	// Switch back to m->g0's stack and restore m->g0->sched.sp.
    	// (Unlike m->curg, the g0 goroutine never uses sched.pc,
    	// so we do not have to restore it.)
    	MOVD	g_m(g), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. src/runtime/tracestack.go

    			// behave like gcallers above, we start unwinding from sched.bp, which
    			// points to the caller frame of the leaf frame on g's stack. The return
    			// address of the leaf frame is stored in sched.pc, which we manually
    			// capture here.
    			//
    			// (2) We're called against a gp that we're not currently executing on, but that isn't
    			// in a syscall, in which case it's currently not executing. gp.sched contains the most
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/cmd/trace/goroutines.go

    		</tr>
    	<tr>
    		<td>Scheduler wait profile:</td>
    		<td> <a href="/sched?name={{.Name}}">graph</a> <a href="/sched?name={{.Name}}&raw=1" download="sched.profile">(download)</a></td>
    	</tr>
    </table>
    
    <h3 id="breakdown">Breakdown</h3>
    
    The table below breaks down where each goroutine is spent its time during the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/runtime/metrics_test.go

    func testSchedPauseMetrics(t *testing.T, fn func(t *testing.T), isGC bool) {
    	m := []metrics.Sample{
    		{Name: "/sched/pauses/stopping/gc:seconds"},
    		{Name: "/sched/pauses/stopping/other:seconds"},
    		{Name: "/sched/pauses/total/gc:seconds"},
    		{Name: "/sched/pauses/total/other:seconds"},
    	}
    
    	stoppingGC := &m[0]
    	stoppingOther := &m[1]
    	totalGC := &m[2]
    	totalOther := &m[3]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. src/internal/trace/testtrace/validation.go

    			id := l.Resource.Thread()
    			if _, ok := v.ms[id]; !ok {
    				e.Errorf("label for invalid thread %d", id)
    			}
    		}
    	case trace.EventStackSample:
    		// Not much to check here. It's basically a sched context and a stack.
    		// The sched context is also not guaranteed to align with other events.
    		// We already checked the stack above.
    	case trace.EventStateTransition:
    		// Validate state transitions.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/cronjob_controllerv2.go

    	if oldCJ.Spec.Schedule != newCJ.Spec.Schedule || !ptr.Equal(oldCJ.Spec.TimeZone, newCJ.Spec.TimeZone) {
    		// schedule changed, change the requeue time, pass nil recorder so that syncCronJob will output any warnings
    		sched, err := cron.ParseStandard(formatSchedule(newCJ, nil))
    		if err != nil {
    			// this is likely a user error in defining the spec value
    			// we should log the error and not reconcile this cronjob until an update to spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top