Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GoLabel (0.24 sec)

  1. src/internal/trace/testdata/tests/go122-gc-stress.test

    GoStart dt=3 g=57 g_seq=12
    GoLabel dt=2 label_string=2
    GoBlock dt=1049 reason_string=15 stack=5
    GoUnblock dt=23 g=58 g_seq=7 stack=0
    GoStart dt=8 g=58 g_seq=8
    GoLabel dt=1 label_string=2
    GoBlock dt=1126 reason_string=15 stack=5
    GoUnblock dt=12 g=53 g_seq=3 stack=0
    GoStart dt=5 g=53 g_seq=4
    GoLabel dt=1 label_string=2
    GoBlock dt=1751 reason_string=15 stack=5
    GoUnblock dt=12 g=53 g_seq=5 stack=0
    GoStart dt=6 g=53 g_seq=6
    GoLabel dt=3 label_string=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  2. src/cmd/trace/testdata/go122.test

    GoStart dt=118 g=22 g_seq=5
    GoLabel dt=1 label_string=2
    GoBlock dt=7117 reason_string=15 stack=27
    ProcStop dt=41
    ProcStart dt=150567 p=4 p_seq=7
    GoUnblock dt=41 g=23 g_seq=4 stack=0
    HeapAlloc dt=108 heapalloc_value=17163592
    HeapAlloc dt=61 heapalloc_value=17166856
    HeapAlloc dt=2994 heapalloc_value=17608712
    GoStart dt=1008 g=23 g_seq=5
    GoLabel dt=4 label_string=4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  3. src/internal/trace/event/go122/event.go

    		IsTimedEvent: true,
    	},
    	EvHeapGoal: event.Spec{
    		Name:         "HeapGoal",
    		Args:         []string{"dt", "heapgoal_value"},
    		IsTimedEvent: true,
    	},
    	EvGoLabel: event.Spec{
    		Name:         "GoLabel",
    		Args:         []string{"dt", "label_string"},
    		IsTimedEvent: true,
    		StringIDs:    []int{1},
    	},
    	EvUserTaskBegin: event.Spec{
    		Name:         "UserTaskBegin",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/test/framework/components/ambient/waypoint.go

    			_, err = c.Kube().CoreV1().Services(ns.Name()).Update(t.Context(), svc, metav1.UpdateOptions{})
    			return err
    		}
    
    		if err = doLabel(newLabels); err != nil {
    			t.Fatalf("error updating svc %s, err %v", service, err)
    		}
    		t.Cleanup(func() {
    			if err := doLabel(oldLabels); err != nil {
    				scopes.Framework.Errorf("failed resetting waypoint for %s/%s; this will likely break other tests", ns.Name(), service)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/asm.go

    // TODO: configure the architecture
    
    var testOut *strings.Builder // Gathers output when testing.
    
    // append adds the Prog to the end of the program-thus-far.
    // If doLabel is set, it also defines the labels collect for this Prog.
    func (p *Parser) append(prog *obj.Prog, cond string, doLabel bool) {
    	if cond != "" {
    		switch p.arch.Family {
    		case sys.ARM:
    			if !arch.ARMConditionCodes(prog, cond) {
    				p.errorf("unrecognized condition code .%q", cond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	s.pushLine(n.Pos())
    	defer s.popLine()
    
    	// If s.curBlock is nil, and n isn't a label (which might have an associated goto somewhere),
    	// then this code is dead. Stop here.
    	if s.curBlock == nil && n.Op() != ir.OLABEL {
    		return
    	}
    
    	s.stmtList(n.Init())
    	switch n.Op() {
    
    	case ir.OBLOCK:
    		n := n.(*ir.BlockStmt)
    		s.stmtList(n.List)
    
    	case ir.OFALL: // no-op
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top