Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for findfunc (0.43 sec)

  1. src/runtime/proc.go

    		throw("bad g status")
    	}
    
    	if gp.asyncSafePoint {
    		// Double-check that async preemption does not
    		// happen in SPWRITE assembly functions.
    		// isAsyncSafePoint must exclude this case.
    		f := findfunc(gp.sched.pc)
    		if !f.valid() {
    			throw("preempt at unknown pc")
    		}
    		if f.flag&abi.FuncFlagSPWrite != 0 {
    			println("runtime: unexpected SPWRITE function", funcname(f), "in async preempt")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    	}
    
    	canoncalGroup := targetRef.Group
    	if canoncalGroup == "" {
    		canoncalGroup = "core"
    	}
    	allowed := slices.FindFunc(allowedTargetRefs, func(gvk config.GroupVersionKind) bool {
    		return gvk.Kind == targetRef.Kind && gvk.CanonicalGroup() == canoncalGroup
    	}) != nil
    
    	if !allowed {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    		align = int32(Funcalign)
    	}
    	va = uint64(Rnd(int64(va), int64(align)))
    	if sect.Align < align {
    		sect.Align = align
    	}
    
    	funcsize := uint64(abi.MINFUNC) // spacing required for findfunctab
    	if ldr.SymSize(s) > abi.MINFUNC {
    		funcsize = uint64(ldr.SymSize(s))
    	}
    
    	// If we need to split text sections, and this function doesn't fit in the current
    	// section, then create a new one.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top