Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for _assembles_ (0.54 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/swift_application_plugin.adoc

    `assemble` - Task (lifecycle)::
    Depends on: `linkDebug`
    ::
    Aggregate task that assembles the debug variant of the application for the current host (if present) in the project.
    This task is added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `check` - Task (lifecycle)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    `assemble` - Task (lifecycle)::
    Depends on: `linkDebug`
    ::
    Aggregate task that assembles the debug variant of the application for the current host (if present) in the project.
    This task is added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `check` - Task (lifecycle)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K 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. 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)
  7. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    `assemble` - Task (lifecycle)::
    Depends on: `linkDebug` when linkage includes `shared` or `createDebug` otherwise.
    ::
    Aggregate task that assembles the debug variant of the shared library (if available) for the current host (if present) in the project.
    This task is added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `check` - 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)
  8. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    `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)
  9. 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)
  10. src/cmd/internal/obj/ppc64/doc.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top