Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,516 for caller1 (0.19 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/printers/name.go

    	}
    
    	if meta.IsListType(obj) {
    		// we allow unstructured lists for now because they always contain the GVK information.  We should chase down
    		// callers and stop them from passing unflattened lists
    		// TODO chase the caller that is setting this and remove it.
    		if _, ok := obj.(*unstructured.UnstructuredList); !ok {
    			return fmt.Errorf("list types are not supported by name printing: %T", obj)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 28 23:24:54 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	MOVQ	AX, DX	// DX = fn
    
    	// Save state in g->sched. The caller's SP and PC are restored by gogo to
    	// resume execution in the caller's frame (implicit return). The caller's BP
    	// is also restored to support frame pointer unwinding.
    	MOVQ	SP, BX	// hide (SP) reads from vet
    	MOVQ	8(BX), BX	// caller's PC
    	MOVQ	BX, (g_sched+gobuf_pc)(R14)
    	LEAQ	fn+0(FP), BX	// caller's SP
    	MOVQ	BX, (g_sched+gobuf_sp)(R14)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/runtime/race_s390x.s

    	JMP	runtime·raceread(SB)
    
    // func runtime·racereadpc(void *addr, void *callpc, void *pc)
    TEXT	runtime·racereadpc(SB), NOSPLIT, $0-24
    	// void __tsan_read_pc(ThreadState *thr, void *addr, void *callpc, void *pc);
    	MOVD	$__tsan_read_pc(SB), R1
    	LMG	addr+0(FP), R3, R5
    	JMP	racecalladdr<>(SB)
    
    // func runtime·racewrite(addr uintptr)
    // Called from instrumented code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_ppc64x.s

    #else
    // ppc64le doesn't need function descriptors
    // Save callee-save registers in the case of signal forwarding.
    // Same as on ARM64 https://golang.org/issue/31827 .
    //
    // Note, it is assumed this is always called indirectly (e.g via
    // a function pointer) as R2 may not be preserved when calling this
    // function. In those cases, the caller preserves their R2.
    TEXT runtime·sigtramp(SB),NOSPLIT|NOFRAME,$0
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. pkg/kubelet/container/cache.go

    }
    
    // NewCache creates a pod cache.
    func NewCache() Cache {
    	return &cache{pods: map[types.UID]*data{}, subscribers: map[types.UID][]*subRecord{}}
    }
    
    // Get returns the PodStatus for the pod; callers are expected not to
    // modify the objects returned.
    func (c *cache) Get(id types.UID) (*PodStatus, error) {
    	c.lock.RLock()
    	defer c.lock.RUnlock()
    	d := c.get(id)
    	return d.status, d.err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. src/runtime/preempt.go

    //
    // It is safe for multiple callers to attempt to suspend the same
    // goroutine at the same time. The goroutine may execute between
    // subsequent successful suspend operations. The current
    // implementation grants exclusive access to the goroutine, and hence
    // multiple callers will serialize. However, the intent is to grant
    // shared read access, so please don't depend on exclusive access.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/runtime/asm_386.s

    	CMPL	g(CX), SI
    	JNE	3(PC)
    	CALL	runtime·badmorestackgsignal(SB)
    	CALL	runtime·abort(SB)
    
    	// Called from f.
    	// Set m->morebuf to f's caller.
    	NOP	SP	// tell vet SP changed - stop checking offsets
    	MOVL	4(SP), DI	// f's caller's PC
    	MOVL	DI, (m_morebuf+gobuf_pc)(BX)
    	LEAL	8(SP), CX	// f's caller's SP
    	MOVL	CX, (m_morebuf+gobuf_sp)(BX)
    	get_tls(CX)
    	MOVL	g(CX), SI
    	MOVL	SI, (m_morebuf+gobuf_g)(BX)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue19467.dir/mysync.go

    // license that can be found in the LICENSE file.
    
    package mysync
    
    import "runtime"
    
    type WaitGroup struct {
    	Callers []uintptr
    }
    
    func (wg *WaitGroup) Add(x int) {
    	wg.Callers = make([]uintptr, 32)
    	n := runtime.Callers(1, wg.Callers)
    	wg.Callers = wg.Callers[:n]
    }
    
    func (wg *WaitGroup) Done() {
    	wg.Add(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 17:27:49 UTC 2017
    - 421 bytes
    - Viewed (0)
  9. src/runtime/traceback_system_test.go

    	child7bad()
    }
    
    //go:noinline
    func child7bad() {
    }
    
    //go:noinline
    func child7() {
    	// Write runtime.Caller's view of the stack to stderr, for debugging.
    	var pcs [16]uintptr
    	n := runtime.Callers(1, pcs[:])
    	fmt.Fprintf(os.Stderr, "Callers: %#x\n", pcs[:n])
    	io.WriteString(os.Stderr, formatStack(pcs[:n]))
    
    	// Cause the crash report to be written to stdout.
    	panic("oops")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/inl_test.go

    		t.Skip("skipping in short mode")
    	}
    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    
    	// want is the list of function names (by package) that should
    	// be inlinable. If they have no callers in their packages, they
    	// might not actually be inlined anywhere.
    	want := map[string][]string{
    		"runtime": {
    			"add",
    			"acquirem",
    			"add1",
    			"addb",
    			"adjustpanics",
    			"adjustpointer",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top