Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 209 for Slots (0.25 sec)

  1. src/runtime/sys_dragonfly_amd64.s

    	// Transition from C ABI to Go ABI.
    	PUSH_REGS_HOST_TO_ABI0()
    
    	// Set up ABIInternal environment: g in R14, cleared X15.
    	get_tls(R12)
    	MOVQ	g(R12), R14
    	PXOR	X15, X15
    
    	// Reserve space for spill slots.
    	NOP	SP		// disable vet stack checking
    	ADJSP   $24
    
    	// Call into the Go signal handler
    	MOVQ	DI, AX	// sig
    	MOVQ	SI, BX	// info
    	MOVQ	DX, CX	// ctx
    	CALL	·sigtrampgo<ABIInternal>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	crdLister listers.CustomResourceDefinitionLister
    	crdSynced cache.InformerSynced
    	// crdMutationCache backs our lister and keeps track of committed updates to avoid racy
    	// write/lookup cycles.  It's got 100 slots by default, so it unlikely to overrun
    	// TODO to revisit this if naming conflicts are found to occur in the wild
    	crdMutationCache cache.MutationCache
    
    	// To allow injection for testing.
    	syncFn func(key string) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_amd64.s

    	// if called from a non-go thread.
    	XORPS	X15, X15
    	XORQ	R14, R14
    
    	get_tls(AX)
    	CMPQ	AX, $0
    	JE	2(PC)
    	// Exception from Go thread, set R14.
    	MOVQ	g(AX), R14
    
    	// Reserve space for spill slots.
    	ADJSP	$16
    	MOVQ	CX, AX
    	MOVQ	DX, BX
    	// Calling ABIInternal because TLS might be nil.
    	CALL	runtime·sigtrampgo<ABIInternal>(SB)
    	// Return value is already stored in AX.
    
    	ADJSP	$-16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/runtime/os_freebsd.go

    const (
    	_CTL_QUERY     = 0
    	_CTL_QUERY_MIB = 3
    )
    
    // sysctlnametomib fill mib with dynamically assigned sysctl entries of name,
    // return count of effected mib slots, return 0 on error.
    func sysctlnametomib(name []byte, mib *[_CTL_MAXNAME]uint32) uint32 {
    	oid := [2]uint32{_CTL_QUERY, _CTL_QUERY_MIB}
    	miblen := uintptr(_CTL_MAXNAME)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadstore.go

    			if elim[v] == nil {
    				elim[v] = n
    				changed = true
    			}
    			return
    		case OpVarLive:
    			// Don't delete the auto if it needs to be kept alive.
    
    			// We depend on this check to keep the autotmp stack slots
    			// for open-coded defers from being removed (since they
    			// may not be used by the inline code, but will be used by
    			// panic processing).
    			n, ok := v.Aux.(*ir.Name)
    			if !ok || n.Class != ir.PAUTO {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/gc.go

    }
    
    //go:noinline
    func escape(x any) { sink2 = x; sink2 = nil }
    
    var sink2 any
    
    // Test zombie object detection and reporting.
    func GCZombie() {
    	// Allocate several objects of unusual size (so free slots are
    	// unlikely to all be re-allocated by the runtime).
    	const size = 190
    	const count = 8192 / size
    	keep := make([]*byte, 0, (count+1)/2)
    	free := make([]uintptr, 0, (count+1)/2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  7. src/runtime/race_s390x.s

    	LMG	48(R15), R6, R15		// Restore non-volatile regs.
    	BR	R14				// Return to C.
    rest:	MOVD	g_m(g), R4			// R4 = current thread.
    	MOVD	m_g0(R4), g			// Switch to g0.
    	SUB	$24, R15			// Allocate Go argument slots.
    	STMG	R2, R3, 8(R15)			// Fill Go frame.
    	BL	runtime·racecallback(SB)	// Call Go code.
    	LMG	72(R15), R6, R15		// Restore non-volatile regs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais2.go

    	// Loop backward through sa, always tracking
    	// the next index to populate from sa[:numLMS].
    	// When we get to one, populate it.
    	// Zero the rest of the slots; they have dead values in them.
    	x := numLMS - 1
    	saX := sa[x]
    	c := text[saX]
    	b := bucket[c] - 1
    	bucket[c] = b
    
    	for i := len(sa) - 1; i >= 0; i-- {
    		if i != int(b) {
    			sa[i] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/runtime/mgcsweep.go

    // license that can be found in the LICENSE file.
    
    // Garbage collector: sweeping
    
    // The sweeper consists of two different algorithms:
    //
    // * The object reclaimer finds and frees unmarked slots in spans. It
    //   can free a whole span if none of the objects are marked, but that
    //   isn't its goal. This can be driven either synchronously by
    //   mcentral.cacheSpan for mcentral spans, or asynchronously by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    	minp := adjinfo.old.lo
    	maxp := adjinfo.old.hi
    	delta := adjinfo.delta
    	num := uintptr(bv.n)
    	// If this frame might contain channel receive slots, use CAS
    	// to adjust pointers. If the slot hasn't been received into
    	// yet, it may contain stack pointers and a concurrent send
    	// could race with adjusting those pointers. (The sent value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top