Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for Assembles (0.53 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    build - Assembles and tests this project.
    buildDependents - Assembles and tests this project and all projects that depend on it.
    buildNeeded - Assembles and tests this project and all projects it depends on.
    classes - Assembles main classes.
    clean - Deletes the build directory.
    jar - Assembles a jar archive containing the classes of the 'main' feature.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

    import java.util.Set;
    import java.util.concurrent.Callable;
    import java.util.function.BiFunction;
    import java.util.function.Supplier;
    
    /**
     * <p>A {@link org.gradle.api.Plugin} which compiles and tests Java source, and assembles it into a JAR file.</p>
     *
     * This plugin is automatically applied to most projects that build any JVM language source.  It creates a {@link JavaPluginExtension}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/asm.go

    		p.errorf("%s: expected immediate constant; found %s", pseudo, obj.Dconv(&emptyProg, addr))
    		return false
    	}
    	return true
    }
    
    // asmText assembles a TEXT pseudo-op.
    // TEXT runtimeĀ·sigtramp(SB),4,$0-0
    func (p *Parser) asmText(operands [][]lex.Token) {
    	if len(operands) != 2 && len(operands) != 3 {
    		p.errorf("expect two or three operands for TEXT")
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    ------------------------------------------------------------
    Tasks runnable from project ':app'
    ------------------------------------------------------------
    
    My app build tasks
    ------------------
    build - Assembles and tests this project.
    check - Runs checks (including tests).
    run - Runs this project as a JVM application
    tasksAll - Show additional tasks.
    ----
    
    This is already useful if the standard lifecycle tasks are sufficient.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    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
    -----------
    compileJava - Compiles main Java source.
    
    ...
    ----
    
    Many of these tasks, such as `assemble`, `build`, and `run`, should be familiar to a developer.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

    import static org.gradle.api.internal.lambdas.SerializableLambdas.action;
    import static org.gradle.api.internal.lambdas.SerializableLambdas.callable;
    import static org.gradle.plugins.ear.EarPlugin.DEFAULT_LIB_DIR_NAME;
    
    /**
     * Assembles an EAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Ear extends Jar {
        public static final String EAR_EXTENSION = "ear";
    
        private String libDirName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    `assemble`::
    _Depends on_: `jar`
    +
    Aggregate task that assembles all the archives in the project. This task is added by the Base Plugin.
    
    `check`::
    _Depends on_: `test`
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top