Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 275 for stages (0.06 sec)

  1. .teamcity/src/test/kotlin/BuildScanTagUtilsTest.kt

                model.stages[1].getBuildScanCustomValueParam(),
            )
            assertEquals(
                "-DbuildScan.PartOf=ReadyforRelease",
                model.stages[4].getBuildScanCustomValueParam(),
            )
        }
    
        @Test
        fun `test functional test project tags`() {
            assertEquals(
                "QuickJava25AdoptiumLinuxAmd64",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Aug 05 16:58:51 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                    stage.specificBuilds.size + stage.functionalTests.size + stage.performanceTests.size + stage.docsTests.size +
                        (if (prevStage != null) 1 else 0) +
                        // flakyTestQuarantineTriggers
                        if (stage.stageName == StageName.READY_FOR_RELEASE) 3 else 0,
                    it.dependencies.items.size,
                    stage.stageName.stageName,
                )
            }
        }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 01:27:05 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                .forEach {
                    buildType(FlakyTestQuarantine(model, stage, it))
                }
    
            model.stages
                .filter { it.stageName <= StageName.READY_FOR_RELEASE }
                .flatMap { stage -> stage.specificBuilds.map { it.create(model, stage, FlakyTestStrategy.ONLY) } }
                .filter { it.os == os }
                .filter { it is SmokeTests || it is SmokeIdeTests }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/AbstractIntervalController.java

    /**
     * An abstract base class for implementing {@link IntervalController}.
     * Provides a common structure for handling delays at different stages of the crawling process.
     * It encapsulates the delay logic and exception handling, allowing subclasses to focus on
     * defining the specific delay behavior for each stage.
     *
     * <p>
     * This class defines the contract for delaying the crawling process at various points, such as:
     * </p>
     * <ul>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:58:39 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/BuildTypeTest.kt

                    "%linux.java25.openjdk.64bit%",
                )
            val expectedInstallationPaths = linuxPaths.joinToString(",")
            val gradleStep = CompileAll(buildModel, buildModel.stages[0]).steps.getGradleStep(GRADLE_RUNNER_STEP_NAME)
            assertEquals(
                listOf(
                    "-Dorg.gradle.workers.max=%maxParallelForks%",
                    "-PmaxParallelForks=%maxParallelForks%",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  6. Jenkinsfile

    #!groovy
    
    pipeline {
      agent none
      // save some io during the build
      options {
        skipDefaultCheckout()
        durabilityHint('PERFORMANCE_OPTIMIZED')
        disableRestartFromStage()
      }
      stages {
        stage("Build / Test - JDK17") {
          agent { node { label 'ubuntu' } }
          steps {
            timeout(time: 210, unit: 'MINUTES') {
              checkout scm
              mavenBuild("jdk_17_latest", "")
              script {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 10 12:31:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/index.md

    This is in contrast to the **development** stages, where you are constantly changing the code, breaking it and fixing it, stopping and restarting the development server, etc.
    
    ## Deployment Strategies { #deployment-strategies }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Nov 17 19:33:53 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

        override fun createFunctionalTestsFor(
            stage: Stage,
            testCoverage: TestCoverage,
        ): List<FunctionalTest> =
            when {
                testCoverage.testType == TestType.QUICK_FEEDBACK_CROSS_VERSION ->
                    quickCrossVersionTestBucketProvider.createFunctionalTestsFor(
                        stage,
                        testCoverage,
                    )
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Sep 24 08:38:33 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  9. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

            )
    
        @BeforeEach
        fun setUp() {
            val stepsCapturer = slot<BuildSteps.() -> Unit>()
            every { buildType.steps } returns steps
            every { buildType.stage } returns buildModel.stages[2]
            every {
                buildType.steps(capture(stepsCapturer))
            } answers {
                stepsCapturer.captured(steps)
                mockk()
            }
        }
    
        @Test
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Nov 20 07:29:52 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        },
        BuildLogicTest {
            override fun create(
                model: CIBuildModel,
                stage: Stage,
                flakyTestStrategy: FlakyTestStrategy,
            ): OsAwareBaseGradleBuildType = BuildLogicTest(model, stage)
        },
        BuildDistributions {
            override fun create(
                model: CIBuildModel,
                stage: Stage,
                flakyTestStrategy: FlakyTestStrategy,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 05 13:00:26 UTC 2025
    - 27.5K bytes
    - Viewed (0)
Back to top