Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 424 for setDescription (0.19 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/HelpTasksPlugin.java

                task.setDescription("Displays the outgoing variants of " + projectName + ".");
                task.setGroup(HELP_GROUP);
                task.setImpliesSubProjects(true);
                task.getShowAll().convention(false);
            });
            tasks.register(RESOLVABLE_CONFIGURATIONS_TASK, ResolvableConfigurationsReportTask.class, task -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 16:15:23 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/progress/DefaultProgressLoggerFactoryTest.groovy

            given:
            def completed = factory.newOperation("category").setDescription("ignore-me")
            def child = factory.newOperation("category").setDescription("child")
            def parent = factory.newOperation("category").setDescription("parent")
            def parentId
    
            completed.started()
            completed.completed()
    
            when:
            parent.started()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/ProjectReportsPlugin.java

                taskReportTask.getProjectReportDirectory().convention(project.getLayout().dir(project.provider(() -> DeprecationLogger.whileDisabled(() -> convention.getProjectReportDir()))));
                taskReportTask.setDescription("Generates a report about your tasks.");
                taskReportTask.conventionMapping("outputFile", () -> taskReportTask.getProjectReportDirectory().file("tasks.txt").get().getAsFile());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 13 12:55:19 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/LifecycleBasePlugin.java

                assembleTask.setDescription("Assembles the outputs of this project.");
                assembleTask.setGroup(BUILD_GROUP);
            });
        }
    
        private void addCheck(Project project) {
            project.getTasks().register(CHECK_TASK_NAME, checkTask -> {
                checkTask.setDescription("Runs all checks.");
                checkTask.setGroup(VERIFICATION_GROUP);
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/internal/progress/NoOpProgressLoggerFactory.groovy

            String description
    
            String getDescription() { description }
    
            ProgressLogger setDescription(String description) {
                this.description = description
                this
            }
    
            ProgressLogger start(String description, String status) {
                setDescription(description)
                started()
                this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 17:26:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

            binary.getTasks().create(taskName, LinkExecutable.class, new Action<LinkExecutable>() {
                @Override
                public void execute(LinkExecutable linkTask) {
                    linkTask.setDescription("Links " + binary.getDisplayName());
                    linkTask.getToolChain().set(binary.getToolChain());
                    linkTask.getTargetPlatform().set(binary.getTargetPlatform());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/internal/progress/RecordingProgressLoggerFactory.groovy

                this.messages = messages
            }
    
            String getDescription() { description }
    
            ProgressLogger setDescription(String description) {
                this.description = description
                this
            }
    
            ProgressLogger start(String description, String status) {
                setDescription(description)
                started()
                this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 27 07:57:46 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/ant/AntTarget.java

         * {@inheritDoc}
         */
        @Internal
        @Override
        public String getDescription() {
            return target == null ? null : target.getDescription();
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void setDescription(String description) {
            if (target != null) {
                target.setDescription(description);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/EarPlugin.java

                    deploymentDescriptor.setDisplayName(project.getName());
                }
                if (deploymentDescriptor.getDescription() == null) {
                    deploymentDescriptor.setDescription(project.getDescription());
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:57:15 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/tasks/ant/AntTargetTest.java

        }
    
        @Test
        public void delegatesDescriptionToTarget() {
            antTarget.setDescription("description");
    
            task.setTarget(antTarget);
            assertThat(task.getDescription(), equalTo("description"));
    
            antTarget.setDescription("new description");
            assertThat(task.getDescription(), equalTo("new description"));
        }
    
        public class TestTask extends org.apache.tools.ant.Task {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 30 07:54:03 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top