Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 86 for subgroup (0.13 sec)

  1. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

        private void createClassesTask(final SourceSet sourceSet, Project target) {
            sourceSet.compiledBy(
                target.getTasks().register(sourceSet.getClassesTaskName(), classesTask -> {
                    classesTask.setGroup(LifecycleBasePlugin.BUILD_GROUP);
                    classesTask.setDescription("Assembles " + sourceSet.getOutput() + ".");
                    classesTask.dependsOn(sourceSet.getOutput().getDirs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDslReferencePlugin.java

            Configuration userGuideStyleSheetConf = project.getConfigurations().create("userGuideStyleSheets");
    
            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. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/AbstractCompositeBuildIntegrationTest.groovy

    import org.gradle.api.Task;
    
    public class ${className} implements Plugin<Project> {
        public void apply(Project project) {
            Task task = project.task("taskFrom${baseName}");
            task.setGroup("Plugin");
        }
    }
    """
            }
        }
    
        void outputContains(String string) {
            // intentionally override outputContains, because this test may find messages
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 19 21:32:57 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedProjectsSafeGradleProjectBuilder.java

            LaunchableGradleProjectTask target = new LaunchableGradleProjectTask();
            target.setPath(model.getPath())
                .setName(model.getName())
                .setGroup(model.getGroup())
                .setDisplayName(model.getDisplayName())
                .setDescription(model.getDescription())
                .setPublic(model.isPublic())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:17:44 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. 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 -> {
                PublicationInternal<?> internalPublication = Cast.uncheckedNonnullCast(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)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

            // TODO: This breaks if version is changed later
            Object version = project.getVersion();
    
            TaskProvider<Javadoc> javadocAll = tasks.register("javadocAll", Javadoc.class, task -> {
                task.setGroup("documentation");
                task.setDescription("Generate Javadocs for all API classes");
    
                task.setTitle("Gradle API " + version);
    
                Javadocs javadocs = extension.getJavadocs();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/jvm/war/src/main/java/org/gradle/api/plugins/WarPlugin.java

                warTask.setDescription("Generates a war archive with all the compiled classes, the web-app content and the libraries.");
                warTask.setGroup(BasePlugin.BUILD_GROUP);
            });
    
            PublishArtifact warArtifact = new LazyPublishArtifact(war, ((ProjectInternal) project).getFileResolver(), ((ProjectInternal) project).getTaskDependencyFactory());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:57:15 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

         * <p>
         *     With a wide hierarchy, each group of libraries depend only on each other. There's a limited depth (~7) and
         *     several projects.  This tries to replicate a project with many subgroups of interconnected components.
         * <p>
         *     With a deep and wide hierarchy, each subproject is formed as above, except each group of libraries depend on
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  9. src/internal/fmtsort/sort_test.go

    func TestInterface(t *testing.T) {
    	// A map containing multiple concrete types should be sorted by type,
    	// then value. However, the relative ordering of types is unspecified,
    	// so test this by checking the presence of sorted subgroups.
    	m := map[any]string{
    		[2]int{1, 0}:             "",
    		[2]int{0, 1}:             "",
    		true:                     "",
    		false:                    "",
    		3.1:                      "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/EarPlugin.java

                task.setDescription("Generates a ear archive with all the modules, the application descriptor and the libraries.");
                task.setGroup(BasePlugin.BUILD_GROUP);
                DeprecationLogger.whileDisabled(() -> task.getGenerateDeploymentDescriptor().convention(convention.getGenerateDeploymentDescriptor()));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:57:15 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top