Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 536 for assemble64 (0.2 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/plugins/BinaryBasePlugin.java

                binaryLifecycleTask.setGroup(LifecycleBasePlugin.BUILD_GROUP);
                binaryLifecycleTask.setDescription(String.format("Assembles %s.", binary));
                binary.setBuildTask(binaryLifecycleTask);
            }
    
            @Finalize
            void addSourceSetsOwnedByBinariesToTheirInputs(@Each BinarySpecInternal binary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    _Depends on_: `distTar`, `distZip`
    +
    Creates ZIP and TAR archives of the distribution contents.
    
    `installDist` — link:{groovyDslPath}/org.gradle.api.tasks.Sync.html[Sync]::
    Assembles the distribution content and installs it on the current machine.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    [source,text]
    ----
    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: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/ScriptHandler.java

     * {@link #getDependencies()} to attach dependencies to the {@value #CLASSPATH_CONFIGURATION} configuration. These
     * dependencies are resolved just prior to script compilation, and assembled into the classpath for the script.</p>
     *
     * <p>For most external dependencies you will also need to declare one or more repositories where the dependencies can
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 20:33:21 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

        protected Compiler<AssembleSpec> createAssembler() {
            GccCommandLineToolConfigurationInternal assemblerTool = toolRegistry.getTool(ToolType.ASSEMBLER);
            // Disable command line file for now because some custom assemblers
            // don't understand the same arguments as GCC.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

            mavenRepo.module("org.test", "plugin", "1.0").publish()
    
            given:
            buildA.buildFile << """
                task assembleB {
                    dependsOn gradle.includedBuild("buildB").task(":assemble")
                }
            """
            dependency buildB, "org.test:XXX:1.0"
            buildC.buildFile.text = """
                buildscript {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    _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`.
    
    
    [[sec:ear_project_layout]]
    == Project layout
    
    ----
    .
    └── src
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top