Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 694 for Atack (0.04 sec)

  1. src/runtime/runtime-gdb_unix_test.go

    	if err := syscall.Close(*pipeFD); err != nil {
    		panic(fmt.Sprintf("error closing control pipe fd %d: %v", *pipeFD, err))
    	}
    
    	for {}
    }
    `
    
    // TestGdbCoreSignalBacktrace tests that gdb can unwind the stack correctly
    // through a signal handler in a core file
    func TestGdbCoreSignalBacktrace(t *testing.T) {
    	if runtime.GOOS != "linux" {
    		// N.B. This test isn't fundamentally Linux-only, but it needs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/net/http/pprof/pprof_test.go

    		}
    		if runtime.Compiler == "gccgo" {
    			runtime.Gosched()
    		}
    	}
    }
    
    // mutexHog2 is almost identical to mutexHog but we keep them separate
    // in order to distinguish them with function names in the stack trace.
    // We make them slightly different, using Sink, because otherwise
    // gccgo -c opt will merge them.
    func mutexHog2(mu1, mu2 *sync.Mutex, start time.Time, dt time.Duration) {
    	atomic.AddUint32(&Sink, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. test/escape_hash_maphash.go

    // license that can be found in the LICENSE file.
    
    // Test escape analysis for hash/maphash.
    
    package escape
    
    import (
    	"hash/maphash"
    )
    
    func f() {
    	var x maphash.Hash // should be stack allocatable
    	x.WriteString("foo")
    	x.Sum64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 16 20:31:45 UTC 2019
    - 368 bytes
    - Viewed (0)
  4. src/runtime/pprof/protomem.go

    	}
    
    	values := []int64{0, 0, 0, 0}
    	var locs []uint64
    	for _, r := range p {
    		hideRuntime := true
    		for tries := 0; tries < 2; tries++ {
    			stk := r.Stack
    			// For heap profiles, all stack
    			// addresses are return PCs, which is
    			// what appendLocsForStack expects.
    			if hideRuntime {
    				for i, addr := range stk {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. test/fixedbugs/issue22200.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func f1(x *[1<<30 - 1e6]byte) byte {
    	for _, b := range *x {
    		return b
    	}
    	return 0
    }
    func f2(x *[1<<30 + 1e6]byte) byte { // GC_ERROR "stack frame too large"
    	for _, b := range *x {
    		return b
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:37:52 UTC 2020
    - 396 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/deadcode.go

    	return
    }
    
    // ReachableBlocks returns the reachable blocks in f.
    func ReachableBlocks(f *Func) []bool {
    	reachable := make([]bool, f.NumBlocks())
    	reachable[f.Entry.ID] = true
    	p := make([]*Block, 0, 64) // stack-like worklist
    	p = append(p, f.Entry)
    	for len(p) > 0 {
    		// Pop a reachable block
    		b := p[len(p)-1]
    		p = p[:len(p)-1]
    		// Mark successors as reachable
    		s := b.Succs
    		if b.Kind == BlockFirst {
    			s = s[:1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. src/debug/dwarf/const.go

    	opConstu     = 0x10 /* 1 op, LEB128 const */
    	opConsts     = 0x11 /*	" signed */
    	opDup        = 0x12
    	opDrop       = 0x13
    	opOver       = 0x14
    	opPick       = 0x15 /* 1 op, 1 byte stack index */
    	opSwap       = 0x16
    	opRot        = 0x17
    	opXderef     = 0x18
    	opAbs        = 0x19
    	opAnd        = 0x1A
    	opDiv        = 0x1B
    	opMinus      = 0x1C
    	opMod        = 0x1D
    	opMul        = 0x1E
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    	}
    	pf, err := Parse(name, data)
    	if err != nil {
    		return nil, fmt.Errorf("failed to parse: %v", err)
    	}
    	return pf, nil
    }
    
    // ReadFile reads the counters and stack counters from the given file.
    // This is the implementation of x/telemetry/counter/countertest.Read
    func ReadFile(name string) (counters, stackCounters map[string]uint64, _ error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/runtime/syscall_aix.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "unsafe"
    
    // This file handles some syscalls from the syscall package
    // Especially, syscalls use during forkAndExecInChild which must not split the stack
    
    //go:cgo_import_dynamic libc_chdir chdir "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_chroot chroot "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_dup2 dup2 "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. test/fixedbugs/bug092.go

    	var b [10000] int64;  // this causes a runtime crash
    	_, _ = a, b;
    }
    
    /*
    uetli:~/Source/go1/test/bugs gri$ 6g bug092.go && 6l bug092.6 && 6.out
    Illegal instruction
    
    gri: array size matters, possibly related to stack overflow check?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 474 bytes
    - Viewed (0)
Back to top