Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,478 for tgroup (0.22 sec)

  1. pkg/kubelet/eviction/threshold_notifier_linux.go

    // NewCgroupNotifier returns a linuxCgroupNotifier, which performs cgroup control operations required
    // to receive notifications from the cgroup when the threshold is crossed in either direction.
    func NewCgroupNotifier(path, attribute string, threshold int64) (CgroupNotifier, error) {
    	// cgroupv2 does not support monitoring cgroup memory thresholds using cgroup.event_control.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 01 21:59:54 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRulesTest.groovy

            cause.notation == notation
        }
    
        def "ComponentSelectionSpec matches on group and name" () {
            def spec = new DefaultComponentSelectionRules.ComponentSelectionMatchingSpec(DefaultModuleIdentifier.newId(group, name))
            def candidate = Mock(ModuleComponentIdentifier) {
                1 * getGroup() >> "org.gradle"
                (0..1) * getModule() >> "api"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         */
        void group(Action<? super ConfigurableUserClassFilePermissions> configureAction);
    
        /**
         * Returns the permissions all other users (non-owner, non-group) have for the file/directory.
         * <p>
         * The returned object is live, modifying it will change the user's permissions.
         * <p>
         * For further details on permissions see {@link ConfigurableUserClassFilePermissions}.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups-exclude.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager.go

    	Status() Status
    
    	// NewPodContainerManager is a factory method which returns a podContainerManager object
    	// Returns a noop implementation if qos cgroup hierarchy is not enabled
    	NewPodContainerManager() PodContainerManager
    
    	// GetMountedSubsystems returns the mounted cgroup subsystems on the node
    	GetMountedSubsystems() *CgroupSubsystems
    
    	// GetQOSContainersInfo returns the names of top level QoS containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/DefaultTask.java

        public void setDescription(String description) {
            super.setDescription(description);
        }
    
        @Override
        public String getGroup() {
            return super.getGroup();
        }
    
        @Override
        public void setGroup(String group) {
            super.setGroup(group);
        }
    
        @Override
        public TaskDestroyables getDestroyables() {
            return super.getDestroyables();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  7. pkg/config/schema/codegen/collections.go

    			ClientImport:           toImport(r.ProtoPackage),
    			StatusImport:           toImport(r.StatusProtoPackage),
    			IstioAwareClientImport: toIstioAwareImport(r.ProtoPackage),
    			ClientGroupPath:        toGroup(r.ProtoPackage),
    			ClientGetter:           toGetter(r.ProtoPackage),
    			ClientTypePath:         toTypePath(r),
    			SpecType:               tname,
    		}
    		if r.StatusProtoPackage != "" {
    			e.StatusType = statName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentResultSerializerTest.groovy

            false
        )
    
        def "serializes"() {
            def componentIdentifier = new DefaultModuleComponentIdentifier(DefaultModuleIdentifier.newId('group', 'module'), 'version')
            def extId = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId('group', 'external'), '1.0')
            def attributes = AttributeTestUtil.attributesFactory().mutable()
            attributes.attribute(Attribute.of('type', String), 'custom')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/ModuleExclusions.java

                    } else if (!anyModule) {
                        return factory.module(moduleId.getName());
                    } else if (!anyOrganisation) {
                        return factory.group(moduleId.getGroup());
                    } else {
                        return factory.everything();
                    }
                } else {
                    return factory.ivyPatternExclude(moduleId, artifact, rule.getMatcher());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K 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