Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 489 for Assembles (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  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/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)
  8. platforms/native/language-native/src/main/java/org/gradle/language/assembler/plugins/internal/AssembleTaskConfig.java

        @Override
        public String getTaskPrefix() {
            return "assemble";
        }
    
        @Override
        public Class<? extends DefaultTask> getTaskType() {
            return Assemble.class;
        }
    
        @Override
        public void configureTask(Task task, BinarySpec binary, LanguageSourceSet sourceSet, ServiceRegistry serviceRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/internal/obj/loong64/asm_test.go

    	"os"
    	"path/filepath"
    	"testing"
    )
    
    const genBufSize = (1024 * 1024 * 32) // 32MB
    
    // 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: Mon Apr 15 17:39:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top