Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for colgroup (0.5 sec)

  1. pkg/kubelet/server/stats/summary.go

    	}
    	nodeConfig := sp.provider.GetNodeConfig()
    	rootStats, networkStats, err := sp.provider.GetCgroupStats("/", updateStats)
    	if err != nil {
    		return nil, fmt.Errorf("failed to get root cgroup stats: %v", err)
    	}
    	rootFsStats, err := sp.provider.RootFsStats()
    	if err != nil {
    		return nil, fmt.Errorf("failed to get rootFs stats: %v", err)
    	}
    	imageFsStats, containerFsStats, err := sp.provider.ImageFsStats(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

      # cgroup v2: enable nesting
      if [ -f /sys/fs/cgroup/cgroup.controllers ]; then
        # move the processes from the root group to the /init group,
        # otherwise writing subtree_control fails with EBUSY.
        # An error during moving non-existent process (i.e., "cat") is ignored.
        mkdir -p /sys/fs/cgroup/init
        xargs -rn1 < /sys/fs/cgroup/cgroup.procs > /sys/fs/cgroup/init/cgroup.procs || :
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/CGroupMemoryInfoTest.groovy

    import spock.lang.Specification
    
    class CGroupMemoryInfoTest extends Specification {
        private static final long MB_IN_BYTES = 1024 * 1024 * 1024
    
        def "parses memory from cgroup values"() {
            def snapshot = new CGroupMemoryInfo().getOsSnapshotFromCgroup(mbsToBytesAsString(800), mbsToBytesAsString(1024))
    
            expect:
            snapshot.physicalMemory.total == mbsToBytes(1024)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/container_manager.go

    	Status() Status
    
    	// NewPodContainerManager is a factory method which returns a podContainerManager object
    	// Returns a noop implementation if qos cgroup hierarchy is not enabled
    	NewPodContainerManager() PodContainerManager
    
    	// GetMountedSubsystems returns the mounted cgroup subsystems on the node
    	GetMountedSubsystems() *CgroupSubsystems
    
    	// GetQOSContainersInfo returns the names of top level QoS containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. pkg/kubelet/server/stats/summary_sys_containers.go

    		statsapi.SystemContainerPods:    {name: sp.provider.GetPodCgroupRoot(), forceStatsUpdate: updateStats},
    	}
    	for sys, cont := range systemContainers {
    		// skip if cgroup name is undefined (not all system containers are required)
    		if cont.name == "" {
    			continue
    		}
    		s, _, err := sp.provider.GetCgroupStats(cont.name, cont.forceStatsUpdate)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				VolumeStatsAggPeriod:           metav1.Duration{Duration: 60 * time.Second},
    				KubeletCgroups:                 "kubelet-cgroup",
    				SystemCgroups:                  "system-cgroup",
    				CgroupRoot:                     "root-cgroup",
    				CgroupsPerQOS:                  utilpointer.Bool(true),
    				CgroupDriver:                   "systemd",
    				CPUManagerPolicy:               "cpu-manager-policy",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. cmd/handler-api.go

    	gzipObjects                 bool
    	rootAccess                  bool
    	syncEvents                  bool
    	objectMaxVersions           int64
    }
    
    const (
    	cgroupV1MemLimitFile = "/sys/fs/cgroup/memory/memory.limit_in_bytes"
    	cgroupV2MemLimitFile = "/sys/fs/cgroup/memory.max"
    	cgroupMemNoLimit     = 9223372036854771712
    )
    
    func cgroupMemLimit() (limit uint64) {
    	buf, err := os.ReadFile(cgroupV2MemLimitFile)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cgroup_manager_unsupported.go

    limitations under the License.
    */
    
    package cm
    
    import (
    	"errors"
    
    	v1 "k8s.io/api/core/v1"
    )
    
    type unsupportedCgroupManager struct{}
    
    var errNotSupported = errors.New("Cgroup Manager is not supported in this build")
    
    // Make sure that unsupportedCgroupManager implements the CgroupManager interface
    var _ CgroupManager = &unsupportedCgroupManager{}
    
    type CgroupSubsystems struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/syscall/exec_linux.go

    	tls        uint64 // Location of new TLS
    	setTID     uint64 // Pointer to a pid_t array (since Linux 5.5)
    	setTIDSize uint64 // Number of elements in set_tid (since Linux 5.5)
    	cgroup     uint64 // File descriptor for target cgroup of child (since Linux 5.7)
    }
    
    // forkAndExecInChild1 implements the body of forkAndExecInChild up to
    // the parent's post-fork path. This is a separate function so we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.SystemReservedCgroup, "system-reserved-cgroup", c.SystemReservedCgroup, "Absolute name of the top level cgroup that is used to manage non-kubernetes components for which compute resources...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top