Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 536 for assemble64 (0.17 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/nativeplatform/NativeLanguageSamplesIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "assembler"() {
            given:
            sample assembler
    
            when:
            run "installMainExecutable"
    
            then:
            executedAndNotSkipped ":compileMainExecutableMainC", ":linkMainExecutable", ":mainExecutable"
    
            and:
            installation(assembler.dir.file("build/install/main")).exec().out == "5 + 7 = 12\n"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/UnmanagedImplStructStrategyTest.groovy

    import spock.lang.Specification
    
    class UnmanagedImplStructStrategyTest extends Specification {
        def store = new DefaultModelSchemaStore(DefaultModelSchemaExtractor.withDefaultStrategies())
    
        def "assembles schema for unmanaged type"() {
            expect:
            def schema = store.getSchema(ModelType.of(SomeType))
            schema instanceof UnmanagedImplStructSchema
            !(schema instanceof ManagedImplSchema)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftBothLibraryLinkageIntegrationTest.groovy

            """
            library.writeToProject(testDirectory)
    
            when:
            succeeds('assemble')
    
            then:
            result.assertTasksExecuted(':compileDebugSharedSwift', ':linkDebugShared', ':assemble')
            sharedLibrary('build/lib/main/debug/shared/Foo').assertExists()
        }
    
        def "can assemble static library followed by shared library"() {
            def library = new SwiftLib()
            makeSingleProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/cpp-shared-library-task-graph.dot

      compileDebugCpp -> linkDebug -> assembleDebug -> assemble -> build [dir=back]
      check -> build [dir=back]
      compileReleaseCpp -> linkRelease -> assembleRelease [dir=back]
      clean
    
      // Ensure ordering
      compileDebugCpp -> compileReleaseCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileReleaseCpp clean}
    
      assemble -> empty1 -> empty2 -> check [style=invis]
      {rank=same assemble check empty1 empty2}
      empty1[shape=plain, label=""]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

        }
    
        def addLifecycleTasks(BuildTestFile build) {
            build.buildFile << """
                tasks.maybeCreate("assemble")
                tasks.assemble.dependsOn gradle.includedBuilds*.task(':assemble')
            """
        }
    
        def applyPlugin(BuildTestFile build, boolean pluginsBlock = false, boolean withVersion = true) {
            if (pluginsBlock && withVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaHashCodeTest.kt

                hashCodeFor(
                    containerElements = listOf(
                        entry<TaskContainer, DefaultTask>("assemble")
                    )
                ),
                equalTo(
                    hashCodeFor(
                        containerElements = listOf(
                            entry<TaskContainer, DefaultTask>("assemble")
                        )
                    )
                )
            )
    
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            }
            another(NativeLibrarySpec) {
                binaries.all { buildable = false }
            }
        }
    }
    """
            when:
            fails "assemble"
    
            then:
            failureDescriptionContains("Execution failed for task ':assemble'.")
            failure.assertHasCause("""No buildable binaries found:
      - shared library 'another:sharedLibrary': Disabled by user
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/runtime/sys_windows_arm64.s

    	AND	$~1, R3
    	LSL	$3, R3
    	SUB	R3, RSP
    
    	// R4: size of stack arguments (n-8)*8
    	// R5: &args[8]
    	// R6: loop counter, from 0 to (n-8)*8
    	// R7: scratch
    	// R8: copy of RSP - (R2)(RSP) assembles as (R2)(ZR)
    	SUB	$8, R0, R4
    	LSL	$3, R4
    	ADD	$(8*8), R12, R5
    	MOVD	$0, R6
    	MOVD	RSP, R8
    stackargs:
    	MOVD	(R6)(R5), R7
    	MOVD	R7, (R6)(R8)
    	ADD	$8, R6
    	CMP	R6, R4
    	BNE	stackargs
    
    _8args:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/jvm/war/src/integTest/groovy/org/gradle/api/plugins/WarPluginIntegrationTest.groovy

            buildFile << """
                plugins {
                    id 'war'
                }
            """
    
            file("src/main/webapp/index.jsp") << "<p>hi</p>"
    
            when:
            succeeds "assemble"
    
            then:
            file("build/libs/test.war").exists();
        }
    
        def "can customize archive names using convention properties"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 17:46:36 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/LanguageTaskNames.groovy

                    return allToLink + [install]
                }
    
                List<String> getAllToAssemble() {
                    return allToLink + [assemble]
                }
    
                List<String> getAllToAssembleWithInstall() {
                    return allToInstall + [assemble]
                }
            }
    
            class DebugTasks extends VariantTasks {
                @Override
                protected String getBuildType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top