Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 92 for stkm (0.66 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.oma.bcast.simple-symbol-container",
    				"application/vnd.oma.bcast.smartcard-trigger+xml",
    				"application/vnd.oma.bcast.sprov+xml",
    				"application/vnd.oma.bcast.stkm",
    				"application/vnd.oma.dcd",
    				"application/vnd.oma.dcdc",
    				"application/vnd.oma.dd2+xml",
    				"application/vnd.oma.drm.risd+xml",
    				"application/vnd.oma.group-usage-list+xml",
    				"application/vnd.oma.poc.detailed-progress-report+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. src/internal/trace/internal/testgen/go122/trace.go

    // 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)
    	if id, ok := g.stacks[stkc]; ok {
    		return id
    	}
    	id := uint64(len(g.stacks) + 1)
    	g.stacks[stkc] = id
    	return id
    }
    
    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. src/runtime/pprof/mprof_test.go

    		if err != nil {
    			t.Fatalf("failed to parse heap profile: %v", err)
    		}
    		t.Logf("Profile = %v", p)
    
    		stks := stacks(p)
    		for _, test := range tests {
    			if !containsStack(stks, test.stk) {
    				t.Fatalf("No matching stack entry for %q\n\nProfile:\n%v\n", test.stk, p)
    			}
    		}
    
    		if !containsInlinedCall(TestMemoryProfiler, 4<<10) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:20:22 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  4. src/runtime/metrics_test.go

    					}
    				}
    				stks = append(stks, have)
    				for i, stk := range acceptStacks {
    					if slices.Equal(have, stk) {
    						values[i][0] += s.Value[0]
    						values[i][1] += s.Value[1]
    					}
    				}
    			}
    			for i, stk := range acceptStacks {
    				n += values[i][0]
    				value += values[i][1]
    				t.Logf("stack %v has samples totaling n=%d value=%d", stk, values[i][0], values[i][1])
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    			}
    			t.Logf("Profile = %v", p)
    
    			stks := stacks(p)
    			var stk []string
    			for _, s := range stks {
    				if hasPrefix(s, test.prefix) {
    					stk = s
    					break
    				}
    			}
    			if len(stk) != depth {
    				t.Fatalf("want stack depth = %d, got %d", depth, len(stk))
    			}
    
    			if rootFn, wantFn := stk[depth-1], "runtime/pprof.produceProfileEvents"; rootFn != wantFn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/list/list.go

    		} else if len(stkj) == 0 {
    			return false
    		}
    		pathi, pathj := stki[len(stki)-1], stkj[len(stkj)-1]
    		return pathi < pathj
    	})
    }
    
    // TrackingWriter tracks the last byte written on every write so
    // we can avoid printing a newline if one was already written or
    // if there is no output at all.
    type TrackingWriter struct {
    	w    *bufio.Writer
    	last byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. src/runtime/pprof/map.go

    	e := &m.free[0]
    	m.free = m.free[1:]
    	e.nextHash = m.hash[h]
    	e.tag = tag
    
    	if len(m.freeStk) < len(stk) {
    		m.freeStk = make([]uintptr, 1024)
    	}
    	// Limit cap to prevent append from clobbering freeStk.
    	e.stk = m.freeStk[:len(stk):len(stk)]
    	m.freeStk = m.freeStk[len(stk):]
    
    	for j := range stk {
    		e.stk[j] = uintptr(stk[j])
    	}
    	if m.hash == nil {
    		m.hash = make(map[uintptr]*profMapEntry)
    	}
    	m.hash[h] = e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 21:51:02 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/inline.go

    	stackOf := func(c byte) int {
    		return strings.IndexByte(chars, c)
    	}
    
    	trimStack := func() {
    		for i := range stack {
    			stk := &stack[i]
    			for len(*stk) > 0 && (*stk)[len(*stk)-1].i >= len(dst) {
    				*stk = (*stk)[:len(*stk)-1]
    			}
    		}
    	}
    
    Src:
    	for i := 0; i < len(src); i++ {
    		if open, ok := src[i].(*openPlain); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

        private static class ActivationWalker extends MavenTransformer {
    
            private final Deque<ActivationFrame> stk;
    
            ActivationWalker(Deque<ActivationFrame> stk, UnaryOperator<String> transformer) {
                super(transformer);
                this.stk = stk;
            }
    
            private ActivationFrame nextFrame(String property) {
                return new ActivationFrame(property, Optional.empty());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. src/runtime/pprof/protomem.go

    					stk = stk[i:]
    					break
    				}
    			}
    			locs = b.appendLocsForStack(locs[:0], stk)
    			if len(locs) > 0 {
    				break
    			}
    			hideRuntime = false // try again, and show all frames next time.
    		}
    
    		values[0], values[1] = scaleHeapSample(r.AllocObjects, r.AllocBytes, rate)
    		values[2], values[3] = scaleHeapSample(r.InUseObjects(), r.InUseBytes(), rate)
    		var blockSize int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top