Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for sched (0.04 sec)

  1. pkg/scheduler/scheduler_test.go

    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    			sched, err := New(
    				ctx,
    				client,
    				informerFactory,
    				nil,
    				profile.NewRecorderFactory(eventBroadcaster),
    				WithPercentageOfNodesToScore(tt.percentageOfNodesToScoreConfig),
    			)
    			if err != nil {
    				t.Fatalf("Failed to create scheduler: %v", err)
    			}
    			if sched.percentageOfNodesToScore != tt.wantedPercentageOfNodesToScore {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/obj9.go

    		p1 = p->link;
    		o++;
    		if(p->mark & NOSCHED){
    			if(q1 != p){
    				sched(q1, q);
    			}
    			for(; p != nil; p = p->link){
    				if(!(p->mark & NOSCHED))
    					break;
    				q = p;
    			}
    			p1 = p;
    			q1 = p;
    			o = 0;
    			continue;
    		}
    		if(p->mark & (LABEL|SYNC)) {
    			if(q1 != p)
    				sched(q1, q);
    			q1 = p;
    			o = 1;
    		}
    		if(p->mark & (BRANCH|SYNC)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  3. src/cmd/trace/gen.go

    	switch m.Name {
    	case "/memory/classes/heap/objects:bytes":
    		ctx.HeapAlloc(ctx.elapsed(ev.Time()), m.Value.Uint64())
    	case "/gc/heap/goal:bytes":
    		ctx.HeapGoal(ctx.elapsed(ev.Time()), m.Value.Uint64())
    	case "/sched/gomaxprocs:threads":
    		ctx.Gomaxprocs(m.Value.Uint64())
    	}
    }
    
    // procRangeGenerator implements a generic handler for EventRange* events whose Scope.Kind is
    // ResourceProc.
    type procRangeGenerator struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/internal/trace/summary.go

    	RangeTime map[string]time.Duration
    }
    
    func (s GoroutineExecStats) NonOverlappingStats() map[string]time.Duration {
    	stats := map[string]time.Duration{
    		"Execution time":         s.ExecTime,
    		"Sched wait time":        s.SchedWaitTime,
    		"Syscall execution time": s.SyscallTime,
    		"Block time (syscall)":   s.SyscallBlockTime,
    		"Unknown time":           s.UnknownTime(),
    	}
    	for reason, dt := range s.BlockTimeByReason {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/internal/trace/summary_test.go

    			hasSyncBlockTime = true
    		}
    		if dt, ok := summary.RangeTime["GC mark assist"]; ok && dt > 0 {
    			hasGCMarkAssistTime = true
    		}
    	}
    	if !hasSchedWaitTime {
    		t.Error("missing sched wait time")
    	}
    	if !hasSyncBlockTime {
    		t.Error("missing sync block time")
    	}
    	if !hasGCMarkAssistTime {
    		t.Error("missing GC mark assist time")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/cmd/trace/regions.go

    	</tr>
    	<tr>
    		<td>Scheduler wait profile:</td>
    		<td> <a href="/regionsched?{{$p}}">graph</a> <a href="/regionsched?{{$p}}&raw=1" download="sched.profile">(download)</a></td>
    	</tr>
    </table>
    {{ end }}
    
    <h3 id="breakdown">Breakdown</h3>
    
    The table below breaks down where each goroutine is spent its time during the
    traced period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/internal/trace/trace_test.go

    				{"sync.(*Cond).Signal", 0},
    				{"main.main", 0},
    			}},
    			{trace.EventStateTransition, "Goroutine Running->Waiting", []frame{
    				{"time.Sleep", 0},
    				{"main.main", 0},
    			}},
    			{trace.EventMetric, "/sched/gomaxprocs:threads", []frame{
    				{"runtime.startTheWorld", 0}, // this is when the current gomaxprocs is logged.
    				{"runtime.startTheWorldGC", 0},
    				{"runtime.GOMAXPROCS", 0},
    				{"main.main", 0},
    			}},
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/syscall/exec_linux.go

    //go:build linux
    
    package syscall
    
    import (
    	"internal/itoa"
    	"runtime"
    	"unsafe"
    )
    
    // Linux unshare/clone/clone2/clone3 flags, architecture-independent,
    // copied from linux/sched.h.
    const (
    	CLONE_VM             = 0x00000100 // set if VM shared between processes
    	CLONE_FS             = 0x00000200 // set if fs info shared between processes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/runtime/stubs.go

    func getg() *g
    
    // mcall switches from the g to the g0 stack and invokes fn(g),
    // where g is the goroutine that made the call.
    // mcall saves g's current PC/SP in g->sched so that it can be restored later.
    // It is up to fn to arrange for that later execution, typically by recording
    // g in a data structure, causing something to call ready(g) later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. src/runtime/extern.go

    		# MB stacks  estimated scannable stack size, or /gc/scan/stack:bytes
    		# MB globals scannable global size, or /gc/scan/globals:bytes
    		# P          number of processors used, or /sched/gomaxprocs:threads
    	The phases are stop-the-world (STW) sweep termination, concurrent
    	mark and scan, and STW mark termination. The CPU times
    	for mark/scan are broken down in to assist time (GC performed in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top