Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,195 for tgroup (0.95 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataJsonWriter.java

                return;
            }
            writeArray(key, () -> {
                for (ModuleMetadataSpec.Capability capability : capabilities) {
                    writeObject(() -> {
                        write("group", capability.group);
                        write("name", capability.name);
                        if (capability.version != null) {
                            write("version", capability.version);
                        }
                    });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/threshold_notifier_unsupported.go

    limitations under the License.
    */
    
    package eviction
    
    import "k8s.io/klog/v2"
    
    // NewCgroupNotifier creates a cgroup notifier that does nothing because cgroups do not exist on non-linux systems.
    func NewCgroupNotifier(path, attribute string, threshold int64) (CgroupNotifier, error) {
    	klog.V(5).InfoS("cgroup notifications not supported")
    	return &unsupportedThresholdNotifier{}, nil
    }
    
    type unsupportedThresholdNotifier struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/memory_threshold_notifier.go

    	cgroups, err := cm.GetCgroupSubsystems()
    	if err != nil {
    		return nil, err
    	}
    	cgpath, found := cgroups.MountPoints["memory"]
    	if !found || len(cgpath) == 0 {
    		return nil, fmt.Errorf("memory cgroup mount point not found")
    	}
    	if isAllocatableEvictionThreshold(threshold) {
    		// for allocatable thresholds, point the cgroup notifier at the allocatable cgroup
    		cgpath += cgroupRoot
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 21 00:36:14 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultConfigurableFilePermissions.java

            configureAction.execute(user);
        }
    
        @Override
        public ConfigurableUserClassFilePermissions getGroup() {
            return group;
        }
    
        @Override
        public void group(Action<? super ConfigurableUserClassFilePermissions> configureAction) {
            configureAction.execute(group);
        }
    
        @Override
        public ConfigurableUserClassFilePermissions getOther() {
            return other;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/LaunchableGradleTask.java

        }
    
        @Override
        public String getProjectPath() {
            return null;
        }
    
        public String getGroup() {
            return group;
        }
    
        public LaunchableGradleTask setGroup(String group) {
            this.group = group;
            return this;
        }
    
        public boolean isPublic() {
            return isPublic;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 02 15:51:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/GradleModuleVersion.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model;
    
    /**
     * Informs about a module version, i.e. group, name, version.
     *
     * @since 1.1
     */
    public interface GradleModuleVersion {
    
        /**
         * The group of the module, for example 'org.gradle'.
         */
        String getGroup();
    
        /**
         * The name of the module, for example 'gradle-tooling-api'.
         */
        String getName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. build-logic/lifecycle/src/main/kotlin/gradlebuild.lifecycle.gradle.kts

            description = "Initialize CI Pipeline by priming the cache before fanning out"
            group = ciGroup
            dependsOn(":base-services:createBuildReceipt")
        }
    
        register(sanityCheck) {
            description = "Run all basic checks (without tests) - to be run locally and on CI for early feedback"
            group = "verification"
            dependsOn(
                gradle.includedBuild("build-logic-commons").task(":check"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:39:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. 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)
  9. pkg/kubelet/cm/helpers_linux.go

    // getCgroupSubsystemsV1 returns information about the mounted cgroup v1 subsystems
    func getCgroupSubsystemsV1() (*CgroupSubsystems, error) {
    	// get all cgroup mounts.
    	allCgroups, err := libcontainercgroups.GetCgroupMounts(true)
    	if err != nil {
    		return &CgroupSubsystems{}, err
    	}
    	if len(allCgroups) == 0 {
    		return &CgroupSubsystems{}, fmt.Errorf("failed to find cgroup mounts")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/DefaultExcludeRuleContainerTest.java

        }
    
        @Test
        public void testInitWithRules() {
            Set<ExcludeRule> sourceExcludeRules = new HashSet<ExcludeRule>();
            sourceExcludeRules.add(new DefaultExcludeRule("aGroup", null));
            DefaultExcludeRuleContainer defaultExcludeRuleContainer = new DefaultExcludeRuleContainer(sourceExcludeRules);
            assertThat(defaultExcludeRuleContainer.getRules(), equalTo(sourceExcludeRules));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 3.8K bytes
    - Viewed (0)
Back to top