Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 437 for tramps (0.22 sec)

  1. src/internal/pkgbits/encoder.go

    	var frames []string
    	if !w.encodingRelocHeader && w.p.syncFrames > 0 {
    		pcs := make([]uintptr, w.p.syncFrames)
    		n := runtime.Callers(2, pcs)
    		frames = fmtFrames(pcs[:n]...)
    	}
    
    	// TODO(mdempsky): Save space by writing out stack frames as a
    	// linked list so we can share common stack frames.
    	w.rawUvarint(uint64(m))
    	w.rawUvarint(uint64(len(frames)))
    	for _, frame := range frames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	// APFQueueWaitTracker tracks the latency incurred by queue wait times
    	// from priority & fairness.
    	APFQueueWaitTracker DurationTracker
    
    	// StorageTracker tracks the latency incurred inside the storage layer,
    	// it accounts for the time it takes to send data to the underlying
    	// storage layer (etcd) and get the complete response back.
    	// If a request involves N (N>=1) round trips to the underlying
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/pprof.go

    	uintptr_t* buf;
    	uintptr_t  max;
    };
    
    // pprofCgoTraceback is passed to runtime.SetCgoTraceback.
    // For testing purposes it pretends that all CPU hits in C code are in cpuHog.
    // Issue #29034: At least 2 frames are required to verify all frames are captured
    // since runtime/pprof ignores the runtime.goexit base frame if it exists.
    void pprofCgoTraceback(void* parg) {
    	struct cgoTracebackArg* arg = (struct cgoTracebackArg*)(parg);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 12 19:45:58 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/warning.go

    	lock sync.Mutex
    
    	// recorded tracks whether AddWarning was already called with a given text
    	recorded map[string]bool
    
    	// ordered tracks warnings added so they can be replayed and truncated if needed
    	ordered []recordedWarning
    
    	// written tracks how many runes of text have been added as warning headers
    	written int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/trace/jsontrace_test.go

    		}
    		if keep {
    			filtered.Events = append(filtered.Events, e)
    		}
    	}
    	return
    }
    
    func stackFrames(data *format.Data, stackID int) (frames []string) {
    	for {
    		frame, ok := data.Frames[strconv.Itoa(stackID)]
    		if !ok {
    			return
    		}
    		frames = append(frames, frame.Name)
    		stackID = frame.Parent
    	}
    }
    
    func checkProcStartStop(t *testing.T, data format.Data) {
    	procStarted := map[uint64]bool{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/runtime/start_line_test.go

    	var pcs [1]uintptr
    	n := runtime.Callers(2, pcs[:])
    	if n != 1 {
    		panic(fmt.Sprintf("no caller of callerStartLine? n = %d", n))
    	}
    
    	frames := runtime.CallersFrames(pcs[:])
    	frame, _ := frames.Next()
    
    	inlined := frame.Func == nil // Func always set to nil for inlined frames
    	if wantInlined != inlined {
    		panic(fmt.Sprintf("caller %s inlined got %v want %v", frame.Function, inlined, wantInlined))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:54:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/internal/abi/stack.go

    	// the stack guard.
    	//
    	// Functions that need frames <= StackSmall can perform the stack check
    	// using a single comparison directly between the stack guard and the SP
    	// because we ensure that StackSmall bytes of stack space are available
    	// beyond the stack guard.
    	StackSmall = 128
    
    	// Functions that need frames <= StackBig can assume that neither
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/controller/resourceclaim/metrics/metrics.go

    )
    
    // ResourceClaimSubsystem - subsystem name used for ResourceClaim creation
    const ResourceClaimSubsystem = "resourceclaim_controller"
    
    var (
    	// ResourceClaimCreateAttempts tracks the number of
    	// ResourceClaims().Create calls (both successful and unsuccessful)
    	ResourceClaimCreateAttempts = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      ResourceClaimSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:23:50 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/tagroot.go

    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/profile"
    )
    
    // addLabelNodes adds pseudo stack frames "label:value" to each Sample with
    // labels matching the supplied keys.
    //
    // rootKeys adds frames at the root of the callgraph (first key becomes new root).
    // leafKeys adds frames at the leaf of the callgraph (last key becomes new leaf).
    //
    // Returns whether there were matches found for the label keys.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/pprof/pprof.go

    	if fn != nil {
    		frame := []driver.Frame{
    			{
    				Func: fn.Name,
    				File: file,
    				Line: line,
    			},
    		}
    		return frame, nil
    	}
    
    	frames := f.dwarfSourceLine(addr)
    	if frames != nil {
    		return frames, nil
    	}
    
    	return nil, fmt.Errorf("no line information for PC=%#x", addr)
    }
    
    // dwarfSourceLine tries to get file/line information using DWARF.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top