Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,295 for rgroup (0.12 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                if (rGroup == null) {
                                    // relocated dependency artifact is declared excluded, no need to add and recurse
                                    // further
                                    continue;
                                }
    
                                child.addDependencies(rGroup.getArtifacts(), rGroup.getResolutionRepositories(), filter);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics_test.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    var (
    	kind     = schema.GroupVersionKind{Group: "kgroup", Version: "kversion", Kind: "kind"}
    	resource = schema.GroupVersionResource{Group: "rgroup", Version: "rversion", Resource: "resource"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:37 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/podcgroupns.go

    	reader := bytes.NewReader(procCgroupData.Bytes())
    	var cgroups []Cgroup
    	scanner := bufio.NewScanner(reader)
    
    	for scanner.Scan() {
    		token := scanner.Text()
    		substrings := strings.SplitN(token, ":", 3)
    		if len(substrings) < 3 {
    			return nil, fmt.Errorf("cgroup entry contains %v colons, but expected at least 2 colons: %q", len(substrings), token)
    		}
    		cgroups = append(cgroups, Cgroup{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper_test.go

    			ExpectedKinds: []schema.GroupVersionKind{
    				{Group: "first-group", Version: "first-version", Kind: "my-kind"},
    			},
    		},
    
    		{
    			// group prefixes work
    			Name: "groups, with group prefix",
    			PreferredOrder: []schema.GroupVersion{
    				{Group: "second-group", Version: "first-version"},
    				{Group: "first-group", Version: "first-version"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 01 08:38:57 UTC 2020
    - 28.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cgroup_manager_linux.go

    	}
    
    	// Apply(-1) is a hack to create the cgroup directories for each resource
    	// subsystem. The function [cgroups.Manager.apply()] applies cgroup
    	// configuration to the process with the specified pid.
    	// It creates cgroup files for each subsystems and writes the pid
    	// in the tasks file. We use the function to create all the required
    	// cgroup files but not attach any "real" pid to the cgroup.
    	if err := manager.Apply(-1); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kubelet/cm/pod_container_manager_linux.go

    		return err
    	}
    	return nil
    }
    
    // Scan through the whole cgroup directory and kill all processes either
    // attached to the pod cgroup or to a container cgroup under the pod cgroup
    func (m *podContainerManagerImpl) tryKillingCgroupProcesses(podCgroup CgroupName) error {
    	pidsToKill := m.cgroupManager.Pids(podCgroup)
    	// No pids charged to the terminated pod cgroup return
    	if len(pidsToKill) == 0 {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/node_container_manager_linux.go

    		klog.ErrorS(err, "Failed to create cgroup", "cgroupName", cm.cgroupRoot)
    		return err
    	}
    	return nil
    }
    
    // enforceNodeAllocatableCgroups enforce Node Allocatable Cgroup settings.
    func (cm *containerManagerImpl) enforceNodeAllocatableCgroups() error {
    	nc := cm.NodeConfig.NodeAllocatableConfig
    
    	// We need to update limits on node allocatable cgroup no matter what because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            group = ciGroup
        }
    
        register("quickFeedbackCrossVersionTest") {
            description = "Run cross-version tests against a limited set of versions"
            group = ciGroup
        }
    
        register("allVersionsCrossVersionTest") {
            description = "Run cross-version tests against all released versions (latest patch release of each)"
            group = ciGroup
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top