Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 551 for Assembles (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    > Task :tasks
    
    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    
    Build Setup tasks
    -----------------
    init - Initializes a new Gradle build.
    
    Distribution tasks
    ------------------
    assembleDist - Assembles the main distributions
    
    Documentation tasks
    -------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    Depends on: `link__Variant__`
    ::
    Aggregates tasks that assemble the specific variant of this application.
    
    [[sec:cpp_application_lifecycle_tasks]]
    === Lifecycle Tasks
    
    The {cpp} Application Plugin attaches some of its tasks to the standard lifecycle tasks documented in the <<base_plugin.adoc#base_plugin,Base Plugin chapter>> - which the {cpp} Application Plugin applies automatically:
    
    `assemble` - Task (lifecycle)::
    Depends on: `linkDebug`
    ::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    ::
    Aggregates tasks that assemble the specific variant of this library.
    
    [[sec:swift_library_lifecycle_tasks]]
    === Lifecycle Tasks
    
    The Swift Library Plugin attaches some of its tasks to the standard lifecycle tasks documented in the <<base_plugin.adoc#base_plugin,Base Plugin chapter>> — which the Swift Library Plugin applies automatically:
    
    `assemble` - Task (lifecycle)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    The XCTest Plugin attaches some of its tasks to the standard lifecycle tasks documented in the <<base_plugin.adoc#base_plugin,Base Plugin chapter>> — which the XCTest Plugin applies automatically:
    
    `assemble` - Task (lifecycle)::
    Aggregate task that assembles the debug variant of the tested component for the current host (if present) in the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/README.md

    The build script of the `docs` subproject (`supprojects/docs/build.gradle`) eventually assembles the three kinds of docs code above to exemplar samples and then tests them with exemplar.
    
    ### `org.gradle.samples` plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/doc.go

    /*
    Package ppc64 implements a PPC64 assembler that assembles Go asm into
    the corresponding PPC64 instructions as defined by the Power ISA 3.0B.
    
    This document provides information on how to write code in Go assembler
    for PPC64, focusing on the differences between Go and PPC64 assembly language.
    It assumes some knowledge of PPC64 assembler. The original implementation of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

    import org.gradle.testing.base.TestingExtension;
    
    import javax.inject.Inject;
    import java.util.Collections;
    
    
    /**
     * <p>A {@link Plugin} which compiles and tests Java source, and assembles it into a JAR file.</p>
     *
     * This plugin creates a built-in {@link JvmTestSuite test suite} named {@code test} that represents the {@link Test} task for Java projects.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

            String jarTaskName = sourceSet.getJarTaskName();
            if (!tasks.getNames().contains(jarTaskName)) {
                return tasks.register(jarTaskName, Jar.class, jar -> {
                    jar.setDescription("Assembles a jar archive containing the classes of the '" + name + "' feature.");
                    jar.setGroup(BasePlugin.BUILD_GROUP);
                    jar.from(sourceSet.getOutput());
                    if (!capabilities.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

     *
     * <p>There is a one-to-one correspondence between a <code>Settings</code> instance and a <code>{@value
     * #DEFAULT_SETTINGS_FILE}</code> settings file. Before Gradle assembles the projects for a build, it creates a
     * <code>Settings</code> instance and executes the settings file against it.</p>
     *
     * <h3>Assembling a Multi-Project Build</h3>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    ::
    Aggregates tasks that assemble the specific variant of this library.
    
    [[sec:cpp_library_lifecycle_tasks]]
    === Lifecycle Tasks
    
    The {cpp} Library Plugin attaches some of its tasks to the standard lifecycle tasks documented in the <<base_plugin.adoc#base_plugin,Base Plugin chapter>> — which the {cpp} Library Plugin applies automatically:
    
    `assemble` - Task (lifecycle)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top