Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 101 for colgroup (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cni/pkg/nodeagent/podcgroupns_test.go

    	}
    }
    
    // copied and modified from spire
    
    func TestGetContainerIDFromCGroups(t *testing.T) {
    	makeCGroups := func(groupPaths []string) []Cgroup {
    		var out []Cgroup
    		for _, groupPath := range groupPaths {
    			out = append(out, Cgroup{
    				GroupPath: groupPath,
    			})
    		}
    		return out
    	}
    
    	//nolint: lll
    	for _, tt := range []struct {
    		name              string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/util/oom/oom_linux.go

    	if err != nil {
    		klog.V(2).Infof("failed to set %q to %q: %v", oomScoreAdjPath, value, err)
    	}
    	return err
    }
    
    // Writes 'value' to /proc/<pid>/oom_score_adj for all processes in cgroup cgroupName.
    // Keeps trying to write until the process list of the cgroup stabilizes, or until maxTries tries.
    func (oomAdjuster *OOMAdjuster) applyOOMScoreAdjContainer(cgroupName string, oomScoreAdj, maxTries int) error {
    	adjustedProcessSet := make(map[int]bool)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top