Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,282 for tgroup (0.2 sec)

  1. 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)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/DefaultGradleModuleVersion.java

        private final String group;
        private final String name;
        private final String version;
    
        public DefaultGradleModuleVersion(ModuleVersionIdentifier identifier) {
            this.group = identifier.getGroup();
            this.name = identifier.getName();
            this.version = identifier.getVersion();
        }
    
        @Override
        public String getGroup() {
            return group;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/HasFinalizers.java

            while (!queue.isEmpty()) {
                FinalizerGroup group = queue.remove(0);
                if (!group.isCanCancelSelf()) {
                    // Has started running at least one finalized node, so cannot cancel
                    return false;
                }
                if (seen.add(group)) {
                    for (Node node : group.getFinalizedNodes()) {
                        if (node.getGroup() instanceof HasFinalizers) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 16 22:19:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouper.java

                .collect(Collectors.toList());
            for (String group : groups) {
                long count = remainingUntouched.stream().filter(p -> p.getGroup().equals(group)).count();
                if (count>1) {
                    // a key is at least used in 2 artifacts
                    verificationsBuilder.addTrustedKey(
                        keyId,
                        group,
                        null,
                        null,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultVirtualModuleComponentIdentifier.java

        }
    
        @Override
        public String getDisplayName() {
            String group = moduleIdentifier.getGroup();
            String module = moduleIdentifier.getName();
            StringBuilder builder = new StringBuilder(group.length() + module.length() + version.length() + 2);
            builder.append(group);
            builder.append(":");
            builder.append(module);
            builder.append(":");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VersionMappingComponentDependencyResolver.java

        @Nullable
        public ResolvedCoordinates resolveModule(String group, String name) {
            ModuleVersionIdentifier resolved = maybeResolveVersion(group, name, null);
            if (resolved != null) {
                return ResolvedCoordinates.create(resolved);
            }
            return null;
        }
    
        @Nullable
        public ModuleVersionIdentifier maybeResolveVersion(String group, String module, @Nullable Path identityPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleVersionIdentifier.java

         */
        String getVersion();
    
        /**
         * The group of the module.
         *
         * @return module group
         */
        String getGroup();
    
        /**
         * The name of the module.
         *
         * @return module name
         */
        String getName();
    
        /**
         * Returns the {@link ModuleIdentifier} containing the group and the name of this module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 25 10:08:07 UTC 2022
    - 1.4K 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