Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for featured (0.17 sec)

  1. .teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt

            }
    
            features {
                // https://www.jetbrains.com/help/teamcity/shared-resources.html#Viewing+Shared+Resources+Usage
                // https://blog.jetbrains.com/teamcity/2013/05/explaining-the-shared-resources-plugin/
                // we only allow 1 promotion job running at the same time to avoid website xml conflicts
                feature {
                    type = "JetBrains.SharedResources"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

        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)
  3. .teamcity/src/main/kotlin/configurations/FunctionalTestsPass.kt

        id("${functionalTestProject.testCoverage.asId(model)}_Trigger")
        name = functionalTestProject.name + " (Trigger)"
        type = Type.COMPOSITE
    
        applyDefaultSettings()
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        dependencies {
            snapshotDependencies(functionalTestProject.functionalTests)
        }
    }) {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu May 06 17:20:10 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/GitHubMergeQueueCheckPass.kt

        type = Type.COMPOSITE
    
        vcs {
            root(AbsoluteId(VersionedSettingsBranch.fromDslContext().vcsRootId()))
            checkoutMode = CheckoutMode.ON_AGENT
        }
    
        features {
            enablePullRequestFeature()
            publishBuildStatusToGithub(model)
        }
    
        triggers.vcs {
            quietPeriodMode = VcsTrigger.QuietPeriodMode.DO_NOT_USE
            branchFilter = """
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 23 05:43:32 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

        }
    }
    
    fun BaseGradleBuildType.tcParallelTests(numberOfBatches: Int) {
        if (numberOfBatches > 1) {
            params {
                param("env.TEAMCITY_PARALLEL_TESTS_ENABLED", "1")
            }
            features {
                parallelTests {
                    this.numberOfBatches = numberOfBatches
                }
            }
        }
    }
    
    fun BuildFeatures.publishBuildStatusToGithub() {
        commitStatusPublisher {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/DocsTest.kt

        id("${asDocsTestId(model, docsTestProject.os)}_Trigger")
        name = docsTestProject.name + " (Trigger)"
        type = Type.COMPOSITE
    
        applyDefaultSettings()
    
        features {
            publishBuildStatusToGithub(model)
        }
        dependencies {
            snapshotDependencies(docsTestProject.docsTests)
        }
    })
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

            extraParameters = buildScanTag("BuildDistributions") +
                " -PtestJavaVersion=${LINUX.buildJavaVersion.major}" +
                " -Porg.gradle.java.installations.auto-download=false"
        )
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        artifactRules = """$artifactRules
            subprojects/distributions-full/build/distributions/*.zip => distributions
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Sep 22 09:52:00 GMT 2023
    - 970 bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/CompileAll.kt

        id(buildTypeId(model))
        name = "Compile All"
        description = "Compiles all production/test source code and warms up the build cache"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyDefaults(
            model,
            this,
            "compileAllBuild -PignoreIncomingBuildReceipt=true -DdisableLocalCache=true",
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Sep 22 09:52:00 GMT 2023
    - 999 bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/resources/org/gradle/test/Java8Interface.java

     * limitations under the License.
     */
    
    package org.gradle.test;
    
    import java.io.IOException;
    import java.util.function.Supplier;
    
    /**
     * An interface that uses Java 8 source features.
     */
    public interface Java8Interface extends CombinedInterface, JavaInterface {
        default String getName() {
            try (Writer writer = new StringWriter()) {
                Supplier<String> methodReference = this::toString;
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.1K bytes
    - Viewed (0)
  10. .github/workflows/CheckBadMerge.groovy

            "subprojects/docs/src/docs/release/notes.md",
            "platforms/documentation/docs/src/docs/release/notes.md",
            "subprojects/launcher/src/main/resources/release-features.txt",
            "platforms/core-runtime/launcher/src/main/resources/release-features.txt"
        ]
    
        static void main(String[] commits) {
            println("Commits to check: ${Arrays.toString(commits)}")
            try {
                commits.each { checkCommit(it) }
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 19 10:35:44 GMT 2023
    - 6.5K bytes
    - Viewed (0)
Back to top