Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,946 for Stack0 (0.27 sec)

  1. cmd/leak-detect_test.go

    	"signal.signal_recv",
    	"sigterm.handler",
    	"runtime_mcall",
    	"goroutine in C code",
    }
    
    // Identify whether the stack trace entry is part of ignoredStackFn .
    func isIgnoredStackFn(stack string) (ok bool) {
    	ok = true
    	for _, stackFn := range ignoredStackFns {
    		if !strings.Contains(stack, stackFn) {
    			ok = false
    			continue
    		}
    		break
    	}
    	return ok
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/runtime/os_darwin.go

    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    
    	// The caller passes in a suggested stack size,
    	// from when we allocated the stack and thread ourselves,
    	// without libpthread. Now that we're using libpthread,
    	// we use the OS default stack size instead of the suggestion.
    	// Find out that stack size for our own stack guard.
    	if pthread_attr_getstacksize(&attr, &stacksize) != 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc-bare-m.test

    ProcStatus dt=1 p=0 pstatus=1
    GoStatus dt=1 g=1 m=0 gstatus=2
    GoSyscallBegin dt=1 p_seq=1 stack=0
    ProcStart dt=1 p=1 p_seq=1
    GoSyscallEndBlocked dt=1
    EventBatch gen=1 m=1 time=0 size=5
    ProcSteal dt=1 p=0 p_seq=2 m=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 529 bytes
    - Viewed (0)
  4. src/internal/trace/testdata/testprog/cpu-profile.go

    			switch leaf {
    			case "runtime._System", "runtime._GC", "runtime._ExternalCode", "runtime._VDSO":
    				continue
    			}
    			stack := strings.Join(fns, "|")
    			samples := int(s.Value[0])
    			pprofStacks[stack] += samples
    		}
    	}
    	for stack, samples := range pprofStacks {
    		fmt.Fprintf(os.Stderr, "%s\t%d\n", stack, samples)
    	}
    }
    
    func cpuHogger(f func(x int) int, y *int, dur time.Duration) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/runtime/defs_linux_mips64x.go

    }
    
    const (
    	_O_RDONLY    = 0x0
    	_O_WRONLY    = 0x1
    	_O_CREAT     = 0x100
    	_O_TRUNC     = 0x200
    	_O_NONBLOCK  = 0x80
    	_O_CLOEXEC   = 0x80000
    	_SA_RESTORER = 0
    )
    
    type stackt struct {
    	ss_sp    *byte
    	ss_size  uintptr
    	ss_flags int32
    }
    
    type sigcontext struct {
    	sc_regs      [32]uint64
    	sc_fpregs    [32]uint64
    	sc_mdhi      uint64
    	sc_hi1       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/runtime/defs_linux_mipsx.go

    }
    
    const (
    	_O_RDONLY    = 0x0
    	_O_WRONLY    = 0x1
    	_O_NONBLOCK  = 0x80
    	_O_CREAT     = 0x100
    	_O_TRUNC     = 0x200
    	_O_CLOEXEC   = 0x80000
    	_SA_RESTORER = 0
    )
    
    type stackt struct {
    	ss_sp    *byte
    	ss_size  uintptr
    	ss_flags int32
    }
    
    type sigcontext struct {
    	sc_regmask   uint32
    	sc_status    uint32
    	sc_pc        uint64
    	sc_regs      [32]uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/runtime/defs_linux_ppc64le.go

    	xer       uint64
    	ccr       uint64
    	softe     uint64
    	trap      uint64
    	dar       uint64
    	dsisr     uint64
    	result    uint64
    }
    
    type vreg struct {
    	u [4]uint32
    }
    
    type stackt struct {
    	ss_sp     *byte
    	ss_flags  int32
    	pad_cgo_0 [4]byte
    	ss_size   uintptr
    }
    
    type sigcontext struct {
    	_unused     [4]uint64
    	signal      int32
    	_pad0       int32
    	handler     uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. hack/lib/logging.sh

      # expansions and subshells
      set -o errtrace
    }
    
    # Print out the stack trace
    #
    # Args:
    #   $1 The number of stack frames to skip when printing.
    kube::log::stack() {
      local stack_skip=${1:-0}
      stack_skip=$((stack_skip + 1))
      if [[ ${#FUNCNAME[@]} -gt ${stack_skip} ]]; then
        echo "Call stack:" >&2
        local i
        for ((i=1 ; i <= ${#FUNCNAME[@]} - stack_skip ; i++))
        do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-go-create-without-running-g.test

    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=17
    ProcStatus dt=1 p=0 pstatus=1
    GoCreate dt=1 new_g=5 new_stack=0 stack=0
    GoStart dt=1 g=5 g_seq=1
    GoStop dt=1 reason_string=1 stack=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    EventBatch gen=1 m=18446744073709551615 time=0 size=12
    Strings
    String id=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 446 bytes
    - Viewed (0)
  10. src/internal/trace/event.go

    	Message string
    }
    
    // Stack represents a stack. It's really a handle to a stack and it's trivially comparable.
    //
    // If two Stacks are equal then their Frames are guaranteed to be identical. If they are not
    // equal, however, their Frames may still be equal.
    type Stack struct {
    	table *evTable
    	id    stackID
    }
    
    // Frames is an iterator over the frames in a Stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top