Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for testProjects (0.21 sec)

  1. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

            applyDefaultDependencies(model, this, !performanceTestBuildSpec.withoutDependencies)
        }
    )
    
    fun getPerformanceTestTaskNames(performanceSubProject: String, testProjects: List<String>, performanceTestTaskSuffix: String): List<String> {
        return testProjects.map {
            ":$performanceSubProject:$it$performanceTestTaskSuffix"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/declarativedsl/DeclarativeDslFirstUsePerformanceTest.groovy

    import static org.gradle.performance.results.OperatingSystem.MAC_OS
    import static org.gradle.performance.results.OperatingSystem.WINDOWS
    
    @RunFor(
        @Scenario(type = PER_DAY, operatingSystems = [LINUX, MAC_OS, WINDOWS], testProjects = ["largeEmptyMultiProjectDeclarativeDsl"])
    )
    class DeclarativeDslFirstUsePerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        private static final int WARMUP_RUNS = 5
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ScriptDependencyResolveIntegrationTest.groovy

            module.artifact(classifier: 'classifier')
            module.publish()
            mavenRepo().module("org.gradle", "other", "preview-1").publish()
    
            and:
            settingsFile << """
    rootProject.name = 'testproject'
    """
    
            buildFile << """
    group = 'org.gradle'
    version = '1.0'
    
    buildscript {
        repositories { maven { url "${mavenRepo().uri}" } }
        dependencies {
            classpath "org.gradle:test:1.45"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                allowEmpty = true,
                description = "The baselines you want to run performance tests against. Empty means default baseline."
            )
            text(
                "testProject",
                "",
                display = ParameterDisplay.PROMPT,
                allowEmpty = false,
                description = "The test project to use. E.g. largeJavaMultiProject"
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. testing/smoke-ide-test/src/smokeIdeTest/groovy/org/gradle/ide/sync/AbstractIdeaSyncTest.groovy

            }
            testDirectory.file(path)
        }
    
        private void runIdeStarterWith(
            Path gradleDist,
            Path testProject,
            Path ideHome,
            String ide
        ) {
            def gradleDistOption = "--gradle-dist=$gradleDist"
            def projectOption = "--project=$testProject"
            def ideHomeOption = "--ide-home=$ideHome"
            def ideOption = "--ide=$ide"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:28:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top