Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newSourceSet (0.12 sec)

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

            assert runningCompilerDaemons == [ expected ]
        }
    
        void assertTwoCompilerDaemonsAreRunning() {
            assert runningCompilerDaemons.size() == 2
        }
    
        String newSourceSet(String name) {
            return """
                sourceSets {
                    ${name} {
                        compileClasspath += main.compileClasspath
                    }
                }
            """
        }
    
    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/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractComponentCompilerDaemonReuseIntegrationTest.groovy

    
    @UnsupportedWithConfigurationCache(because = "software model")
    abstract class AbstractComponentCompilerDaemonReuseIntegrationTest extends AbstractCompilerDaemonReuseIntegrationTest {
        @Override
        String newSourceSet(String name) {
            return """
                model {
                    components {
                        ${name}(JvmLibrarySpec)
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top