Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 536 for assemble64 (0.16 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

                println "configuring \$project.path"
                classes.doLast { t ->
                    println "classes of \$t.path"
                }
            """
    
            when:
            execute(buildA, ":assemble")
    
            then:
            outputContains("> Configure project :buildB:buildSrc")
            result.groupedOutput.task(":buildB:buildSrc:classes").output.contains("classes of :classes")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/RichConsolePerformanceTest.groovy

        @RunFor([
            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["largeMonolithicJavaProject"], iterationMatcher = "^clean assemble.*"),
            @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["largeJavaMultiProject", "bigNative"], iterationMatcher = "^clean assemble.*"),
            @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["withVerboseJUnit"], iterationMatcher = "^cleanTest.*")
        ])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-task-graph.dot

      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileTestCpp -> linkTest -> installTest -> runTest -> test -> check -> build [dir=back]
      compileDebugCpp -> linkTest [dir=back]
      assemble -> build [dir=back]
      tripleDots -> assemble [dir=back]
      clean
    
      compileDebugCpp [style="dashed,filled", fillcolor=grey]
      tripleDots [style="dashed,filled", fillcolor=grey, label="..."]
    
      // Ensure ordering
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaCleanAssemblePerformanceTest.groovy

    ])
    class JavaCleanAssemblePerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "clean assemble"() {
            given:
            runner.warmUpRuns = 2
            runner.runs = 6
            runner.tasksToRun = ["clean", "assemble"]
            runner.minimumBaseVersion = runner.testProject.contains("Composite") ? "4.0" : null
    
            when:
            def result = runner.run()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/endtoend_test.go

    	"fmt"
    	"internal/buildcfg"
    	"os"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    
    	"cmd/asm/internal/lex"
    	"cmd/internal/obj"
    )
    
    // An end-to-end test for the assembler: Do we print what we parse?
    // Output is generated by, in effect, turning on -S and comparing the
    // result against a golden file.
    
    func testEndToEnd(t *testing.T, goarch, file string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/maven/JavaTestGradleVsMavenPerformanceTest.groovy

            gradleTask | mavenTask
            'assemble' | 'package'
            'test'     | 'test'
        }
    
        def "#gradleTask for non-abi change (Gradle vs Maven)"() {
            given:
            runner.testGroup = "Gradle vs Maven test build using Java plugin"
            def testProject = JavaTestProject.projectFor(runner.testProject)
            def fileToChange = testProject.config.fileToChangeByScenario["assemble"]
            configureMavenOptions(testProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

        }
        val assembleWeb by registering(Copy::class) {
            group = "build"
            description = "Assemble the web application"
            includeEmptyDirs = false
            from(unpackKotlinJsStdlib)
            from(sourceSets.main.get().output) {
                exclude("**/*.kjsm")
            }
            into("$buildDir/web")
        }
        assemble {
            dependsOn(assembleWeb)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    `assemble` - Task (lifecycle)::
    Aggregate task that assembles the debug variant of the tested component for the current host (if present) in the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            project.components.b2 == b2
        }
    
        def "assemble task does nothing when no main component"() {
            def component = Stub(SoftwareComponent)
            component.name >> 'not-main'
    
            given:
            project.pluginManager.apply(NativeBasePlugin)
    
            when:
            project.components.add(component)
    
            then:
            project.tasks['assemble'] TaskDependencyMatchers.dependsOn()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                include("b")
            """
            buildFile << """
                $block {
                    plugins.apply('java-library')
                }
            """
    
            when:
            isolatedProjectsFails("assemble")
    
            then:
            fixture.assertStateStoredAndDiscarded {
                projectsConfigured(":", ":a", ":b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top