Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for description (0.17 sec)

  1. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                display = ParameterDisplay.PROMPT,
                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"
            )
    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)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

         *
         * Instead, we'll encode the path to the file in the description data field, as a link.  This is
         * useful regardless of this renderer's needs, since now there will be a link embedded in the report
         * to quickly open the changes file.  By then we can also regex that path out of the description
         * in order to create a changes {@link File} for further use in this class.
         *
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 07 20:38:43 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

    import model.PerformanceTestBuildSpec
    import model.PerformanceTestType
    import model.Stage
    
    class PerformanceTest(
        model: CIBuildModel,
        stage: Stage,
        performanceTestBuildSpec: PerformanceTestBuildSpec,
        description: String,
        performanceSubProject: String,
        val testProjects: List<String>,
        val bucketIndex: Int,
        extraParameters: String = "",
        performanceTestTaskSuffix: String = "PerformanceTest",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

        vcsRootId = gradlePromotionBranches
    ) {
        init {
            id("Promotion_PublishBranchSnapshotFromQuickFeedback")
            name = "Publish Branch Snapshot (from Quick Feedback)"
            description = "Deploys a new distribution snapshot for the selected build/branch. Does not update master or the documentation."
    
            val triggerName = this.triggerName
    
            params {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  5. .cm/plugins/filters/nullToEmpty/index.js

    /**
     * @module nullToEmpty
     * @description Returns the specified value if non-null, otherwise an empty array.
     * @param {Object} input - The object to investigate
     * @returns Object - The specified value if non-null, otherwise an empty array
     * @example {{ readField('jvm', 'files') | nullToEmpty }}
     */
    function nullToEmpty(input) {
        let output;
        if (input) {
            output = input;
        } else {
            output = [];
        }
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 16:43:16 GMT 2024
    - 526 bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

    package configurations
    
    import model.CIBuildModel
    import model.Stage
    
    class SanityCheck(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id(buildTypeId(model))
        name = "Sanity Check"
        description = "Static code analysis, checkstyle, release notes verification, etc."
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyDefaults(
            model,
            this,
            "sanityCheck",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Nov 30 11:15:05 GMT 2021
    - 708 bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin for configuring japicmp-gradle-plugin to detect binary incompatible changes"
    
    dependencies {
        api("me.champeau.gradle:japicmp-gradle-plugin")
    
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation("com.google.code.gson:gson")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 905 bytes
    - Viewed (0)
  8. build-logic/documentation/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate Gradle's DSL reference, User Manual and Javadocs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":build-update-utils"))
    
        implementation("com.github.javaparser:javaparser-core")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/projects/CheckProject.kt

                allowEmpty = true,
                description = "The extra gradle parameters you want to pass to this build, e.g. `-PrerunAllTests` or `--no-build-cache`"
            )
            text(
                "reverse.dep.*.additional.gradle.parameters",
                "",
                display = ParameterDisplay.NORMAL,
                allowEmpty = true,
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Feb 29 04:36:37 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockTableRenderer.java

            td = document.createElement("td");
            tr.appendChild(td);
            td.appendChild(document.createTextNode("Description"));
    
            for (BlockDoc blockDoc : blocks) {
                // <tr>
                //   <td><link linkend="$id"><literal>$name</literal></link</td>
                //   <td>$description</td>
                // </tr>
                tr = document.createElement("tr");
                parent.appendChild(tr);
    
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.8K bytes
    - Viewed (0)
Back to top