Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 224 for Atack (0.09 sec)

  1. src/cmd/covdata/covdata.go

    	"os"
    	"runtime"
    	"runtime/pprof"
    	"strings"
    )
    
    var verbflag = flag.Int("v", 0, "Verbose trace output level")
    var hflag = flag.Bool("h", false, "Panic on fatal errors (for stack trace)")
    var hwflag = flag.Bool("hw", false, "Panic on warnings (for stack trace)")
    var indirsflag = flag.String("i", "", "Input dirs to examine (comma separated)")
    var pkgpatflag = flag.String("pkg", "", "Restrict output to package(s) matching specified package pattern.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	    Write a mutex contention profile to the specified file
    //	    when all tests are complete.
    //	    Writes test binary as -c would.
    //
    //	-mutexprofilefraction n
    //	    Sample 1 in n stack traces of goroutines holding a
    //	    contended mutex.
    //
    //	-outputdir directory
    //	    Place output files from profiling in the specified directory,
    //	    by default the directory in which "go test" is running.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    			}
    
    			if !p.From.Sym.NoFrame() {
    				// If there is a stack frame at all, it includes
    				// space to save the LR.
    				autosize += int32(c.ctxt.Arch.FixedFrameSize)
    			}
    
    			if p.Mark&LEAF != 0 && autosize < abi.StackSmall {
    				// A leaf function with a small stack can be marked
    				// NOSPLIT, avoiding a stack check.
    				p.From.Sym.Set(obj.AttrNoSplit, true)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    		// on another stack. That could confuse callers quite a bit.
    		// Instead, we require that initAt and any other function that
    		// accepts an sp for the current goroutine (typically obtained by
    		// calling getcallersp) must not run on that goroutine's stack but
    		// instead on the g0 stack.
    		throw("cannot trace user goroutine on its own stack")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/io/fs/glob_test.go

    		if err != path.ErrBadPattern {
    			t.Errorf("Glob(fs, %#q) returned err=%v, want path.ErrBadPattern", pattern, err)
    		}
    	}
    }
    
    func TestCVE202230630(t *testing.T) {
    	// Prior to CVE-2022-30630, a stack exhaustion would occur given a large
    	// number of separators. There is now a limit of 10,000.
    	_, err := Glob(os.DirFS("."), "/*"+strings.Repeat("/", 10001))
    	if err != path.ErrBadPattern {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:36:52 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/trace/procgen.go

    	gs.augmentName(st.Stack)
    
    	// Handle the goroutine state transition.
    	from, to := st.Goroutine()
    	if from == to {
    		// Filter out no-op events.
    		return
    	}
    	if from == trace.GoRunning && !to.Executing() {
    		if to == trace.GoWaiting {
    			// Goroutine started blocking.
    			gs.block(ev.Time(), ev.Stack(), st.Reason, ctx)
    		} else {
    			gs.stop(ev.Time(), ev.Stack(), ctx)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/reflect/abi.go

    	// stackPtrs is a bitmap that indicates whether
    	// each word in the ABI stack space (stack-assigned
    	// args + return values) is a pointer. Used
    	// as the heap pointer bitmap for stack space
    	// passed to reflectcall.
    	stackPtrs *bitVector
    
    	// inRegPtrs is a bitmap whose i'th bit indicates
    	// whether the i'th integer argument register contains
    	// a pointer. Used by makeFuncStub and methodValueCall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof.go

    //
    //	goroutine    - stack traces of all current goroutines
    //	heap         - a sampling of memory allocations of live objects
    //	allocs       - a sampling of all past memory allocations
    //	threadcreate - stack traces that led to the creation of new OS threads
    //	block        - stack traces that led to blocking on synchronization primitives
    //	mutex        - stack traces of holders of contended mutexes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. src/internal/trace/generation.go

    	return nil
    }
    
    // validateStackStrings makes sure all the string references in
    // the stack table are present in the string table.
    func validateStackStrings(
    	stacks *dataTable[stackID, stack],
    	strings *dataTable[stringID, string],
    	frames map[uint64]frame,
    ) error {
    	var err error
    	stacks.forEach(func(id stackID, stk stack) bool {
    		for _, pc := range stk.pcs {
    			frame, ok := frames[pc]
    			if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/runtime/defs_dragonfly_amd64.go

    	_EVFILT_USER  = -0x9
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type rtprio struct {
    	_type uint16
    	prio  uint16
    }
    
    type lwpparams struct {
    	start_func uintptr
    	arg        unsafe.Pointer
    	stack      uintptr
    	tid1       unsafe.Pointer // *int32
    	tid2       unsafe.Pointer // *int32
    }
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type stackt struct {
    	ss_sp     uintptr
    	ss_size   uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top