Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 337 for operatingSystems (0.25 sec)

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

    import static org.gradle.performance.annotations.ScenarioType.PER_DAY
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    class IdeIntegrationPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        @RunFor(
            @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["largeMonolithicJavaProject", "largeJavaMultiProject"])
        )
        def "eclipse"() {
            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)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/RunFor.groovy

            assert scenario.testProjects().length != 0 && scenario.operatingSystems().length != 0: "Invalid scenario: $scenario"
        }
    
        private static GroupsBean createGroup(Scenario scenario, String testProject) {
            return new GroupsBean(
                testProject: testProject,
                coverage: [(scenario.type().toString().toLowerCase()): scenario.operatingSystems().collect { it.coverageName }] as TreeMap,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeCleanBuildPerformanceTest.groovy

    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    class NativeCleanBuildPerformanceTest extends AbstractCrossVersionPerformanceTest {
        def setup() {
            runner.minimumBaseVersion = '4.1' // minimum version that contains new C++ plugins
        }
    
        @RunFor([
            @Scenario(type = PER_DAY, operatingSystems = [LINUX],
                testProjects =  [
                    'smallNative',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/RealWorldNativePluginPerformanceTest.groovy

            where:
            parallelWorkers << [0, 12]
        }
    
        @RunFor([
            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["mediumNativeMonolithic"], iterationMatcher = ".*(header|source) file.*"),
            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["smallNativeMonolithic"], iterationMatcher = ".*build file.*")
        ])
        def "build with #changeType file change"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeBuildPerformanceTest.groovy

    import static org.gradle.performance.annotations.ScenarioType.PER_DAY
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor([
        @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["bigCppMulti"]),
        @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["bigCppApp"])
    ])
    class NativeBuildPerformanceTest extends AbstractCrossVersionPerformanceTest {
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativePreCompiledHeaderPerformanceTest.groovy

    import org.gradle.performance.annotations.Scenario
    
    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 = ["smallPCHNative", "mediumPCHNative", "bigPCHNative"])
    )
    class NativePreCompiledHeaderPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/TaskAvoidancePerformanceTest.groovy

    import org.gradle.performance.fixture.GradleBuildExperimentSpec
    
    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 =  ["largeJavaMultiProject", "largeMonolithicJavaProject"]))
    class TaskAvoidancePerformanceTest extends AbstractCrossBuildPerformanceTest {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/LargeDependencyGraphPerformanceTest.groovy

    import org.gradle.performance.annotations.Scenario
    
    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 {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaDependencyReportPerformanceTest.groovy

    import static org.gradle.performance.generator.JavaTestProjectGenerator.LARGE_JAVA_MULTI_PROJECT
    import static org.gradle.performance.results.OperatingSystem.LINUX
    
    @RunFor(
        @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["largeJavaMultiProject", "largeMonolithicJavaProject"])
    )
    class JavaDependencyReportPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativeParallelPerformanceTest.groovy

    import org.gradle.performance.annotations.Scenario
    
    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 {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top