Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for GoLabel (0.29 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/compile/internal/walk/stmt.go

    	// special case for a receive where we throw away
    	// the value received.
    	case ir.ORECV:
    		n := n.(*ir.UnaryExpr)
    		return walkRecv(n)
    
    	case ir.OBREAK,
    		ir.OCONTINUE,
    		ir.OFALL,
    		ir.OGOTO,
    		ir.OLABEL,
    		ir.OJUMPTABLE,
    		ir.OINTERFACESWITCH,
    		ir.ODCL,
    		ir.OCHECKNIL:
    		return n
    
    	case ir.OBLOCK:
    		n := n.(*ir.BlockStmt)
    		walkStmtList(n.List)
    		return n
    
    	case ir.OCASE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/ir/fmt.go

    	OBLOCK:      -1,
    	OBREAK:      -1,
    	OCASE:       -1,
    	OCONTINUE:   -1,
    	ODCL:        -1,
    	ODEFER:      -1,
    	OFALL:       -1,
    	OFOR:        -1,
    	OGOTO:       -1,
    	OIF:         -1,
    	OLABEL:      -1,
    	OGO:         -1,
    	ORANGE:      -1,
    	ORETURN:     -1,
    	OSELECT:     -1,
    	OSWITCH:     -1,
    
    	OEND: 0,
    }
    
    // StmtWithInit reports whether op is a statement with an explicit init list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/staticinit/sched.go

    	} else if len(init) == 1 && init[0].Op() == ir.OINLMARK {
    		as2init = new(ir.AssignListStmt)
    	} else {
    		return false
    	}
    	if len(call.Body) != 2 || call.Body[0].Op() != ir.OBLOCK || call.Body[1].Op() != ir.OLABEL {
    		return false
    	}
    	label := call.Body[1].(*ir.LabelStmt).Label
    	block := call.Body[0].(*ir.BlockStmt)
    	list := block.List
    	var dcl *ir.Decl
    	if len(list) == 3 && list[0].Op() == ir.ODCL {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/typecheck.go

    		return n
    
    	case ir.OBREAK,
    		ir.OCONTINUE,
    		ir.ODCL,
    		ir.OGOTO,
    		ir.OFALL:
    		return n
    
    	case ir.OBLOCK:
    		n := n.(*ir.BlockStmt)
    		Stmts(n.List)
    		return n
    
    	case ir.OLABEL:
    		if n.Sym().IsBlank() {
    			// Empty identifier is valid but useless.
    			// Eliminate now to simplify life later.
    			// See issues 7538, 11589, 11593.
    			n = ir.NewBlockStmt(n.Pos(), nil)
    		}
    		return n
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    	case ir.OBLOCK:
    		n := n.(*ir.BlockStmt)
    		o.stmtList(n.List)
    
    	// Special: n->left is not an expression; save as is.
    	case ir.OBREAK,
    		ir.OCONTINUE,
    		ir.ODCL,
    		ir.OFALL,
    		ir.OGOTO,
    		ir.OLABEL,
    		ir.OTAILCALL:
    		o.out = append(o.out, n)
    
    	// Special: handle call arguments.
    	case ir.OCALLFUNC, ir.OCALLINTER:
    		n := n.(*ir.CallExpr)
    		t := o.markTemp()
    		o.call(n)
    		o.out = append(o.out, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top