Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 244 for setgroups (0.41 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/simple/DefaultIvyPatternMatcherExcludeRuleSpec.java

            }
            return matches(moduleId.getGroup(), module.getGroup()) && matches(moduleId.getName(), module.getName());
        }
    
        @Override
        public boolean excludesArtifact(ModuleIdentifier module, IvyArtifactName artifact) {
            if (!isArtifactExclude) {
                return false;
            }
            return matches(moduleId.getGroup(), module.getGroup())
                && matches(moduleId.getName(), module.getName())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/RepositoryBuilder.groovy

            repo.setDepth(depth)
            repo.publish()
            repo
        }
    
        void transformGraphToDepth(List<MavenModule> modules, int depth) {
            def depGroups = modules.groupBy { (int) ((it.artifactId - "artifact").toInteger() / depth) }
            depGroups.each { idx, groupModules ->
                for (int i = 0; i < groupModules.size() - 1; i++) {
                    def next = groupModules[i + 1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java

            TaskProvider<RenderMarkdown> releaseNotesMarkdown = tasks.register("releaseNotesMarkdown", RenderMarkdown.class, task -> {
                task.setGroup("release notes");
                task.setDescription("Generate release notes HTML page from Markdown.");
    
                task.getInputEncoding().convention(Charset.defaultCharset().name());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 10 11:32:18 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskReportModel.java

    public interface TaskReportModel {
        String DEFAULT_GROUP = "";
    
        /**
         * Returns the task groups which make up this model, in the order that they should be displayed.
         */
        Set<String> getGroups();
    
        /**
         * Returns the tasks for the given group, in the order that they should be displayed.
         */
        Set<TaskDetails> getTasksForGroup(String group);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 30 23:30:16 UTC 2016
    - 1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/ModuleVersionSelectorStrictSpec.java

        }
    
        @Override
        public boolean isSatisfiedBy(ModuleVersionIdentifier candidate) {
            return candidate.getName().equals(selector.getName())
                    && candidate.getGroup().equals(selector.getGroup())
                    && candidate.getVersion().equals(selector.getVersion());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleVersionIdentifier.java

         *
         * @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.
         * Contains the same information as {@link #getGroup()} and {@link #getName()}
         *
         * @return the module identifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 25 10:08:07 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/task/ShowToolchainsTaskConfigurator.java

        public void execute(ProjectInternal project) {
            project.getTasks().register("javaToolchains", ShowToolchainsTask.class, task -> {
                task.setDescription("Displays the detected java toolchains.");
                task.setGroup(HelpTasksPlugin.HELP_GROUP);
                task.setImpliesSubProjects(true);
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-configuration/src/main/java/org/gradle/internal/buildconfiguration/DaemonJvmPropertiesConfigurator.java

            // Only useful for the root project
            if (project.getParent() == null) {
                project.getTasks().register(TASK_NAME, UpdateDaemonJvm.class, task -> {
                    task.setGroup("Build Setup");
                    task.setDescription("Generates or updates the Gradle Daemon JVM criteria.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ModuleComponentIdentifier.java

    @UsedByScanPlugin
    public interface ModuleComponentIdentifier extends ComponentIdentifier {
        /**
         * The module group of the component.
         *
         * @return Component group
         * @since 1.10
         */
        String getGroup();
    
        /**
         * The module name of the component.
         *
         * @return Component module
         * @since 1.10
         */
        String getModule();
    
        /**
         * The module version of the component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultImmutableCapability.java

        public static DefaultImmutableCapability defaultCapabilityForComponent(ModuleVersionIdentifier identifier) {
            return new DefaultImmutableCapability(identifier.getGroup(), identifier.getName(), identifier.getVersion());
        }
    
        private final String group;
        private final String name;
        private final String version;
        private final int hashCode;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top