Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for adhoc (0.1 sec)

  1. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

        override
        fun asName(): String =
            "Flamegraphs for $name"
    
        override
        fun channel(): String = "adhoc-%teamcity.build.branch%"
    
        override
        val type: PerformanceTestType
            get() = PerformanceTestType.adHoc
    
        override
        val failsStage: Boolean
            get() = false
    
        val buildSpecs: List<FlameGraphGenerationBuildSpec>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

    abstract class AdHocPerformanceScenario(os: Os, arch: Arch = Arch.AMD64) : BuildType({
        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 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

                    os.javaInstallationLocations()
                )
            )
        }
    
        id("${model.projectId}_TestPerformanceTest")
        name = "Test performance test tasks - Java8 Linux"
        description = "Tries to run an adhoc performance test without a database connection to verify this is still working"
    
        applyPerformanceTestSettings()
        artifactRules = individualPerformanceTestArtifactRules
    
        steps {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            timeout = 600,
            defaultBaselines = "last",
            channel = "historical",
            extraParameters = "--checks none --cross-version-only"
        ),
        adHoc(
            displayName = "AdHoc Performance Test",
            timeout = 30,
            channel = "adhoc",
            extraParameters = "--checks none"
        );
    }
    
    enum class Trigger {
        never, eachCommit, daily, weekly
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

    val softwareComponentFactory = project.objects.newInstance(SoftwareComponentFactoryProvider::class.java).factory
    val gradleApiComponent = softwareComponentFactory.adhoc("gradleApi")
    components.add(gradleApiComponent)
    
    // Published component containing the public Gradle API
    gradleApiComponent.addVariantsFromConfiguration(gradleApiElements.get()) {
        mapToMavenScope("compile")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                    description = "Runs ad-hoc performance tests on $testProject - can be used locally"
                    channel = "adhoc"
                    outputs.doNotCacheIf("Is adhoc performance test") { true }
                    mustRunAfter(currentlyRegisteredTestProjects)
                    testSpecificConfigurator(this)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                }
            }
    
            projectLayoutSetupRegistry.templateOperationFactory.newTemplateOperation()
                .withTemplate(templateFolder.template("$templateFragment.adoc"))
                .withTarget(settings.target.file("../README.adoc").asFile)
                .withBinding("language", descriptor.language.toString().replace("C++", "{cpp}"))
                .withBinding("languageLC", descriptor.language.getName().toLowerCase())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts

        propertiesFile = layout.projectDirectory.file("gradle/dependency-management/agp-versions.properties")
        compatibilityDocFile = layout.projectDirectory.file("platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc")
    }
    
    tasks.register<UpdateKotlinVersions>("updateKotlinVersions") {
        comment = " Generated - Update by running `./gradlew updateKotlinVersions`"
        minimumSupported = "1.6.10"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:17:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

     */
    // NOTE: If you update this, please also change .idea/scopes/Gradle_public_API.xml
    // and also change `avoiding_gradle_internal_apis` section in `src/docs/userguide/authoring-builds/authoring_maintainable_build_scripts.adoc`
    object PublicApi {
        val includes = listOf(
            "org/gradle/*",
            "org/gradle/api/**",
            "org/gradle/authentication/**",
            "org/gradle/build/**",
            "org/gradle/buildconfiguration/**",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                task.sources(patternSet -> {
                    patternSet.include("**/*.adoc");
                    patternSet.exclude("javaProject*Layout.adoc");
                    patternSet.exclude("userguide_single.adoc");
                    patternSet.exclude("snippets/**/*.adoc");
                });
    
                // TODO: This breaks the provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top