Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 116 for colgroup (0.23 sec)

  1. pkg/kubelet/cm/types.go

    	// Create creates and applies the cgroup configurations on the cgroup.
    	// It just creates the leaf cgroups.
    	// It expects the parent cgroup to already exist.
    	Create(*CgroupConfig) error
    	// Destroy the cgroup.
    	Destroy(*CgroupConfig) error
    	// Update cgroup configuration.
    	Update(*CgroupConfig) error
    	// Validate checks if the cgroup is valid
    	Validate(name CgroupName) error
    	// Exists checks if the cgroup already exists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cgroup_manager_linux.go

    }
    
    // CgroupSubsystems holds information about the mounted cgroup subsystems
    type CgroupSubsystems struct {
    	// Cgroup subsystem mounts.
    	// e.g.: "/sys/fs/cgroup/cpu" -> ["cpu", "cpuacct"]
    	Mounts []libcontainercgroups.Mount
    
    	// Cgroup subsystem to their mount location.
    	// e.g.: "cpu" -> "/sys/fs/cgroup/cpu"
    	MountPoints map[string]string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

        data class ForPlugin(
            val id: String,
            val implementationClass: String,
            override val extension: ExtensionSpec
        ) : PluginDependencySpecAccessor()
    
        data class ForGroup(
            val id: String,
            override val extension: ExtensionSpec
        ) : PluginDependencySpecAccessor()
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cadvisor_stats_provider.go

    // the stats of the terminated containers removed and all containerInfos assembled by pod cgroup key.
    // the first return map is container cgroup name <-> ContainerInfo and
    // the second return map is pod cgroup key <-> ContainerInfo.
    // A ContainerInfo is considered to be of a terminated container if it has an
    // older CreationTime and zero CPU instantaneous and memory RSS usage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_linux.go

    	// Check if Cgroup-root actually exists on the node
    	if nodeConfig.CgroupsPerQOS {
    		// this does default to / when enabled, but this tests against regressions.
    		if nodeConfig.CgroupRoot == "" {
    			return nil, fmt.Errorf("invalid configuration: cgroups-per-qos was specified and cgroup-root was not specified. To enable the QoS cgroup hierarchy you need to specify a valid cgroup-root")
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/provider.go

    }
    
    // GetCgroupStats returns the stats of the cgroup with the cgroupName. Note that
    // this function doesn't generate filesystem stats.
    func (p *Provider) GetCgroupStats(cgroupName string, updateStats bool) (*statsapi.ContainerStats, *statsapi.NetworkStats, error) {
    	info, err := getCgroupInfo(p.cadvisor, cgroupName, updateStats)
    	if err != nil {
    		return nil, nil, fmt.Errorf("failed to get cgroup stats for %q: %v", cgroupName, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		p := "/sys/fs/cgroup/memory/memory.memsw.limit_in_bytes"
    		if isCgroup2UnifiedMode() {
    			// memory.swap.max does not exist in the cgroup root, so we check /sys/fs/cgroup/<SELF>/memory.swap.max
    			_, unified, err := cgroups.ParseCgroupFileUnified("/proc/self/cgroup")
    			if err != nil {
    				klog.V(5).ErrorS(fmt.Errorf("failed to parse /proc/self/cgroup: %w", err), warn)
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. pkg/registry/core/persistentvolumeclaim/strategy_test.go

    func TestPrepareForCreate(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    
    	ns := "ns1"
    	volumeDataSource := makeDataSource(coreGroup, pvcKind, "my-vol")
    	volumeDataSourceRef := makeDataSourceRef(coreGroup, pvcKind, "my-vol", nil)
    	xnsVolumeDataSourceRef := makeDataSourceRef(coreGroup, pvcKind, "my-vol", &ns)
    	snapshotDataSource := makeDataSource(snapGroup, snapKind, "my-snap")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. build-logic/uber-plugins/src/main/kotlin/gradlebuild.ci-lifecycle.gradle.kts

    tasks.configureCICrossVersionTestDistributionLifecycleTasks()
    
    val ciGroup = "CI Lifecycle"
    
    /**
     * Basic compile and check lifecycle tasks.
     */
    fun TaskContainer.registerEarlyFeedbackLifecycleTasks() {
        register("compileAllBuild") {
            description = "Initialize CI Pipeline by priming the cache before fanning out"
            group = ciGroup
            dependsOn("compileAllProduction")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 17:16:23 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/TaskNode.java

            if (!getFinalizingSuccessors().isEmpty()) {
                // This node is a finalizer, decorate the current group to add finalizer behaviour
                NodeGroup oldGroup = getGroup();
                FinalizerGroup finalizerGroup = new FinalizerGroup(this, oldGroup);
                setGroup(finalizerGroup);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 29 13:54:06 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top