Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for sched (0.05 sec)

  1. 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)
  2. pkg/scheduler/schedule_one_test.go

    	for _, n := range nodes {
    		cache.AddNode(logger, n)
    	}
    
    	sched := &Scheduler{
    		Cache:                    cache,
    		nodeInfoSnapshot:         emptySnapshot,
    		percentageOfNodesToScore: schedulerapi.DefaultPercentageOfNodesToScore,
    	}
    	sched.applyDefaultHandlers()
    	cache.UpdateSnapshot(logger, sched.nodeInfoSnapshot)
    	return sched
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/badlinkname.go

    //   - github.com/outcaste-io/ristretto
    //   - github.com/clubpay/ronykit
    //go:linkname cputicks
    
    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor (from assembly)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 661 bytes
    - Viewed (0)
  7. src/runtime/panic.go

    	var d *_defer
    	mp := acquirem()
    	pp := mp.p.ptr()
    	if len(pp.deferpool) == 0 && sched.deferpool != nil {
    		lock(&sched.deferlock)
    		for len(pp.deferpool) < cap(pp.deferpool)/2 && sched.deferpool != nil {
    			d := sched.deferpool
    			sched.deferpool = d.link
    			d.link = nil
    			pp.deferpool = append(pp.deferpool, d)
    		}
    		unlock(&sched.deferlock)
    	}
    	if n := len(pp.deferpool); n > 0 {
    		d = pp.deferpool[n-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. src/runtime/asm_386.s

    	// and then systemstack will try to use it. If we don't set it here,
    	// that restored SP will be uninitialized (typically 0) and
    	// will not be usable.
    	MOVL	m_g0(BP), SI
    	MOVL	SP, (g_sched+gobuf_sp)(SI)
    
    havem:
    	// Now there's a valid m, and we're running on its m->g0.
    	// Save current m->g0->sched.sp on stack and then set it to SP.
    	// Save current sp in m->g0->sched.sp in preparation for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  9. src/runtime/asm_arm64.s

    	// Restore g->sched (== m->curg->sched) from saved values.
    	MOVD	0(RSP), R5
    	MOVD	R5, (g_sched+gobuf_pc)(g)
    	MOVD	RSP, R4
    	ADD	$48, R4, R4
    	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: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/utils_test.go

    	// schedule is hourly on the hour
    	schedule := "0 * * * ?"
    
    	ParseSchedule := func(schedule string) cron.Schedule {
    		sched, err := cron.ParseStandard(schedule)
    		if err != nil {
    			t.Errorf("Error parsing schedule: %#v", err)
    			return nil
    		}
    		return sched
    	}
    	recorder := record.NewFakeRecorder(50)
    	// T1 is a scheduled start time of that schedule
    	T1 := *topOfTheHour()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top