Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for dumpregs (0.15 sec)

  1. pilot/pkg/xds/statusgen.go

    			log.Infof("%s with %d ResourceNames", TypeDebugConfigDump, len(w.ResourceNames))
    			break
    		}
    		var err error
    		dumpRes, err := sg.debugConfigDump(w.ResourceNames[0])
    		if err != nil {
    			log.Infof("%s failed: %v", TypeDebugConfigDump, err)
    			break
    		}
    		res = dumpRes
    	}
    	return res, model.DefaultXdsLogDetails, nil
    }
    
    // isSidecar ad-hoc method to see if connection represents a sidecar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/test/kube/dump.go

    // If selectors is empty, all pods in the namespace will be dumpped.
    // If no dumpers are provided, their resource state, events, container logs and Envoy information will be dumped.
    func DumpPods(ctx resource.Context, workDir, namespace string, selectors []string, dumpers ...PodDumper) {
    	if len(dumpers) == 0 {
    		dumpers = []PodDumper{
    			DumpPodState,
    			DumpPodEvents,
    			DumpPodLogs,
    			DumpPodEnvoy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    						s.assignReg(r, v, v)
    					}
    				}
    				if tmpReg != noRegister {
    					// Remember the temp register allocation, if any.
    					if s.f.tempRegs == nil {
    						s.f.tempRegs = map[ID]*Register{}
    					}
    					s.f.tempRegs[v.ID] = &s.registers[tmpReg]
    				}
    			}
    
    			// deallocate dead args, if we have not done so
    			if opcodeTable[v.Op].resultNotInArgs {
    				s.nospill = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. src/runtime/heapdump.go

    		dumpint(uint64(uintptr(unsafe.Pointer(p.link))))
    	}
    }
    
    func dumpgs() {
    	assertWorldStopped()
    
    	// goroutines & stacks
    	forEachG(func(gp *g) {
    		status := readgstatus(gp) // The world is stopped so gp will not be in a scan state.
    		switch status {
    		default:
    			print("runtime: unexpected G.status ", hex(status), "\n")
    			throw("dumpgs in STW - bad status")
    		case _Gdead:
    			// ok
    		case _Grunnable,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/value.go

    		s += fmt.Sprintf(" %v", a)
    	}
    	if v.Block == nil {
    		return s
    	}
    	r := v.Block.Func.RegAlloc
    	if int(v.ID) < len(r) && r[v.ID] != nil {
    		s += " : " + r[v.ID].String()
    	}
    	if reg := v.Block.Func.tempRegs[v.ID]; reg != nil {
    		s += " tmp=" + reg.String()
    	}
    	var names []string
    	for name, values := range v.Block.Func.NamedValues {
    		for _, value := range values {
    			if value == v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    		t.Errorf("free conns = %d; want %d", g, w)
    	}
    
    	if n := db.numDepsPoll(t, 0); n > 0 {
    		t.Errorf("number of dependencies = %d; expected 0", n)
    		db.dumpDeps(t)
    	}
    }
    
    func (db *DB) dumpDeps(t *testing.T) {
    	for fc := range db.dep {
    		db.dumpDep(t, 0, fc, map[finalCloser]bool{})
    	}
    }
    
    func (db *DB) dumpDep(t *testing.T, depth int, dep finalCloser, seen map[finalCloser]bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/html.go

    		s += fmt.Sprintf(" %s", a.HTML())
    	}
    	r := v.Block.Func.RegAlloc
    	if int(v.ID) < len(r) && r[v.ID] != nil {
    		s += " : " + html.EscapeString(r[v.ID].String())
    	}
    	if reg := v.Block.Func.tempRegs[v.ID]; reg != nil {
    		s += " tmp=" + reg.String()
    	}
    	var names []string
    	for name, values := range v.Block.Func.NamedValues {
    		for _, value := range values {
    			if value == v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/func.go

    	IsPgoHot    bool
    
    	// when register allocation is done, maps value ids to locations
    	RegAlloc []Location
    
    	// temporary registers allocated to rare instructions
    	tempRegs map[ID]*Register
    
    	// map from LocalSlot to set of Values that we want to store in that slot.
    	NamedValues map[LocalSlot][]*Value
    	// Names is a copy of NamedValues.Keys. We keep a separate list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top