Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 238 for setDescription (0.55 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultVariant.java

        }
    
        @Override
        public void setDescription(String description) {
            this.description = description;
        }
    
        @Override
        public Optional<String> getDescription() {
            return Optional.ofNullable(description);
        }
    
        @Override
        public String getName() {
            return name;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/TestCountLogger.java

        }
    
        @Override
        public void beforeSuite(TestDescriptor suite) {
            if (suite.getParent() == null) {
                progressLogger = factory.newOperation(TestCountLogger.class);
                progressLogger.setDescription("Run tests");
                progressLogger.started();
                progressLogger.progress(summary());
            }
        }
    
        @Override
        public void afterSuite(TestDescriptor suite, TestResult result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/PCHCompileTaskConfig.java

            // input sourceSet to the compile task.
            final DependentSourceSetInternal sourceSet = (DependentSourceSetInternal) languageSourceSet;
    
            task.setDescription("Compiles a pre-compiled header for the " + sourceSet + " of " + binary);
    
            // Add the source of the source set to the include paths to resolve any headers that may be in source directories
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top