Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 224 for Atack (0.04 sec)

  1. src/cmd/trace/regions.go

    		Type:  r.Name,
    	}
    }
    
    func regionTopStackFrame(r *trace.UserRegionSummary) trace.StackFrame {
    	var frame trace.StackFrame
    	if r.Start != nil && r.Start.Stack() != trace.NoStack {
    		r.Start.Stack().Frames(func(f trace.StackFrame) bool {
    			frame = f
    			return false
    		})
    	}
    	return frame
    }
    
    type regionStats struct {
    	regionFingerprint
    	Histogram traceviewer.TimeHistogram
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/internal/trace/testtrace/validation.go

    					ctx.G = id
    					state.binding = ctx
    				}
    			} else if old.Executing() && !new.Executing() {
    				if tr.Stack != ev.Stack() {
    					// This is a case where the transition is happening to a goroutine that is also executing, so
    					// these two stacks should always match.
    					e.Errorf("StateTransition.Stack doesn't match Event.Stack")
    				}
    				ctx := state.binding
    				if ctx != nil {
    					if ctx.G != id {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/runtime/os_windows.go

    }
    
    func gFromSP(mp *m, sp uintptr) *g {
    	if gp := mp.g0; gp != nil && gp.stack.lo < sp && sp < gp.stack.hi {
    		return gp
    	}
    	if gp := mp.gsignal; gp != nil && gp.stack.lo < sp && sp < gp.stack.hi {
    		return gp
    	}
    	if gp := mp.curg; gp != nil && gp.stack.lo < sp && sp < gp.stack.hi {
    		return gp
    	}
    	return nil
    }
    
    func profileLoop() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  4. src/runtime/cpuprof.go

    	}
    
    	prof.signalLock.Store(0)
    }
    
    // addNonGo adds the non-Go stack trace to the profile.
    // It is called from a non-Go thread, so we cannot use much stack at all,
    // nor do anything that needs a g or an m.
    // In particular, we can't call cpuprof.log.write.
    // Instead, we copy the stack into cpuprof.extra,
    // which will be drained the next time a Go thread
    // gets the signal handling event.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	stksize    int64                // stack size for current frame
    	stkptrsize int64                // prefix of stack containing pointers
    
    	// alignment for current frame.
    	// NOTE: when stkalign > PtrSize, currently this only ensures the offsets of
    	// objects in the stack frame are aligned. The stack pointer is still aligned
    	// only PtrSize.
    	stkalign int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/go/ast/commentmap.go

    		r.end = r.fset.Position(r.comment.End())
    		r.index++
    	}
    }
    
    // A nodeStack keeps track of nested nodes.
    // A node lower on the stack lexically contains the nodes higher on the stack.
    type nodeStack []Node
    
    // push pops all nodes that appear lexically before n
    // and then pushes n on the stack.
    func (s *nodeStack) push(n Node) {
    	s.pop(n.Pos())
    	*s = append((*s), n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    	}
    
    	return &sym
    }
    
    type WasmField struct {
    	Type WasmFieldType
    	// Offset holds the frame-pointer-relative locations for Go's stack-based
    	// ABI. This is used by the src/cmd/internal/wasm package to map WASM
    	// import parameters to the Go stack in a wrapper function.
    	Offset int64
    }
    
    type WasmFieldType byte
    
    const (
    	WasmI32 WasmFieldType = iota
    	WasmI64
    	WasmF32
    	WasmF64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/runtime/sys_darwin.go

    //
    // The stacks obtained from the hung child processes are in
    // libSystem_atfork_child, which is supposed to reinitialize various
    // parts of the C library in the new process.
    //
    // One common stack dies in _notify_fork_child calling _notify_globals
    // (inlined) calling _os_alloc_once, because _os_alloc_once detects that
    // the once lock is held by the parent process and then calls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    				}
    				lv.unsafePoints.Set(int32(v.ID))
    			}
    		}
    	}
    }
    
    // Returns true for instructions that must have a stack map.
    //
    // This does not necessarily mean the instruction is a safe-point. In
    // particular, call Values can have a stack map in case the callee
    // grows the stack, but not themselves be a safe-point.
    func (lv *liveness) hasStackMap(v *ssa.Value) bool {
    	if !v.Op.IsCall() {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    					stk = s
    					break
    				}
    			}
    			if len(stk) != depth {
    				t.Fatalf("want stack depth = %d, got %d", depth, len(stk))
    			}
    
    			if rootFn, wantFn := stk[depth-1], "runtime/pprof.produceProfileEvents"; rootFn != wantFn {
    				t.Fatalf("want stack stack root %s, got %v", wantFn, rootFn)
    			}
    		})
    	}
    }
    
    func hasPrefix(stk []string, prefix []string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top