Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for smoke (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .teamcity/src/main/kotlin/configurations/SmokeTests.kt

            val suffix = if (flakyTestStrategy == FlakyTestStrategy.ONLY)"_FlakyTestQuarantine" else ""
            id("${model.projectId}_SmokeTest_$id$suffix")
            name = "Smoke Tests with 3rd Party Plugins ($task) - ${testJava.version.toCapitalized()} Linux$suffix"
            description = "Smoke tests against third party plugins to see if they still work with the current Gradle version"
    
            if (flakyTestStrategy != FlakyTestStrategy.ONLY) {
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Dec 22 07:15:16 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

                **/build/git-checkout/build/reports/integTest/** => distribution-tests
                **/build/releases-data-checkout/data/releases.xml
                **/smoke-tests/build/reports/tests/** => post-smoke-tests
                **/build/version-info.properties => version-info.properties
                """.trimIndent(),
            )
    
            dependencies {
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Dec 22 07:15:16 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateSmokeTestedPluginsVersions.kt

    import org.gradle.api.tasks.TaskAction
    import org.gradle.api.tasks.UntrackedTask
    import org.gradle.util.internal.VersionNumber
    import java.util.Properties
    
    /**
     * Fetch the latest versions for smoke tested plugins and write a properties file.
     * Never up-to-date, non-cacheable.
     */
    @UntrackedTask(because = "Not worth tracking")
    abstract class UpdateSmokeTestedPluginsVersions : AbstractVersionsUpdateTask() {
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Sep 18 16:06:17 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts

        comment = " Generated - Update by running `./gradlew updateSmokeTestedPluginsVersions`"
        propertiesFile = layout.projectDirectory.file("gradle/dependency-management/smoke-tested-plugins.properties")
    }
    
    tasks.register("updateSmokeTestedVersions") {
        dependsOn(updateKotlinVersions, updateAgpVersions, updateSmokeTestedPluginsVersions)
    }
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Oct 24 09:10:28 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  5. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

            }
        }
    }
    
    /**
     * Tasks that are called by the (currently separate) promotion build running on CI.
     */
    tasks.register("promotionBuild") {
        description = "Build production distros, smoke test them and publish"
        group = "publishing"
        dependsOn(":packageBuild", "publish")
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Oct 30 16:56:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  6. guava-tests/test/com/google/common/xml/XmlEscapersTest.java

      }
    
      // Helper to assert common properties of xml escapers.
      static void assertBasicXmlEscaper(
          CharEscaper xmlEscaper, boolean shouldEscapeQuotes, boolean shouldEscapeWhitespaceChars) {
        // Simple examples (smoke tests)
        assertEquals("xxx", xmlEscaper.escape("xxx"));
        assertEquals("test & test & test", xmlEscaper.escape("test & test & test"));
        assertEquals("test &lt;&lt; 1", xmlEscaper.escape("test << 1"));
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 05 22:03:28 GMT 2025
    - 4.8K bytes
    - Click Count (0)
Back to Top