Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for Atack (0.14 sec)

  1. src/runtime/mfinal.go

    		if raceenabled {
    			racefingo()
    		}
    		for fb != nil {
    			for i := fb.cnt; i > 0; i-- {
    				f := &fb.fin[i-1]
    
    				var regs abi.RegArgs
    				// The args may be passed in registers or on stack. Even for
    				// the register case, we still need the spill slots.
    				// TODO: revisit if we remove spill slots.
    				//
    				// Unfortunately because we can have an arbitrary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	}
    }
    
    var http2goroutineSpace = []byte("goroutine ")
    
    func http2curGoroutineID() uint64 {
    	bp := http2littleBuf.Get().(*[]byte)
    	defer http2littleBuf.Put(bp)
    	b := *bp
    	b = b[:runtime.Stack(b, false)]
    	// Parse the 4707 out of "goroutine 4707 ["
    	b = bytes.TrimPrefix(b, http2goroutineSpace)
    	i := bytes.IndexByte(b, ' ')
    	if i < 0 {
    		panic(fmt.Sprintf("No space found in %q", b))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/start.go

    // uploading, this process may attempt to upload approved counters
    // to telemetry.go.dev.
    //
    // If [Config.ReportCrashes] is set, any fatal crash will be
    // recorded by incrementing a counter named for the stack of the
    // first running goroutine in the traceback.
    //
    // If either of these flags is set, Start re-executes the current
    // executable as a child process, in a special mode in which it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    	// Use a zone with a "plausibly long" name, so that most zone-ful
    	// IP addresses won't require additional allocation.
    	//
    	// The compiler does a cool optimization here, where ret ends up
    	// stack-allocated and so the only allocation this function does
    	// is to construct the returned string. As such, it's okay to be a
    	// bit greedy here, size-wise.
    	const max = len("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff%enp5s0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. src/os/exec/exec.go

    		if v == "2" {
    			// Obtain the caller stack. (This is equivalent to runtime/debug.Stack,
    			// copied to avoid importing the whole package.)
    			stack := make([]byte, 1024)
    			for {
    				n := runtime.Stack(stack, false)
    				if n < len(stack) {
    					stack = stack[:n]
    					break
    				}
    				stack = make([]byte, 2*len(stack))
    			}
    
    			if i := bytes.Index(stack, []byte("\nos/exec.Command(")); i >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/sha3.go

    		panic("sha3: Sum after Read")
    	}
    
    	// Make a copy of the original hash so that caller can keep writing
    	// and summing.
    	dup := d.clone()
    	hash := make([]byte, dup.outputLen, 64) // explicit cap to allow stack allocation
    	dup.Read(hash)
    	return append(in, hash...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/fsys/fsys.go

    func Trace(op, path string) {
    	if !doTrace {
    		return
    	}
    	traceMu.Lock()
    	defer traceMu.Unlock()
    	fmt.Fprintf(traceFile, "%d gofsystrace %s %s\n", os.Getpid(), op, path)
    	if pattern := gofsystracestack.Value(); pattern != "" {
    		if match, _ := pathpkg.Match(pattern, path); match {
    			traceFile.Write(debug.Stack())
    		}
    	}
    }
    
    var (
    	doTrace   bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGUSR2", "user defined signal 2"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    	{20, "SIGTSTP", "stopped"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	// clang says "unknown argument".
    	// tcc says "unsupported"
    	// AIX says "not recognized"
    	// Older versions of GCC say "unrecognised debug output level".
    	// For -fsplit-stack GCC says "'-fsplit-stack' is not supported".
    	supported := !bytes.Contains(out, []byte("unrecognized")) &&
    		!bytes.Contains(out, []byte("unknown")) &&
    		!bytes.Contains(out, []byte("unrecognised")) &&
    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. src/cmd/compile/internal/ssa/func.go

    	nn := typecheck.TempAt(pos, f.fe.Func(), typ) // Note: adds new auto to fn.Dcl list
    	nn.SetNonMergeable(true)
    	return nn
    }
    
    // IsMergeCandidate returns true if variable n could participate in
    // stack slot merging. For now we're restricting the set to things to
    // items larger than what CanSSA would allow (approximateky, we disallow things
    // marked as open defer slots so as to avoid complicating liveness
    // analysis.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top