Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for my_all (0.5 sec)

  1. src/runtime/metrics_test.go

    			for i, stk := range acceptStacks {
    				if goexperiment.StaticLockRanking {
    					if !slices.ContainsFunc(stk, func(s string) bool {
    						return s == "runtime.systemstack" || s == "runtime.mcall" || s == "runtime.mstart"
    					}) {
    						// stk is a call stack that is still on the user stack when
    						// it calls runtime.unlock. Add the extra function that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. src/runtime/panic.go

    func (p *_panic) nextDefer() (func(), bool) {
    	gp := getg()
    
    	if !p.deferreturn {
    		if gp._panic != p {
    			throw("bad panic stack")
    		}
    
    		if p.recovered {
    			mcall(recovery) // does not return
    			throw("recovery failed")
    		}
    	}
    
    	// The assembler adjusts p.argp in wrapper functions that shouldn't
    	// be visible to recover(), so we need to restore it each iteration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. src/runtime/asm_ppc64x.s

    	MOVD	R0, gobuf_ret(R5)
    	MOVD	R0, gobuf_lr(R5)
    	MOVD	R0, gobuf_ctxt(R5)
    	CMP	R0, R0 // set condition codes for == test, needed by stack split
    	MOVD	gobuf_pc(R5), R12
    	MOVD	R12, CTR
    	BR	(CTR)
    
    // void mcall(fn func(*g))
    // Switch to m->g0's stack, call fn(g).
    // Fn must never return. It should gogo(&g->sched)
    // to keep running g.
    TEXT runtime·mcall<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-8
    	// Save caller state in g->sched
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	PTRACE_SYSCALL_INFO_EXIT                    = 0x2
    	PTRACE_SYSCALL_INFO_NONE                    = 0x0
    	PTRACE_SYSCALL_INFO_SECCOMP                 = 0x3
    	PTRACE_TRACEME                              = 0x0
    	P_ALL                                       = 0x0
    	P_PGID                                      = 0x2
    	P_PID                                       = 0x1
    	P_PIDFD                                     = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  5. src/runtime/asm_arm64.s

    	MOVD	$0, gobuf_bp(R5)
    	MOVD	$0, gobuf_ret(R5)
    	MOVD	$0, gobuf_lr(R5)
    	MOVD	$0, gobuf_ctxt(R5)
    	CMP	ZR, ZR // set condition codes for == test, needed by stack split
    	MOVD	gobuf_pc(R5), R6
    	B	(R6)
    
    // void mcall(fn func(*g))
    // Switch to m->g0's stack, call fn(g).
    // Fn must never return. It should gogo(&g->sched)
    // to keep running g.
    TEXT runtime·mcall<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD	R0, R26				// context
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    	MOVQ	gobuf_bp(BX), BP
    	MOVQ	$0, gobuf_sp(BX)	// clear to help garbage collector
    	MOVQ	$0, gobuf_ret(BX)
    	MOVQ	$0, gobuf_ctxt(BX)
    	MOVQ	$0, gobuf_bp(BX)
    	MOVQ	gobuf_pc(BX), BX
    	JMP	BX
    
    // func mcall(fn func(*g))
    // Switch to m->g0's stack, call fn(g).
    // Fn must never return. It should gogo(&g->sched)
    // to keep running g.
    TEXT runtime·mcall<ABIInternal>(SB), NOSPLIT, $0-8
    	MOVQ	AX, DX	// DX = fn
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	outPath := filepath.Join(*flagTmpdir, "a.out")
    	flags = append(flags, "-o", outPath, flag, trivialPath)
    
    	cmd := exec.Command(linker, flags...)
    	cmd.Env = append([]string{"LC_ALL=C"}, os.Environ()...)
    	out, err := cmd.CombinedOutput()
    	// GCC says "unrecognized command line option ‘-no-pie’"
    	// clang says "unknown argument: '-no-pie'"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    }
    
    var yjcond = []ytab{
    	{Zbr, 0, argList{Ybr}},
    	{Zbr, 0, argList{Yi0, Ybr}},
    	{Zbr, 1, argList{Yi1, Ybr}},
    }
    
    var yloop = []ytab{
    	{Zloop, 1, argList{Ybr}},
    }
    
    var ycall = []ytab{
    	{Zcallindreg, 0, argList{Yml}},
    	{Zcallindreg, 2, argList{Yrx, Yrx}},
    	{Zcallind, 2, argList{Yindir}},
    	{Zcall, 0, argList{Ybr}},
    	{Zcallcon, 1, argList{Yi32}},
    }
    
    var yduff = []ytab{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	if cfg.BuildX {
    		sh.ShowCmd(b.WorkDir, "%s || true", joinUnambiguously(cmdArgs))
    	}
    	cmd := exec.Command(cmdArgs[0], cmdArgs[1:]...)
    	cmd.Dir = b.WorkDir
    	cmd.Env = append(cmd.Environ(), "LC_ALL=C")
    	out, _ := cmd.CombinedOutput()
    	// GCC says "unrecognized command line option".
    	// clang says "unknown argument".
    	// tcc says "unsupported"
    	// AIX says "not recognized"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    </pre>
    
    <p>
    Although the examples above use non-interface types, it is also legal to create a method value
    from a value of interface type.
    </p>
    
    <pre>
    var i interface { M(int) } = myVal
    f := i.M; f(7)  // like i.M(7)
    </pre>
    
    
    <h3 id="Index_expressions">Index expressions</h3>
    
    <p>
    A primary expression of the form
    </p>
    
    <pre>
    a[x]
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top