Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 630 for prlimit (0.12 sec)

  1. releasenotes/notes/limit-csr-clusterrole.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Added** check to limit the clusterrole for k8s CSR permissions for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:22 UTC 2023
    - 272 bytes
    - Viewed (0)
  2. gradlew

        case $MAX_FD in #(
          max*)
            # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
            # shellcheck disable=SC2039,SC3045
            MAX_FD=$( ulimit -H -n ) ||
                warn "Could not query maximum file descriptor limit"
        esac
        case $MAX_FD in  #(
          '' | soft) :;; #(
          *)
            # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	if !isCgroup2UnifiedMode() {
    		if swapControllerAvailable() {
    			// memorySwapLimit = total permitted memory+swap; if equal to memory limit, => 0 swap above memory limit
    			// Some swapping is still possible.
    			// Note that if memory limit is 0, memory swap limit is ignored.
    			lcr.MemorySwapLimitInBytes = lcr.MemoryLimitInBytes
    		}
    		return
    	}
    
    	m.configureSwap(lcr, 0)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/compress/flate/testdata/huffman-rand-limit.in

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 247 bytes
    - Viewed (0)
  5. tests/integration/telemetry/policy/testdata/rate-limit-configmap.yaml

    John Zheng <******@****.***> 1615837852 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 15 19:50:52 UTC 2021
    - 901 bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/config/config.go

    	if proxyConfig.Concurrency == nil {
    		// We want to detect based on CPU limit configured. If we are running on a 100 core machine, but with
    		// only 2 CPUs allocated, we want to have 2 threads, not 100, or we will get excessively throttled.
    		if CPULimit != 0 {
    			log.Infof("cpu limit detected as %v, setting concurrency", CPULimit)
    			proxyConfig.Concurrency = wrapperspb.Int32(int32(CPULimit))
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux_amd64.go

    //sys	Fstatfs(fd int, buf *Statfs_t) (err error)
    //sys	Ftruncate(fd int, length int64) (err error)
    //sysnb	Getegid() (egid int)
    //sysnb	Geteuid() (euid int)
    //sysnb	Getgid() (gid int)
    //sysnb	Getrlimit(resource int, rlim *Rlimit) (err error)
    //sysnb	Getuid() (uid int)
    //sysnb	InotifyInit() (fd int, err error)
    //sys	Ioperm(from int, num int, on int) (err error)
    //sys	Iopl(level int) (err error)
    //sys	Listen(s int, n int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager_linux.go

    }
    
    func (cm *containerManagerImpl) SystemCgroupsLimit() v1.ResourceList {
    	cpuLimit := int64(0)
    
    	// Sum up resources of all external containers.
    	for _, cont := range cm.systemContainers {
    		cpuLimit += cont.cpuMillicores
    	}
    
    	return v1.ResourceList{
    		v1.ResourceCPU: *resource.NewMilliQuantity(
    			cpuLimit,
    			resource.DecimalSI),
    	}
    }
    
    func isProcessRunningInHost(pid int) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/gc.go

    	}
    	debug.SetGCPercent(gcPercent)
    
    	const myLimit = 256 << 20
    	if limit := debug.SetMemoryLimit(-1); limit != math.MaxInt64 {
    		print("expected MaxInt64 limit, got ", limit, " bytes instead\n")
    		return
    	}
    	if limit := debug.SetMemoryLimit(myLimit); limit != math.MaxInt64 {
    		print("expected MaxInt64 limit, got ", limit, " bytes instead\n")
    		return
    	}
    	if limit := debug.SetMemoryLimit(-1); limit != myLimit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  10. pkg/api/v1/resource/helpers_test.go

    )
    
    func TestResourceHelpers(t *testing.T) {
    	cpuLimit := resource.MustParse("10")
    	memoryLimit := resource.MustParse("10G")
    	resourceSpec := v1.ResourceRequirements{
    		Limits: v1.ResourceList{
    			v1.ResourceCPU:    cpuLimit,
    			v1.ResourceMemory: memoryLimit,
    		},
    	}
    	if res := resourceSpec.Limits.Cpu(); res.Cmp(cpuLimit) != 0 {
    		t.Errorf("expected cpulimit %v, got %v", cpuLimit, res)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
Back to top