Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for testProjects (0.28 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/LargeDependencyGraphPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_COMMIT
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["excludeRuleMergingBuild"])
    )
    class LargeDependencyGraphPerformanceTest extends AbstractCrossVersionPerformanceTest implements WithExternalRepository {
    
        def setup() {
            runner.minimumBaseVersion = '5.6.4'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaFirstUsePerformanceTest.groovy

    @RunFor(
        @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["largeMonolithicJavaProject", "largeJavaMultiProject", "largeJavaMultiProjectKotlinDsl"])
    )
    class JavaFirstUsePerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "first use"() {
            given:
            runner.tasksToRun = ['tasks']
            runner.runs = (runner.testProject == (LARGE_JAVA_MULTI_PROJECT_KOTLIN_DSL.projectName) ? 5 : 10)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDETaskExecutionPerformanceTest.groovy

    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["largeJavaMultiProjectHierarchy","largeJavaMultiProject", "largeAndroidBuild", "nowInAndroidBuild"])
    )
    class JavaIDETaskExecutionPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/DeprecationCreationPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_DAY
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["generateLotsOfDeprecationWarnings"])
    )
    class DeprecationCreationPerformanceTest extends AbstractCrossVersionPerformanceTest {
        def "create many deprecation warnings"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/SwiftCleanBuildPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_DAY
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ['mediumSwiftMulti', 'bigSwiftApp'])
    )
    class SwiftCleanBuildPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def setup() {
            runner.minimumBaseVersion = '4.6'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/SwiftBuildPerformanceTest.groovy

            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        static String determineFileToChange(String testProject) {
            switch (testProject) {
                case 'mediumSwiftMulti':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingNativePerformanceTest.groovy

    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    // TODO: Merge with TaskOutputCachingJavaPerformanceTest
    @RunFor(
        @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["bigCppApp", "bigCppMulti", "bigNative"])
    )
    class TaskOutputCachingNativePerformanceTest extends AbstractTaskOutputCachingPerformanceTest {
    
        def setup() {
            runner.minimumBaseVersion = "4.3"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativeParallelPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_WEEK
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_WEEK, operatingSystems = [LINUX], testProjects = ['smallNative', 'mediumNative', 'bigNative', 'multiNative'])
    )
    class NativeParallelPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "clean assemble with parallel workers"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/inception/BuildSrcApiChangePerformanceTest.groovy

            when:
            def result = runner.run()
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        private static int determineNumberOfRuns(String testProject) {
            switch (testProject) {
                case 'mediumMonolithicJavaProject':
                    return 40
                case 'largeJavaMultiProject':
                    return 20
                case 'largeJavaMultiProjectKotlinDsl':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingSwiftPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_DAY
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["mediumSwiftMulti", "bigSwiftApp"])
    )
    class TaskOutputCachingSwiftPerformanceTest extends AbstractTaskOutputCachingPerformanceTest {
        def setup() {
            runner.minimumBaseVersion = "4.5"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top