Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dumpframe (0.15 sec)

  1. src/runtime/heapdump.go

    	for i := uintptr(0); i < uintptr(cbv.n); i++ {
    		if cbv.ptrbit(i) == 1 {
    			dumpint(fieldKindPtr)
    			dumpint(uint64(offset + i*goarch.PtrSize))
    		}
    	}
    }
    
    func dumpframe(s *stkframe, child *childInfo) {
    	f := s.fn
    
    	// Figure out what we can about our stack map
    	pc := s.pc
    	pcdata := int32(-1) // Use the entry map at function entry
    	if pc != f.entry() {
    		pc--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. pkg/controller/nodeipam/ipam/sync/sync_test.go

    		f.reportChan <- struct{}{}
    	}
    }
    
    func (f *fakeAPIs) ResyncTimeout() time.Duration {
    	if f.resyncTimeout == 0 {
    		return time.Second * 10000
    	}
    	return f.resyncTimeout
    }
    
    func (f *fakeAPIs) dumpTrace() {
    	for i, x := range f.calls {
    		f.logger.Info("trace", "index", i, "call", x)
    	}
    }
    
    var nodeWithoutCIDRRange = &v1.Node{
    	ObjectMeta: metav1.ObjectMeta{Name: "node1"},
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/wasm/wasmobj.go

    	if needMoreStack && ctxt.Flag_maymorestack != "" {
    		p := pMorestack
    
    		// Save REGCTXT on the stack.
    		const tempFrame = 8
    		p = appendp(p, AGet, regAddr(REG_SP))
    		p = appendp(p, AI32Const, constAddr(tempFrame))
    		p = appendp(p, AI32Sub)
    		p = appendp(p, ASet, regAddr(REG_SP))
    		p.Spadj = tempFrame
    		ctxtp := obj.Addr{
    			Type:   obj.TYPE_MEM,
    			Reg:    REG_SP,
    			Offset: 0,
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. pkg/test/kube/dump.go

    type PodDumper func(ctx resource.Context, cluster cluster.Cluster, workDir string, namespace string, pods ...corev1.Pod)
    
    func podOutputPath(workDir string, cluster cluster.Cluster, pod corev1.Pod, dumpName string) string {
    	return outputPath(workDir, cluster, pod.Name, dumpName)
    }
    
    // outputPath gives a path in the form of workDir/cluster/<prefix>_<suffix>
    func outputPath(workDir string, cluster cluster.Cluster, prefix, suffix string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top