Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 536 for assemble64 (0.15 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/SwiftCleanBuildPerformanceTest.groovy

    )
    class SwiftCleanBuildPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def setup() {
            runner.minimumBaseVersion = '4.6'
        }
    
        def "clean assemble (swift)"() {
            given:
            runner.tasksToRun = ["assemble"]
            runner.cleanTasks = ["clean"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftParallelExecutionIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            and:
            buildFile << """
                apply plugin: 'swift-application'
             """
    
            expect:
            succeeds "assemble"
            result.assertTasksExecuted(":compileDebugSwift", ":linkDebug", ":installDebug", ":assemble")
    
            executable("build/exe/main/debug/App").assertExists()
            installation("build/install/main/debug").exec().out == app.expectedOutput
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (1)
  4. src/cmd/internal/obj/ppc64/asm_test.go

    	if !strings.Contains(string(out), "Unexpected alignment") {
    		t.Errorf("Invalid alignment not detected for PCALIGN\n")
    	}
    }
    
    // Verify register constants are correctly aligned. Much of the ppc64 assembler assumes masking out significant
    // bits will produce a valid register number:
    // REG_Rx & 31 == x
    // REG_Fx & 31 == x
    // REG_Vx & 31 == x
    // REG_VSx & 63 == x
    // REG_SPRx & 1023 == x
    // REG_CRx & 7 == x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. platforms/jvm/war/src/integTest/groovy/org/gradle/integtests/MixedJavaAndWebProjectIntegrationTest.groovy

            file("b/src/main/java/org/gradle/test/PersonImpl.java") << """
                package org.gradle.test;
                class PersonImpl implements Person { }
            """
    
            expect:
            succeeds "assemble"
        }
    
        def "war contains runtime classpath of upstream java project"() {
            given:
            createDirs("a", "b", "c", "d", "e")
            file("settings.gradle") << 'include "a", "b", "c", "d", "e"'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingNativePerformanceTest.groovy

        def setup() {
            runner.minimumBaseVersion = "4.3"
            runner.args += ["-Dorg.gradle.caching.native=true"]
        }
    
        def "clean assemble with local cache (native project)"() {
            given:
            runner.tasksToRun = ["assemble"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/BasePluginTest.groovy

            clean instanceOf(Delete)
            clean dependsOn()
            clean.targetFiles.files == [project.buildDir] as Set
    
            and:
            def assemble = project.tasks[BasePlugin.ASSEMBLE_TASK_NAME]
            assemble instanceOf(DefaultTask)
        }
    
        def "assemble task builds the published artifacts"() {
            given:
            def someZip = project.tasks.create('someZip', Zip)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ToolType.java

        C_COMPILER("C compiler"),
        OBJECTIVECPP_COMPILER("Objective-C++ compiler"),
        OBJECTIVEC_COMPILER("Objective-C compiler"),
        WINDOW_RESOURCES_COMPILER("Windows resources compiler"),
        ASSEMBLER("Assembler"),
        LINKER("Linker"),
        STATIC_LIB_ARCHIVER("Static library archiver"),
        SWIFT_COMPILER("Swift compiler"),
        SYMBOL_EXTRACTOR("Symbol extractor"),
        STRIPPER("Stripper");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. doc/next/5-toolchain.md

    on 386 and amd64 because it has not shown an improvement on other platforms.
    Hot block alignment can be disabled with `-gcflags=[<packages>=]-d=alignhot=0`
    
    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    <!-- go.dev/issue/67401, CL 585556, CL 587220, and many more -->
    The linker now disallows using a `//go:linkname` directive to refer to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top