Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for adhoc (0.01 sec)

  1. .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)
            setArtifactRules(INDIVIDUAL_PERFORAMCE_TEST_ARTIFACT_RULES)
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

                )
            }
    
            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()
            setArtifactRules(INDIVIDUAL_PERFORAMCE_TEST_ARTIFACT_RULES)
    
            steps {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 25 10:54:09 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  3. .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.AD_HOC
    
        override val failsStage: Boolean
            get() = false
    
        val buildSpecs: List<FlameGraphGenerationBuildSpec>
            get() =
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            channel = "flakiness-detection",
            extraParameters = "--checks none --rerun --cross-version-only",
        ),
        AD_HOC(
            displayName = "AdHoc Performance Test",
            timeout = 30,
            channel = "adhoc",
            extraParameters = "--checks none",
        ),
    }
    
    enum class Trigger {
        NEVER,
        EACH_COMMIT,
        DAILY,
        WEEKLY,
    }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 05 13:00:26 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                task.sources(patternSet -> {
                    patternSet.include("**/*.adoc");
                    patternSet.include("**/*.js");
                    patternSet.exclude("javaProject*Layout.adoc");
                    patternSet.exclude("userguide_single.adoc");
                    patternSet.exclude("snippets/**/*.adoc");
                });
    
                // TODO: This breaks the provider
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 04 14:26:28 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java

    /**
     * A Java class to verify that all .adoc files and their anchors listed in a JSON file exist
     * within a specified directory.
     */
    @CacheableTask
    public abstract class FindMissingDocumentationFiles extends DefaultTask {
        private static final Set<String> EXCLUDED_FILES = new HashSet<>(Arrays.asList(
            "temp.adoc",
            "userguide_single.adoc"
        ));
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Aug 21 15:38:58 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  7. 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")
    }
    
    val updateKotlinVersions = tasks.register<UpdateKotlinVersions>("updateKotlinVersions") {
        comment = " Generated - Update by running `./gradlew updateKotlinVersions`"
        minimumSupported = "2.0.0"
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Oct 24 09:10:28 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GenerateDocInfo.java

            Path adocDir = getDocumentationRoot().get().getAsFile().toPath();
            getDocumentationFiles().getAsFileTree().matching(pattern -> pattern.include("**/*.adoc")).forEach(adocFile -> {
                String adocFileName = adocFile.getName();
                // getting_started.adoc -> getting_started-docinfo.html
                String docInfoName = adocFileName.substring(0, adocFileName.lastIndexOf('.')) + "-docinfo.html";
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue May 27 09:07:14 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. .github/CODEOWNERS

    platforms/documentation/docs/src/docs/userguide/reference/core-plugins/distribution_plugin.adoc         @gradle/bt-docs-reviewers @gradle/bt-jvm
    platforms/documentation/docs/src/docs/userguide/reference/core-plugins/ear_plugin.adoc                  @gradle/bt-docs-reviewers @gradle/bt-jvm
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Nov 07 21:47:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java

                .matching(pattern -> {
                    pattern.include("**/*.adoc");
                    pattern.exclude("**/index.adoc"); // Exclude index.adoc files
                })
                .forEach(file -> gatherDeadLinksInFileSamples(file, errors));
    
            getDocumentationRoot().getAsFileTree().matching(pattern -> pattern.include("**/*.adoc")).forEach(file -> {
                gatherDeadLinksInFile(file, errors);
            });
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue May 27 09:07:14 UTC 2025
    - 18.1K bytes
    - Viewed (0)
Back to top