Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 502 for setgroups (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getSources(), "Sources");
            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getHeaders(), "Headers");
            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getTests(), "Tests");
            addToGroup(project.getMainGroup(), xcodeProject.getGroups().getRoot());
    
            for (XcodeTarget xcodeTarget : xcodeProject.getTargets()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

                    FileCollection sources = component.getCppSource();
                    xcodeProject.getGroups().getSources().from(sources);
    
                    FileCollection headers = component.getHeaderFiles();
                    xcodeProject.getGroups().getHeaders().from(headers);
    
                    // TODO - should use the _install_ task for an executable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.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. maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java

            Plugin plugin = new Plugin();
            plugin.setGroupId(groupId);
            plugin.setArtifactId(artifactId);
            plugin.setVersion(version);
            return plugin;
        }
    
        private Extension createExtension(String groupId, String artifactId, String version) {
            Extension extension = new Extension();
            extension.setGroupId(groupId);
            extension.setArtifactId(artifactId);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top