Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 96 for sched (0.04 sec)

  1. src/runtime/coro.go

    		gnext.lockedm.set(mp)
    	}
    
    	// Release the trace locker. We've completed all the necessary transitions..
    	if trace.ok() {
    		traceRelease(trace)
    	}
    
    	// Switch to gnext. Does not return.
    	gogo(&gnext.sched)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/volume/portworx/portworx_util.go

    const (
    	osdMgmtDefaultPort = 9001
    	osdDriverVersion   = "v1"
    	pxdDriverName      = "pxd"
    	pvcClaimLabel      = "pvc"
    	pvcNamespaceLabel  = "namespace"
    	pxServiceName      = "portworx-service"
    	pxDriverName       = "pxd-sched"
    )
    
    type portworxVolumeUtil struct {
    	portworxClient *osdclient.Client
    }
    
    // CreateVolume creates a Portworx volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  7. 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)
  8. src/syscall/mkerrors.sh

    #include <linux/if_packet.h>
    #include <linux/if_addr.h>
    #include <linux/filter.h>
    #include <linux/netlink.h>
    #include <linux/reboot.h>
    #include <linux/rtnetlink.h>
    #include <linux/ptrace.h>
    #include <linux/sched.h>
    #include <linux/serial.h>
    #include <linux/wait.h>
    #include <linux/icmpv6.h>
    #include <net/route.h>
    #include <termios.h>
    
    #ifndef MSG_FASTOPEN
    #define MSG_FASTOPEN    0x20000000
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  9. src/runtime/signal_windows.go

    	if ep.context.ip() == abi.FuncPCABI0(sigresume) {
    		// sigresume has already been set up by a previous exception.
    		return ret
    	}
    	prepareContextForSigResume(ep.context)
    	ep.context.set_sp(gp.m.g0.sched.sp)
    	ep.context.set_ip(abi.FuncPCABI0(sigresume))
    	return ret
    }
    
    // Called by sigtramp from Windows VEH handler.
    // Return value signals whether the exception has been handled (EXCEPTION_CONTINUE_EXECUTION)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. 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)
Back to top