Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withMultiProjectSources (0.28 sec)

  1. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCompilerDaemonReuseIntegrationTest.groovy

        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @UnsupportedWithConfigurationCache(because = "parallel by default")
        def "reuses compiler daemons within a multi-project build"() {
            withMultiProjectSources()
    
            when:
            succeeds("compileAll")
    
            then:
            executedAndNotSkipped "${compileTaskPath('main')}", ":child${compileTaskPath('main')}"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/daemon/ScalaCompilerDaemonReuseIntegrationTest.groovy

        @UnsupportedWithConfigurationCache(because = "parallel by default")
        def "reuses compiler daemons within a multi-project build across multiple builds when enabled"() {
            withMultiProjectSources()
            withPersistentScalaCompilerDaemons()
    
            when:
            succeeds("compileAll")
    
            then:
            executedAndNotSkipped "${compileTaskPath('main')}", ":child${compileTaskPath('main')}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top