Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for var_ (0.37 sec)

  1. src/runtime/mgcmark.go

    		size := uintptr(locals.n) * goarch.PtrSize
    		scanblock(frame.varp-size, size, locals.bytedata, gcw, state)
    	}
    
    	// Scan arguments.
    	if args.n > 0 {
    		scanblock(frame.argp, uintptr(args.n)*goarch.PtrSize, args.bytedata, gcw, state)
    	}
    
    	// Add all stack objects to the stack object list.
    	if frame.varp != 0 {
    		// varp is 0 for defers, where there are no locals.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    	sp := getcallersp()
    	pc := getcallerpc()
    	gp := getg()
    	var n int
    	systemstack(func() {
    		var u unwinder
    		u.initAt(pc, sp, 0, gp, unwindSilentErrors)
    		n = tracebackPCs(&u, skip, pcbuf)
    	})
    	return n
    }
    
    func gcallers(gp *g, skip int, pcbuf []uintptr) int {
    	var u unwinder
    	u.init(gp, unwindSilentErrors)
    	return tracebackPCs(&u, skip, pcbuf)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers_test.go

    				"uid-0": {
    					fullname: "foo_",
    				},
    				"uid-1": {
    					fullname: "bar_",
    				},
    			},
    			startedStaticPodsByFullname: map[string]types.UID{
    				"bar_": types.UID("uid-1"),
    			},
    			expectedStartedStaticPodsByFullname: map[string]types.UID{
    				"foo_": types.UID("uid-0"),
    				"bar_": types.UID("uid-1"),
    			},
    			allowed:     true,
    			allowedEver: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top