Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for frameset (0.23 sec)

  1. src/internal/trace/testtrace/validation.go

    		v.ms[m] = s
    		return s
    	}
    	return s
    }
    
    func checkStack(e *errAccumulator, stk trace.Stack) {
    	// Check for non-empty values, but we also check for crashes due to incorrect validation.
    	i := 0
    	stk.Frames(func(f trace.StackFrame) bool {
    		if i == 0 {
    			// Allow for one fully zero stack.
    			//
    			// TODO(mknyszek): Investigate why that happens.
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/trace/gstate.go

    			endTime:    ts,
    			startStack: r.stack,
    			endStack:   stack,
    		})
    	}
    	delete(gs.activeRanges, name)
    }
    
    func lastFunc(s trace.Stack) string {
    	var last trace.StackFrame
    	s.Frames(func(f trace.StackFrame) bool {
    		last = f
    		return true
    	})
    	return last.Func
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/internal/bisect/bisect.go

    func printStack(w Writer, h uint64, stk []uintptr) error {
    	buf := make([]byte, 0, 2048)
    
    	var prefixBuf [100]byte
    	prefix := AppendMarker(prefixBuf[:0], h)
    
    	frames := runtime.CallersFrames(stk)
    	for {
    		f, more := frames.Next()
    		buf = append(buf, prefix...)
    		buf = append(buf, f.Function...)
    		buf = append(buf, "()\n"...)
    		buf = append(buf, prefix...)
    		buf = append(buf, '\t')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. 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)
  5. src/runtime/pprof/pprof.go

    // printStackRecord prints the function + source line information
    // for a single stack trace.
    func printStackRecord(w io.Writer, stk []uintptr, allFrames bool) {
    	show := allFrames
    	frames := runtime.CallersFrames(stk)
    	for {
    		frame, more := frames.Next()
    		name := frame.Function
    		if name == "" {
    			show = true
    			fmt.Fprintf(w, "#\t%#x\n", frame.PC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. src/crypto/tls/quic.go

    	// destination connection ID, and are not provided by the QUICConn.
    	QUICSetReadSecret
    	QUICSetWriteSecret
    
    	// QUICWriteData provides data to send to the peer in CRYPTO frames.
    	// QUICEvent.Data is set.
    	QUICWriteData
    
    	// QUICTransportParameters provides the peer's QUIC transport parameters.
    	// QUICEvent.Data is set.
    	QUICTransportParameters
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    			delete(seenEdge, k)
    		}
    		var parent *Node
    		// A residual edge goes over one or more nodes that were not kept.
    		residual := false
    
    		labels := joinLabels(sample)
    		// Group the sample frames, based on a global map.
    		for i := len(sample.Location) - 1; i >= 0; i-- {
    			l := sample.Location[i]
    			locNodes := locationMap[l.ID]
    			for ni := len(locNodes) - 1; ni >= 0; ni-- {
    				n := locNodes[ni]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    // This transformation pass takes TensorFlow executor dialect IslandOps and
    // merges them. Note, this currently does not handle TensorFlow V1 style control
    // flow/frames or side effecting ops yet.
    
    #include <iterator>
    #include <optional>
    #include <tuple>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SetVector.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. src/internal/reflectlite/value.go

    	}
    	return "reflect: call of " + e.Method + " on " + e.Kind.String() + " Value"
    }
    
    // methodName returns the name of the calling method,
    // assumed to be two stack frames above.
    func methodName() string {
    	pc, _, _, _ := runtime.Caller(2)
    	f := runtime.FuncForPC(pc)
    	if f == nil {
    		return "unknown method"
    	}
    	return f.Name()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    	// when using frame pointer unwinding. We record the stack
    	// with "physical" frame pointers but handle skipping "logical"
    	// frames at some point after collecting the stack. So
    	// we need extra space in order to avoid getting fewer than the
    	// desired maximum number of frames after expansion.
    	// This should be at least as large as the largest skip value
    	// used for profiling; otherwise stacks may be truncated inconsistently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top