Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,478 for tgroup (1.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/DelegatingMavenModule.java

        }
    
        @Override
        public T dependsOn(String group, String artifactId, String version) {
            backingModule.dependsOn(group, artifactId, version);
            return t();
        }
    
        @Override
        public T dependsOn(String group, String artifactId, String version, String type, String scope, String classifier) {
            backingModule.dependsOn(group, artifactId, version, type, scope, classifier);
            return t();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleIdentifier.java

    import java.io.Serializable;
    
    /**
     * The identifier of a module.
     */
    public interface ModuleIdentifier extends Serializable {
    
        /**
         * The group of the module.
         *
         * @return module group
         */
        String getGroup();
    
        /**
         * The name of the module.
         *
         * @return module name
         */
        String getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 991 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ModuleDependencySpec.java

    /**
     * A dependency onto a module.
     */
    @Incubating
    public interface ModuleDependencySpec extends DependencySpec {
    
        /**
         * The group of the module this dependency specification refers to.
         *
         * @return the module group name
         */
        String getGroup();
    
        /**
         * The name of the module this dependency specification refers to.
         *
         * @return the module name
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top