Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 424 for setDescription (0.27 sec)

  1. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPlugin.java

        }
    
        private void addRunTask(Project project, JvmFeatureInternal mainFeature, JavaApplication pluginExtension) {
            project.getTasks().register(TASK_RUN_NAME, JavaExec.class, run -> {
                run.setDescription("Runs this project as a JVM application");
                run.setGroup(APPLICATION_GROUP);
    
                FileCollection runtimeClasspath = project.files().from((Callable<FileCollection>) () -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DistributionFactoryTest.groovy

            then:
            1 * progressLoggerFactory.newOperation(DistributionInstaller.class) >>> loggerOne
            1 * buildProgressListener.onEvent({it instanceof StartEvent})
            1 * loggerOne.setDescription("Download ${zipFile.toURI()}")
            1 * loggerOne.started()
    
            then:
            1 * buildProgressListener.onEvent({ it instanceof StatusEvent})
    
            then:
            1 * loggerOne.completed()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLogger.java

         * @return the description, must not be empty.
         */
        String getDescription();
    
        /**
         * <p>Sets the description of the operation. This should be a full, stand-alone description of the operation.
         *
         * <p>This must be called before {@link #started()}.
         *
         * @param description The description.
         */
        ProgressLogger setDescription(String description);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/api/plugins/scala/ScalaPlugin.java

                scalaDoc.getCompilationOutputs().from(feature.getSourceSet().getOutput());
            });
            project.getTasks().register(SCALA_DOC_TASK_NAME, ScalaDoc.class, scalaDoc -> {
                scalaDoc.setDescription("Generates Scaladoc for the main source code.");
                scalaDoc.setGroup(JavaBasePlugin.DOCUMENTATION_GROUP);
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

            Configuration auxClasspath = project.getConfigurations().dependencyScopeUnlocked(PMD_ADDITIONAL_AUX_DEPS_CONFIGURATION, additionalAuxDepsConfiguration -> {
                additionalAuxDepsConfiguration.setDescription("The additional libraries that are available for type resolution during analysis");
                additionalAuxDepsConfiguration.setVisible(false);
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                @Override
                public void execute(GenerateEclipseProject task) {
                    task.setDescription("Generates the Eclipse project file.");
                    task.setInputFile(project.file(".project"));
                    task.setOutputFile(project.file(".project"));
                }
            });
            addWorker(task, ECLIPSE_PROJECT_TASK_NAME);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/assembler/plugins/internal/AssembleTaskConfig.java

        }
    
        private void configureAssembleTask(Assemble task, final NativeBinarySpecInternal binary, final LanguageSourceSetInternal sourceSet) {
            task.setDescription("Assembles the " + sourceSet + " of " + binary);
    
            task.getToolChain().set(binary.getToolChain());
            task.getTargetPlatform().set(binary.getTargetPlatform());
    
            task.source(sourceSet.getSource());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/plugins/BinaryBasePlugin.java

                TaskInternal binaryLifecycleTask = taskInstantiator.create(binary.getProjectScopedName(), DefaultTask.class);
                binaryLifecycleTask.setGroup(LifecycleBasePlugin.BUILD_GROUP);
                binaryLifecycleTask.setDescription(String.format("Assembles %s.", binary));
                binary.setBuildTask(binaryLifecycleTask);
            }
    
            @Finalize
            void addSourceSetsOwnedByBinariesToTheirInputs(@Each BinarySpecInternal binary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/rc/plugins/internal/WindowsResourcesCompileTaskConfig.java

        }
    
        private void configureResourceCompileTask(WindowsResourceCompile task, final NativeBinarySpecInternal binary, final WindowsResourceSet sourceSet) {
            task.setDescription("Compiles resources of the " + sourceSet + " of " + binary);
    
            task.getToolChain().set(binary.getToolChain());
            task.getTargetPlatform().set(binary.getTargetPlatform());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

                pluginUnderTestMetadataTask.setGroup(PLUGIN_DEVELOPMENT_GROUP);
                pluginUnderTestMetadataTask.setDescription(PLUGIN_UNDER_TEST_METADATA_TASK_DESCRIPTION);
    
                pluginUnderTestMetadataTask.getOutputDirectory().set(project.getLayout().getBuildDirectory().dir(pluginUnderTestMetadataTask.getName()));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top