Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 424 for setDescription (0.18 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

                task.configure(new Action<GenerateIdeaWorkspace>() {
                    @Override
                    public void execute(GenerateIdeaWorkspace task) {
                        task.setDescription("Generates an IDEA workspace file (IWS)");
                        task.setOutputFile(new File(project.getProjectDir(), project.getName() + ".iws"));
                    }
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDslReferencePlugin.java

            TaskProvider<Docbook2Xhtml> dslHtml = tasks.register("dslHtml", Docbook2Xhtml.class, task -> {
                task.setGroup("documentation");
                task.setDescription("Generates DSL reference HTML documentation.");
                task.onlyIf(t -> !extension.getQuickFeedback().get());
    
                task.source(dslStandaloneDocbook);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/plugins/PublishingPlugin.java

            project.getTasks().register(PUBLISH_LIFECYCLE_TASK_NAME, task -> {
                task.setDescription("Publishes all publications produced by this project.");
                task.setGroup(PUBLISH_TASK_GROUP);
            });
            extension.getPublications().all(publication -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

            }
    
            public Map<String, Artifact> getArtifactMap() {
                return artifactMap;
            }
    
            public void setDescription(String description) {
                this.description = description;
            }
    
            public String getDescription() {
                return description;
            }
        }
    
        public static class Build {}
    
        public static class Dependency {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

            for (final Task taskToSign : tasks) {
                result.add(
                    createSignTaskFor(taskToSign.getName(), task -> {
                        task.setDescription("Signs the archive produced by the '" + taskToSign.getName() + "' task.");
                        task.sign(taskToSign);
                    })
                );
            }
            return result;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

            task.configure(new Action<GenerateEclipseWtpComponent>() {
                @Override
                public void execute(final GenerateEclipseWtpComponent task) {
                    task.setDescription("Generates the Eclipse WTP component settings file.");
                    task.setInputFile(project.file(".settings/org.eclipse.wst.common.component"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstylePlugin.java

            });
        }
    
        @Override
        protected void configureForSourceSet(final SourceSet sourceSet, Checkstyle task) {
            task.setDescription("Run Checkstyle analysis for " + sourceSet.getName() + " classes");
            task.setClasspath(sourceSet.getOutput().plus(sourceSet.getCompileClasspath()));
            task.setSource(sourceSet.getAllJava());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsDataConfig.java

            registerModifiedProperty("createdTime");
            this.createdTime = value;
        }
    
        public String getDescription() {
            checkSpecifiedProperty("description");
            return convertEmptyToNull(description);
        }
    
        public void setDescription(String value) {
            registerModifiedProperty("description");
            this.description = value;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractSpockTaskTest.groovy

            thrown(InvalidUserDataException)
        }
    
        def setGetDescription() {
            when:
            String testDescription = "testDescription"
            getTask().setDescription(testDescription)
    
            then:
            testDescription ==  getTask().getDescription()
        }
    
        def canSpecifyOnlyIfPredicateUsingClosure() {
            DefaultTask task = getTask()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 14:27:55 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/NativeTestSuites.java

            testBinary.getTasks().create(name, RunTestExecutable.class, new Action<RunTestExecutable>() {
                @Override
                public void execute(RunTestExecutable runTask) {
                    runTask.setDescription("Runs the " + testBinary);
                    testBinary.getTasks().add(runTask);
                }
            });
        }
        public static Collection<NativeBinarySpec> testedBinariesOf(NativeTestSuiteSpec testSuite) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top