Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 551 for Assembles (0.14 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. 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)
  10. 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)
Back to top