Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 536 for assemble64 (0.2 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/assembler/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'assembler'
    // end::apply-plugin[]
        id 'c'
    // tag::apply-plugin[]
    }
    // end::apply-plugin[]
    
    model {
        platforms {
            x86 {
                architecture "i386"
            }
        }
    }
    
    // tag::assembler-args[]
    model {
        components {
            main(NativeExecutableSpec) {
                targetPlatform "x86"
                binaries.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1004 bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIncrementalExecutionPerformanceTest.groovy

            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX, WINDOWS, MAC_OS], testProjects = "largeJavaMultiProject")
        ])
        def "assemble for non-abi change#configurationCaching"() {
            given:
            runner.tasksToRun = ['assemble']
            runner.addBuildMutator {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            buildFile << """
                apply plugin: 'cpp-library'
            """
    
            expect:
            succeeds "assemble"
            result.assertTasksExecuted(tasks.debug.allToLink, ":assemble")
            // TODO - should skip the task as NO-SOURCE
            result.assertTasksSkipped(tasks.debug.allToLink, ":assemble")
        }
    
        @ToBeFixedForConfigurationCache
        def "build fails when compilation fails"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/assembler/plugins/AssemblerLangPlugin.java

     * limitations under the License.
     */
    package org.gradle.language.assembler.plugins;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    import org.gradle.language.assembler.AssemblerSourceSet;
    import org.gradle.language.assembler.plugins.internal.AssembleTaskConfig;
    import org.gradle.language.base.internal.SourceTransformTaskConfig;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingJavaPerformanceTest.groovy

            )
        ])
        def "clean assemble for abi change with local cache"() {
            given:
            setupTestProject(runner)
            def testProject = JavaTestProject.projectFor(runner.testProject)
            runner.addBuildMutator { new ApplyAbiChangeToJavaSourceFileMutator(new File(it.projectDir, testProject.config.fileToChangeByScenario['assemble'])) }
            runner.args += "--parallel"
            pushToRemote = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. doc/initial/5-toolchain.md

    ## Compiler {#compiler}
    
    ## Assembler {#assembler}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 74 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheToolingApiInvocationIntegrationTest.groovy

                    id("java")
                }
                println("script log statement")
            """
    
            when:
            configurationCacheRun("assemble")
    
            then:
            outputContains("script log statement")
    
            when:
            configurationCacheRun("assemble")
    
            then:
            outputDoesNotContain("script log statement")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

            settingsFile << """
            rootProject.name = 'empty-project'
            """
            buildFile << """
                apply plugin: 'ear'
            """
    
            when:
            succeeds 'assemble'
            succeeds 'assemble'
    
            then:
            def ear = new JarTestFixture(file('build/libs/empty-project.ear'))
            ear.assertContainsFile("META-INF/MANIFEST.MF")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageIncrementalBuildIntegrationTest.groovy

        def "reassembles binary with assembler option change"() {
            when:
            buildFile << """
                model {
                    components {
                        hello {
                            binaries.all {
                                if (toolChain in VisualCpp) {
                                    assembler.args '/Zf'
                                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationCachePerformanceTest.groovy

            @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["largeJavaMultiProjectNoBuildSrc"], iterationMatcher = "assemble loading configuration cache state with hot daemon")
        ])
        def "assemble #action configuration cache state with #daemon daemon"() {
            given:
            runner.tasksToRun = ["assemble"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top