Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for performance (0.2 sec)

  1. .teamcity/performance-test-durations.json

    [ {
      "scenario" : "org.gradle.performance.regression.android.AndroidIncrementalExecutionPerformanceTest.abi change",
      "durations" : [ {
        "testProject" : "nowInAndroidBuild",
        "linux" : 266,
        "windows" : 392,
        "macOs" : 209
      }, {
        "testProject" : "santaTrackerAndroidBuild",
        "linux" : 630,
        "windows" : 988,
        "macOs" : 462
      } ]
    }, {
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 26.3K bytes
    - Viewed (1)
  2. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

        "-Porg.gradle.java.installations.auto-download=false",
        os.javaInstallationLocations()
    ) + listOf(
        "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%",
        "-Porg.gradle.performance.db.url" to "%performance.db.url%",
        "-Porg.gradle.performance.db.username" to "%performance.db.username%"
    ).map { (key, value) -> os.escapeKeyValuePair(key, value) }
    
    const val individualPerformanceTestArtifactRules = """
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  3. .teamcity/performance-tests-ci.json

        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.clean checkout",
        "groups" : [ {
          "testProject" : "largeEmptyMultiProjectDeclarativeDsl",
          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.cold daemon",
        "groups" : [ {
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 01 17:23:34 GMT 2024
    - 35.6K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

            adHocPerformanceTest(
                listOf(
                    "org.gradle.performance.regression.java.JavaIDEModelPerformanceTest.get IDE model for IDEA",
                    "org.gradle.performance.regression.java.JavaUpToDatePerformanceTest.up-to-date assemble (parallel true)",
                    "org.gradle.performance.regression.corefeature.TaskAvoidancePerformanceTest.help with lazy and eager tasks"
                )
            )
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/util/UtilPerformanceProject.kt

    package util
    
    import jetbrains.buildServer.configs.kotlin.Project
    
    object UtilPerformanceProject : Project({
        id("Util_Performance")
        name = "Performance"
    
        buildType(AdHocPerformanceScenarioLinux)
        buildType(AdHocPerformanceScenarioWindows)
        buildType(AdHocPerformanceScenarioMacOS)
        buildType(AdHocPerformanceScenarioMacAppleSilicon)
    
        params {
            param("env.GRADLE_ENTERPRISE_ACCESS_KEY", "%ge.gradle.org.access.key%")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Jan 18 05:14:09 GMT 2024
    - 457 bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/projects/StageProject.kt

                    buildReportTab("Incubating APIs Report", "incubation-reports/all-incubating.html")
                }
                if (stage.performanceTests.isNotEmpty()) {
                    buildReportTab("Performance", "performance-test-results.zip!report/index.html")
                }
            }
    
            specificBuildTypes = stage.specificBuilds.map {
                it.create(model, stage)
            }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                gradleRunnerStep(
                    model,
                    ":$performanceProjectName:$taskName --channel %performance.channel%",
                    extraParameters = listOf(
                        "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%",
                        "-Porg.gradle.performance.db.url" to "%performance.db.url%",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  8. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                "\"-Porg.gradle.performance.branchName=%teamcity.build.branch%\"",
                "\"-Porg.gradle.performance.db.url=%performance.db.url%\"",
                "\"-Porg.gradle.performance.db.username=%performance.db.username%\"",
                "-DenableTestDistribution=%enableTestDistribution%",
                "-Dorg.gradle.workers.max=%maxParallelForks%",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

        val id = "Util_Performance_AdHocPerformanceScenario${os.asName()}${arch.asName()}"
        name = "AdHoc Performance Scenario - ${os.asName()} ${arch.asName()}"
        id(id)
    
        applyPerformanceTestSettings(os = os, arch = arch, timeout = 420)
        artifactRules = individualPerformanceTestArtifactRules
    
        params {
            text(
                "performance.baselines",
                "",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 13 13:53:39 GMT 2024
    - 4.9K bytes
    - Viewed (2)
  10. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        const val PERFORMANCE_DB_PASSWORD = "org.gradle.performance.db.password"
        const val PERFORMANCE_DB_PASSWORD_ENV = "PERFORMANCE_DB_PASSWORD_TCAGENT"
        const val PERFORMANCE_DB_URL = "org.gradle.performance.db.url"
        const val PERFORMANCE_DB_USERNAME = "org.gradle.performance.db.username"
        const val PERFORMANCE_DEPENDENCY_BUILD_IDS = "org.gradle.performance.dependencyBuildIds"
        const val PERFORMANCE_MAX_PROJECTS = "maxProjects"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jan 01 01:23:31 GMT 2024
    - 16.2K bytes
    - Viewed (0)
Back to top