Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for _assembles_ (0.4 sec)

  1. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/bundling/Jar.java

     * limitations under the License.
     */
    
    package org.gradle.api.tasks.bundling;
    
    import groovy.lang.Closure;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Assembles a JAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Jar extends org.gradle.jvm.tasks.Jar {
        @Override
        public Jar manifest(Closure<?> configureClosure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/SpecializedModelMapStrategyTest.groovy

    import spock.lang.Specification
    
    class SpecializedModelMapStrategyTest extends Specification {
        def store = new DefaultModelSchemaStore(DefaultModelSchemaExtractor.withDefaultStrategies())
    
        def "assembles schema for model map subtype"() {
            expect:
            def schema = store.getSchema(ModelType.of(SpecializedMap))
            schema instanceof SpecializedMapSchema
            schema.elementType == ModelType.of(String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ModelMapStrategyTest.groovy

    import spock.lang.Specification
    
    class ModelMapStrategyTest extends Specification {
        def store = new DefaultModelSchemaStore(DefaultModelSchemaExtractor.withDefaultStrategies())
    
        def "assembles schema for model map"() {
            expect:
            def schema = store.getSchema(ModelTypes.modelMap(String))
            schema instanceof ModelMapSchema
            schema instanceof ManagedImplSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/asm_test.go

    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    // TestLargeBranch generates a large function with a very far conditional
    // branch, in order to ensure that it assembles successfully.
    func TestLargeBranch(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skipping test in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    
    	dir, err := os.MkdirTemp("", "testlargebranch")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 01:50:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. src/cmd/asm/doc.go

    // Copyright 2015 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.
    
    /*
    Asm, typically invoked as “go tool asm”, assembles the source file into an object
    file named for the basename of the argument source file with a .o suffix. The
    object file can then be combined with other objects into a package archive.
    
    # Command Line
    
    Usage:
    
    	go tool asm [flags] file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:46:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/api/internal/plugins/BuildConfigurationRule.java

            this.configurations = configurations;
            this.tasks = tasks;
        }
    
        @Override
        public String getDescription() {
            return "Pattern: " + PREFIX + "<ConfigurationName>: Assembles the artifacts of a configuration.";
        }
    
        @Override
        public void apply(String taskName) {
            if (taskName.startsWith(PREFIX)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskDependency.java

     * method.</p>
     */
    public interface TaskDependency {
        /**
         * <p>Determines the dependencies for the given {@link Task}. This method is called when Gradle assembles the task
         * execution graph for a build. This occurs after all the projects have been evaluated, and before any task
         * execution begins.</p>
         *
         * @param task The task to determine the dependencies for.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Tar.java

    import org.gradle.api.internal.file.archive.compression.SimpleCompressor;
    import org.gradle.api.internal.file.copy.CopyAction;
    import org.gradle.api.tasks.Input;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Assembles a TAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Tar extends AbstractArchiveTask {
        private Compression compression = Compression.NONE;
    
        public Tar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top