Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 446 for Frame (0.06 sec)

  1. src/runtime/pprof/proto.go

    	}
    
    	symbolizeResult := lookupTried
    	if frame.PC == 0 || frame.Function == "" || frame.File == "" || frame.Line == 0 {
    		symbolizeResult |= lookupFailed
    	}
    
    	if frame.PC == 0 {
    		// If we failed to resolve the frame, at least make up
    		// a reasonable call PC. This mostly happens in tests.
    		frame.PC = addr - 1
    	}
    	ret := []runtime.Frame{frame}
    	for frame.Function != "runtime.goexit" && more {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue22200b.go

    package p
    
    func f3(x *[1 << 31]byte) byte { // GC_ERROR "stack frame too large"
    	for _, b := range *x {
    		return b
    	}
    	return 0
    }
    func f4(x *[1 << 32]byte) byte { // GC_ERROR "stack frame too large"
    	for _, b := range *x {
    		return b
    	}
    	return 0
    }
    func f5(x *[1 << 33]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: Thu Oct 19 23:33:25 UTC 2023
    - 601 bytes
    - Viewed (0)
  3. src/runtime/stack.go

    func adjustframe(frame *stkframe, adjinfo *adjustinfo) {
    	if frame.continpc == 0 {
    		// Frame is dead.
    		return
    	}
    	f := frame.fn
    	if stackDebug >= 2 {
    		print("    adjusting ", funcname(f), " frame=[", hex(frame.sp), ",", hex(frame.fp), "] pc=", hex(frame.pc), " continpc=", hex(frame.continpc), "\n")
    	}
    
    	// Adjust saved frame pointer if there is one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_llvm.go

    		return nil, err
    	}
    
    	var stack []plugin.Frame
    	for {
    		frame, end := d.readFrame()
    		if end {
    			break
    		}
    
    		if frame != (plugin.Frame{}) {
    			stack = append(stack, frame)
    		}
    	}
    
    	return stack, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    // will be returned along with the number of bytes read.
    func NewLengthDelimitedFrameReader(r io.ReadCloser) io.ReadCloser {
    	return &lengthDelimitedFrameReader{r: r}
    }
    
    // Read attempts to read an entire frame into data. If that is not possible, io.ErrShortBuffer
    // is returned and subsequent calls will attempt to read the last frame. A frame is complete when
    // err is nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/runtime/runtime-lldb_test.go

              print "Hit breakpoint"
              frame = t.GetFrameAtIndex(0)
              if frame:
                if frame.line_entry:
                  print "Stopped at %s:%d" % (frame.line_entry.file.basename, frame.line_entry.line)
                if frame.function:
                  print "Stopped in %s" % (frame.function.name,)
                var = frame.FindVariable('intvar')
                if var:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/internal/trace/generation.go

    	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 {
    				err = fmt.Errorf("found unknown pc %x for stack %d", pc, id)
    				return false
    			}
    			_, ok = strings.get(frame.funcID)
    			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)
  8. src/cmd/trace/viewer.go

    	"internal/trace/traceviewer"
    	"time"
    )
    
    // viewerFrames returns the frames of the stack of ev. The given frame slice is
    // used to store the frames to reduce allocations.
    func viewerFrames(stk trace.Stack) []*trace.Frame {
    	var frames []*trace.Frame
    	stk.Frames(func(f trace.StackFrame) bool {
    		frames = append(frames, &trace.Frame{
    			PC:   f.PC,
    			Fn:   f.Func,
    			File: f.File,
    			Line: int(f.Line),
    		})
    		return true
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/StackTraceClassifier.java

            @Override
            public StackTraceRelevance classify(StackTraceElement frame) {
                return StackTraceRelevance.USER_CODE;
            }
        };
    
        /**
         * Returns relevance for the given frame, or null if the classifier does not have an opinion.
         */
        @Nullable
        StackTraceRelevance classify(StackTraceElement frame);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:52:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/internal/zstd/zstd.go

    	// The underlying Reader.
    	r io.Reader
    
    	// Whether we have read the frame header.
    	// This is of interest when buffer is empty.
    	// If true we expect to see a new block.
    	sawFrameHeader bool
    
    	// Whether the current frame expects a checksum.
    	hasChecksum bool
    
    	// Whether we have read at least one frame.
    	readOneFrame bool
    
    	// True if the frame size is not known.
    	frameSizeUnknown bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top