Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for RSs (0.02 sec)

  1. src/runtime/extern.go

    	instead of MADV_DONTNEED on Linux when returning memory to the
    	kernel. This is more efficient, but means RSS numbers will
    	drop only when the OS is under memory pressure. On the BSDs and
    	Illumos/Solaris, setting madvdontneed=1 will use MADV_DONTNEED instead
    	of MADV_FREE. This is less efficient, but causes RSS numbers to drop
    	more quickly.
    
    	memprofilerate: setting memprofilerate=X will update the value of runtime.MemProfileRate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/helper.go

    		memoryStats = &statsapi.MemoryStats{
    			Time:            metav1.NewTime(cstat.Timestamp),
    			UsageBytes:      &cstat.Memory.Usage,
    			WorkingSetBytes: &cstat.Memory.WorkingSet,
    			RSSBytes:        &cstat.Memory.RSS,
    			PageFaults:      &pageFaults,
    			MajorPageFaults: &majorPageFaults,
    		}
    		// availableBytes = memory limit (if known) - workingset
    		if !isMemoryUnlimited(info.Spec.Memory.Limit) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    			<li class="nav-item has-treeview <c:if test="${param.menuCategoryType=='log'}">menu-open</c:if>">
    				<a href="#" class="nav-link <c:if test="${param.menuCategoryType=='log'}">active</c:if>">
    					<em class='nav-icon fa fa-rss'>
    					<p>
    						<la:message key="labels.menu_system_log" />
    						<i class="right fas fa-angle-left"></i>
    					</p>
    				</a>
    				<ul class="nav nav-treeview">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider_test.go

    	assert.Equal(cs.CpuInst.Usage.Total, *actual.CPU.UsageNanoCores)
    
    	assert.Equal(cs.Memory.Usage, *actual.Memory.UsageBytes)
    	assert.Equal(cs.Memory.WorkingSet, *actual.Memory.WorkingSetBytes)
    	assert.Equal(cs.Memory.RSS, *actual.Memory.RSSBytes)
    	assert.Equal(cs.Memory.ContainerData.Pgfault, *actual.Memory.PageFaults)
    	assert.Equal(cs.Memory.ContainerData.Pgmajfault, *actual.Memory.MajorPageFaults)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/main.go

    	// that can easily make use of many cores on a machine.
    	//
    	// Note that there is no limit on the concurrency at the moment. On a
    	// four-core laptop at the time of writing, peak RSS usually reaches
    	// ~200MiB, which seems doable by practically any machine nowadays. If
    	// that stops being the case, we can cap this func to a fixed number of
    	// architectures being generated at once.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	// where we're allocating black during a nearly always-on GC.
    	// The result of this is a growing heap and ultimately an
    	// increase in RSS. By capping us at a point >0, we're essentially
    	// saying that we're OK using more CPU during the GC to prevent
    	// this growth in RSS.
    	triggerLowerBound := ((goal-c.heapMarked)/triggerRatioDen)*minTriggerRatioNum + c.heapMarked
    	if minTrigger < triggerLowerBound {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    	}
    
    	vs, err := fp.ipvs.GetVirtualServer(serv)
    	if err != nil {
    		t.Errorf("failed to get virtual server, err: %v", err)
    	}
    
    	rss, err := fp.ipvs.GetRealServers(vs)
    	if err != nil {
    		t.Errorf("failed to get real servers, err: %v", err)
    	}
    	for _, rs := range rss {
    		rs.Weight = 0
    		if err = fp.ipvs.UpdateRealServer(vs, rs); err != nil {
    			t.Errorf("failed to update real server: %v, err: %v", rs, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^(IFF|IFT|NET_RT|RTM(GRP)?|RTF|RTV|RTA|RTAX)_/ ||
    		$2 ~ /^BIOC/ ||
    		$2 ~ /^DIOC/ ||
    		$2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
    		$2 ~ /^RLIMIT_(AS|CORE|CPU|DATA|FSIZE|LOCKS|MEMLOCK|MSGQUEUE|NICE|NOFILE|NPROC|RSS|RTPRIO|RTTIME|SIGPENDING|STACK)|RLIM_INFINITY/ ||
    		$2 ~ /^PRIO_(PROCESS|PGRP|USER)/ ||
    		$2 ~ /^CLONE_[A-Z_]+/ ||
    		$2 !~ /^(BPF_TIMEVAL|BPF_FIB_LOOKUP_[A-Z]+|BPF_F_LINK)$/ &&
    		$2 ~ /^(BPF|DLT)_/ ||
    		$2 ~ /^AUDIT_/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool-rebalance.go

    	PercentFreeGoal float64            `msg:"pf"`     // Computed from total free space and capacity at the start of rebalance
    	PoolStats       []*rebalanceStats  `msg:"rss"`    // Per-pool rebalance stats keyed by pool index
    }
    
    var errRebalanceNotStarted = errors.New("rebalance not started")
    
    func (z *erasureServerPools) loadRebalanceMeta(ctx context.Context) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. hack/lib/golang.sh

    readonly KUBE_TEST_SERVER_PLATFORMS=("${KUBE_SERVER_PLATFORMS[@]:+"${KUBE_SERVER_PLATFORMS[@]}"}")
    
    # Gigabytes necessary for parallel platform builds.
    # As of March 2021 (go 1.16/amd64), the RSS usage is 2GiB by using cached
    # memory of 15GiB.
    # This variable can be overwritten at your own risk.
    # It's defaulting to 20G to provide some headroom.
    readonly KUBE_PARALLEL_BUILD_MEMORY=${KUBE_PARALLEL_BUILD_MEMORY:-20}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top