Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 363 for sticky (0.17 sec)

  1. src/internal/trace/generation.go

    	return nil
    }
    
    // validateStackStrings makes sure all the string references in
    // the stack table are present in the string table.
    func validateStackStrings(
    	stacks *dataTable[stackID, stack],
    	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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/internal/trace/internal/testgen/go122/trace.go

    	g.strings[s] = id
    	return id
    }
    
    // Stack registers a stack with the trace.
    //
    // This is a convenience function for easily adding correct
    // stacks to traces.
    func (g *Generation) Stack(stk []trace.StackFrame) uint64 {
    	if len(stk) == 0 {
    		return 0
    	}
    	if len(stk) > 32 {
    		panic("stack too big for test")
    	}
    	var stkc stack
    	copy(stkc.stk[:], stk)
    	stkc.len = len(stk)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-parent.xml

    Christian Wansart <******@****.***> 1573139799 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/AbstractPerformanceTest.groovy

                    if (AbstractBuildExperimentRunner.isProfilingActive()) {
                        def stacks = differentialStacksGenerator.generateDifferentialStacks(outputDirSelector.outputDirFor(results.testId))
                        flameGraphGenerator.generateDifferentialGraphs(stacks)
                    }
                }
    
                @Override
                void close() throws IOException {
                }
            })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/runtime/metrics/description.go

    	},
    	{
    		Name: "/memory/classes/heap/stacks:bytes",
    		Description: "Memory allocated from the heap that is reserved for stack space, whether or not it is currently in-use. " +
    			"Currently, this represents all stack memory for goroutines. It also includes all OS thread stacks in non-cgo programs. " +
    			"Note that stacks may be allocated differently in the future, and this may change.",
    		Kind: KindUint64,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/tests/go122-task-across-generations.test

    EventBatch gen=1 m=0 time=0 size=15
    ProcStatus dt=1 p=0 pstatus=1
    GoStatus dt=1 g=1 m=0 gstatus=2
    UserTaskBegin dt=1 task=2 parent_task=0 name_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=11
    Strings
    String id=1
    	data="my task"
    EventBatch gen=2 m=0 time=5 size=13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 767 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/types.go

    	Name     string
    	Versions []string        // versions present in a counterconfig
    	Counters []CounterConfig `json:",omitempty"`
    	Stacks   []CounterConfig `json:",omitempty"`
    }
    
    type CounterConfig struct {
    	Name  string
    	Rate  float64 // If X <= Rate, report this counter
    	Depth int     `json:",omitempty"` // for stack counters
    }
    
    // A Report is what's uploaded (or saved locally)
    type Report struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    				Counters:  make(map[string]int64),
    				Stacks:    make(map[string]int64),
    			}
    			upload.Programs = append(upload.Programs, x)
    			for k, v := range p.Counters {
    				if cfg.HasCounter(p.Program, k) && report.X <= cfg.Rate(p.Program, k) {
    					x.Counters[k] = v
    				}
    			}
    			// and the same for Stacks
    			// this can be made more efficient, when it matters
    			for k, v := range p.Stacks {
    				before, _, _ := strings.Cut(k, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-confuse-seq-across-generations.test

    ProcStatus dt=1 p=0 pstatus=1
    GoStatus dt=1 g=1 m=0 gstatus=2
    GoStop dt=1 reason_string=1 stack=0
    EventBatch gen=1 m=1 time=0 size=12
    ProcStatus dt=1 p=1 pstatus=1
    GoStart dt=1 g=1 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
    - 1018 bytes
    - Viewed (0)
  10. src/net/http/main_test.go

    	buf = buf[:runtime.Stack(buf, true)]
    	for _, g := range strings.Split(string(buf), "\n\n") {
    		_, stack, _ := strings.Cut(g, "\n")
    		stack = strings.TrimSpace(stack)
    		if stack == "" ||
    			strings.Contains(stack, "testing.(*M).before.func1") ||
    			strings.Contains(stack, "os/signal.signal_recv") ||
    			strings.Contains(stack, "created by net.startServer") ||
    			strings.Contains(stack, "created by testing.RunTests") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top