Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for _assembles_ (3.25 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

            output.contains """Detailed task information for :jar
    
    Path
         :jar
    
    Type
         Jar (org.gradle.api.tasks.bundling.Jar)
    
    Options
    ${builtInOptions}
    
    Description
         Assembles a jar archive containing the classes of the 'main' feature.
    
    Group
         build
    
    BUILD SUCCESSFUL"""
    
            when:
            run "help", "--task", "jar"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

            def sources = compileJava.source
            sources.files == project.sourceSets.custom.java.files
    
            def classes = project.tasks['customClasses']
            classes.description == "Assembles custom classes."
            classes instanceof DefaultTask
            TaskDependencyMatchers.dependsOn('processCustomResources', 'compileCustomJava').matches(classes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/asmb.go

    	}
    	buf.Write32b(uint32(spSize))
    	buf.Write32b(uint32(lcSize))
    	// amd64 includes the entry at the beginning of the symbol table.
    	if is64Bit {
    		buf.Write64b(uint64(entry))
    	}
    }
    
    // asmbPlan9 assembles a plan 9 binary.
    func asmbPlan9(ctxt *Link) {
    	if !*FlagS {
    		*FlagS = true
    		symo := int64(Segdata.Fileoff + Segdata.Filelen)
    		ctxt.Out.SeekSet(symo)
    		asmbPlan9Sym(ctxt)
    	}
    	ctxt.Out.SeekSet(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    ------------------------------------------------------------
    
    Application tasks
    -----------------
    run - Runs this project as a JVM application
    
    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    build - Assembles and tests this project.
    
    Documentation tasks
    -------------------
    javadoc - Generates Javadoc API documentation for the main source code.
    
    Other tasks
    -----------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/CreateStaticLibrary.java

    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Assembles a static library from object files.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class CreateStaticLibrary extends DefaultTask implements ObjectFilesToBinary {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    [[sec:ear_tasks]]
    == Tasks
    
    The Ear plugin adds the following tasks to the project.
    
    `ear` — link:{groovyDslPath}/org.gradle.plugins.ear.Ear.html[Ear]::
    _Depends on_: `compile` (only if the Java plugin is also applied)
    +
    Assembles the application EAR file.
    
    === Dependencies added to other tasks
    
    The Ear plugin adds the following dependencies to tasks added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `assemble`::
    _Depends on_: `ear`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    [[sec:war_tasks]]
    == Tasks
    
    The War plugin adds and modifies the following tasks:
    
    `war` — link:{groovyDslPath}/org.gradle.api.tasks.bundling.War.html[War]::
    _Depends on_: `compile`
    +
    Assembles the application WAR file.
    
    `assemble` - _lifecycle task_::
    _Depends on_: `war`
    
    The War plugin adds the following dependencies to tasks added by the Java plugin;
    
    .War plugin - tasks
    image::warPluginTasks.png[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    `build__Configuration__` — task rule::
    Assembles those artifacts attached to the named configuration. For example, `buildRuntimeElements` will execute any task that is required to create any artifact attached to the `runtimeElements` configuration.
    
    `clean__Task__` — task rule::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/software/plugins-distribution/src/main/java/org/gradle/api/distribution/plugins/DistributionPlugin.java

            project.getTasks().register(taskName, DefaultTask.class, assembleTask -> {
                assembleTask.setDescription("Assembles the " + distribution.getName() + " distributions");
                assembleTask.setGroup(DISTRIBUTION_GROUP);
                assembleTask.dependsOn((Object[])tasks);
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 20:49:58 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/JvmPluginsHelper.java

            if (!tasks.getNames().contains(jarTaskName)) {
                TaskProvider<Jar> jarTask = tasks.register(jarTaskName, Jar.class, jar -> {
                    jar.setDescription("Assembles a jar archive containing the " + (featureName == null ? "main " + docsType + "." : (docsType + " of the '" + featureName + "' feature.")));
                    jar.setGroup(BasePlugin.BUILD_GROUP);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top