Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for prlimit (0.09 sec)

  1. pkg/kubelet/util/manager/watch_based_manager.go

    		// - doing that wouldn't provide visible scalability/performance gain - we
    		//   already have it from here
    		// - doing that would require significant refactoring to reflector
    		// we limit ourselves to just quickly stop the reflector here.
    		if c.isImmutable(object) {
    			item.setImmutable()
    			if item.stop() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/staticpods.go

    func convertImageTagMetadataToSemver(tag string) string {
    	// Container registries do not support `+` characters in tag names. This prevents imagetags from
    	// correctly representing semantic versions which use the plus symbol to delimit build metadata.
    	// Kubernetes uses the convention of using an underscore in image registries to preserve
    	// build metadata information in imagetags.
    	return strings.Replace(tag, "_", "+", 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. src/runtime/crash_test.go

    	}
    }
    
    func TestStackOverflow(t *testing.T) {
    	output := runTestProg(t, "testprog", "StackOverflow")
    	want := []string{
    		"runtime: goroutine stack exceeds 1474560-byte limit\n",
    		"fatal error: stack overflow",
    		// information about the current SP and stack bounds
    		"runtime: sp=",
    		"stack=[",
    	}
    	if !strings.HasPrefix(output, want[0]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// and will set the desired number of pods by using its Scale subresource.
    	ScaleTargetRef CrossVersionObjectReference `json:"scaleTargetRef" protobuf:"bytes,1,opt,name=scaleTargetRef"`
    	// minReplicas is the lower limit for the number of replicas to which the autoscaler
    	// can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the
    	// alpha feature gate HPAScaleToZero is enabled and at least one Object or External
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_amd64.go

    }
    
    func libc_getpriority_trampoline()
    
    //go:cgo_import_dynamic libc_getpriority getpriority "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getrlimit(which int, lim *Rlimit) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_getrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_arm64.go

    }
    
    func libc_getpriority_trampoline()
    
    //go:cgo_import_dynamic libc_getpriority getpriority "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getrlimit(which int, lim *Rlimit) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_getrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_openbsd_ppc64.go

    }
    
    func libc_getpriority_trampoline()
    
    //go:cgo_import_dynamic libc_getpriority getpriority "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getrlimit(which int, lim *Rlimit) (err error) {
    	_, _, e1 := rawSyscall(abi.FuncPCABI0(libc_getrlimit_trampoline), uintptr(which), uintptr(unsafe.Pointer(lim)), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  8. src/compress/bzip2/bzip2.go

    		decoded++
    
    		if v < 2 {
    			// This is either the RUNA or RUNB symbol.
    			if repeat == 0 {
    				repeatPower = 1
    			}
    			repeat += repeatPower << v
    			repeatPower <<= 1
    
    			// This limit of 2 million comes from the bzip2 source
    			// code. It prevents repeat from overflowing.
    			if repeat > 2*1024*1024 {
    				return StructuralError("repeat count too large")
    			}
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/runtime/panic.go

    func (p *_panic) nextFrame() (ok bool) {
    	if p.lr == 0 {
    		return false
    	}
    
    	gp := getg()
    	systemstack(func() {
    		var limit uintptr
    		if d := gp._defer; d != nil {
    			limit = d.sp
    		}
    
    		var u unwinder
    		u.initAt(p.lr, uintptr(p.fp), 0, gp, 0)
    		for {
    			if !u.valid() {
    				p.lr = 0
    				return // ok == false
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. cmd/kube-proxy/app/server.go

    		"Maximum number of NAT connections to track per CPU core (0 to leave the limit as-is and ignore conntrack-min).")
    	fs.Int32Var(o.config.Conntrack.Min, "conntrack-min", *o.config.Conntrack.Min,
    		"Minimum number of conntrack entries to allocate, regardless of conntrack-max-per-core (set conntrack-max-per-core=0 to leave the limit as-is).")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top