Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,282 for tgroup (0.36 sec)

  1. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            projectDependency.getArtifacts() >> []
            projectDependency.getGroup() >> "pub-group"
            projectDependency.getName() >> "pub-name"
            projectDependencyResolver.resolveComponent(ModuleVersionIdentifier, projectDependency.identityPath) >> DefaultModuleVersionIdentifier.newId("pub-group", "pub-name", "pub-version")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/AggregatingProblemConsumer.java

        }
    
        private static String aggregationKeyFor(InternalProblemId id) {
            return aggregationKeyFor(id.getGroup()) + ";" + id.getName();
        }
    
        private static String aggregationKeyFor(InternalProblemGroup group) {
            return group.getParent() == null ? group.getName() : aggregationKeyFor(group.getParent()) + ";" + group.getName();
        }
    
        private void sendProgress(InternalProblemEventVersion2 problem, String aggregationKey) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. 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)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

            @Override
            ReceivedProblemGroup getGroup() {
                group
            }
        }
    
        static class ReceivedProblemGroup implements ProblemGroup {
            private final String name
            private final String displayName
            private final ReceivedProblemGroup parent
    
            ReceivedProblemGroup(Map<String, Object> group) {
                name = group['name'] as String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

            "a rule which infers module set from group and version"()
    
            when:
            expectAlignment {
                ['org', 'org2'].each { group ->
                    module('core') group(group) tries('1.0') alignsTo('1.1') byVirtualPlatform(group)
                    module('xml') group(group) tries('1.0') alignsTo('1.1') byVirtualPlatform(group)
                    module('json') group(group) alignsTo('1.1') byVirtualPlatform(group)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.CgroupsPerQOS, "cgroups-per-qos", c.CgroupsPerQOS, "Enable creation of QoS cgroup hierarchy, if true top level QoS and pod cgroups are created.")
    	fs.StringVar(&c.CgroupDriver, "cgroup-driver", c.CgroupDriver, "Driver that the kubelet uses to manipulate cgroups on the host.  Possible values: 'cgroupfs', 'systemd'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. 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)
  9. pkg/kubelet/apis/config/types.go

    	CgroupRoot string
    	// Enable QoS based Cgroup hierarchy: top level cgroups for QoS Classes
    	// And all Burstable and BestEffort pods are brought up under their
    	// specific top level QoS cgroup.
    	CgroupsPerQOS bool
    	// driver that the kubelet uses to manipulate cgroups on the host (cgroupfs or systemd)
    	CgroupDriver string
    	// CPUManagerPolicy is the name of the policy to use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCapabilitiesResolution.java

            withCapability(Providers.of(capability), action);
        }
    
        @Override
        public void withCapability(String group, String name, Action<? super CapabilityResolutionDetails> action) {
            withCapability(capabilityNotationParser.parseNotation(group + ":" + name), action);
        }
    
        @Override
        public void withCapability(Object notation, Action<? super CapabilityResolutionDetails> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top