Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for Carp (0.21 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/panic.go

    			}
    
    			if p.initOpenCodedDefers(u.frame.fn, unsafe.Pointer(u.frame.varp)) {
    				break // found a frame with open-coded defers
    			}
    
    			u.next()
    		}
    
    		p.lr = u.frame.lr
    		p.sp = unsafe.Pointer(u.frame.sp)
    		p.fp = unsafe.Pointer(u.frame.fp)
    
    		ok = true
    	})
    
    	return
    }
    
    func (p *_panic) initOpenCodedDefers(fn funcInfo, varp unsafe.Pointer) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    		} else {
    			if frame.lr == 0 {
    				lrPtr = frame.fp - goarch.PtrSize
    				frame.lr = *(*uintptr)(unsafe.Pointer(lrPtr))
    			}
    		}
    	}
    
    	frame.varp = frame.fp
    	if !usesLR {
    		// On x86, call instruction pushes return PC before entering new function.
    		frame.varp -= goarch.PtrSize
    	}
    
    	// For architectures with frame pointers, if there's
    	// a frame, then there's a saved frame pointer here.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/pgen.go

    	}
    
    	// Sort normal variables before open-coded-defer slots, so that the
    	// latter are grouped together and near the top of the frame (to
    	// minimize varint encoding of their varp offset).
    	if a.OpenDeferSlot() != b.OpenDeferSlot() {
    		return a.OpenDeferSlot()
    	}
    
    	// If a and b are both open-coded defer slots, then order them by
    	// index in descending order, so they'll be laid out in the frame in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/types.go

    	Scheduler string
    	// excludeCIDRs is a list of CIDRs which the ipvs proxier should not touch
    	// when cleaning up ipvs services.
    	ExcludeCIDRs []string
    	// strictARP configures arp_ignore and arp_announce to avoid answering ARP queries
    	// from kube-ipvs0 interface
    	StrictARP bool
    	// tcpTimeout is the timeout value used for idle IPVS TCP sessions.
    	// The default value is 0, which preserves the current timeout value on the system.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server.go

    	fs.BoolVar(&o.config.IPVS.StrictARP, "ipvs-strict-arp", o.config.IPVS.StrictARP, "Enable strict ARP by setting arp_ignore to 1 and arp_announce to 2")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. src/runtime/cgocall.go

    	// time moved backwards, GC would see these arguments as dead
    	// and then live. Prevent these undead arguments from crashing
    	// GC by forcing them to stay live across this time warp.
    	KeepAlive(fn)
    	KeepAlive(arg)
    	KeepAlive(mp)
    
    	return errno
    }
    
    // Set or reset the system stack bounds for a callback on sp.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    		found := false
    		var u unwinder
    		for u.initAt(gp.m.curg.sched.pc, gp.m.curg.sched.sp, 0, gp.m.curg, 0); u.valid(); u.next() {
    			if u.frame.sp <= uintptr(p) && uintptr(p) < u.frame.varp {
    				found = true
    				break
    			}
    		}
    		if found {
    			locals, _, _ := u.frame.getStackMap(false)
    			if locals.n == 0 {
    				return
    			}
    			size := uintptr(locals.n) * goarch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. src/strings/strings.go

    		return len(s)
    	case n == 1:
    		return bytealg.LastIndexByteString(s, substr[0])
    	case n == len(s):
    		if substr == s {
    			return 0
    		}
    		return -1
    	case n > len(s):
    		return -1
    	}
    	// Rabin-Karp search from the end of the string
    	hashss, pow := bytealg.HashStrRev(substr)
    	last := len(s) - n
    	var h uint32
    	for i := len(s) - 1; i >= last; i-- {
    		h = h*bytealg.PrimeRK + uint32(s[i])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    func newFakeFlagSet(fs *pflag.FlagSet) *pflag.FlagSet {
    	ret := pflag.NewFlagSet("", pflag.ExitOnError)
    	ret.SetNormalizeFunc(fs.GetNormalizeFunc())
    	fs.VisitAll(func(f *pflag.Flag) {
    		ret.VarP(cliflag.NoOp{}, f.Name, f.Shorthand, f.Usage)
    	})
    	return ret
    }
    
    // kubeletConfigFlagPrecedence re-parses flags over the KubeletConfiguration object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top