Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for day (0.21 sec)

  1. .github/workflows/team-triage-stale.yml

    name: 'Requeue stale team-triage items'
    on:
      schedule:
        # Execute every day at 00:05 to avoid conflicts with other workflows
        - cron: '5 0 * * *'
    
    permissions:
      issues: write
      pull-requests: write
    
    jobs:
      requeue:
        runs-on: ubuntu-latest
        steps:
          - uses: actions/stale@v9
            with:
              operations-per-run: 50
              remove-stale-when-updated: false
    
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Jan 24 10:26:28 GMT 2024
    - 807 bytes
    - Viewed (0)
  2. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "bigCppMulti",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "bigNative",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumCppApp",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
    Json
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 01 17:23:34 GMT 2024
    - 35.6K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt

                                this.hour = triggerHour
                            }
                        } else {
                            schedulingPolicy = weekly {
                                this.dayOfWeek = ScheduleTrigger.DAY.Saturday
                                this.hour = triggerHour
                            }
                        }
                        triggerBuild = always()
                        withPendingChangesOnly = branch.isMainBranch
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.6K bytes
    - Viewed (1)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        READY_FOR_NIGHTLY("Ready for Nightly", "Rerun tests in different environments / 3rd party components", "ReadyforNightly"),
        READY_FOR_RELEASE("Ready for Release", "Once a day: Rerun tests in more environments", "ReadyforRelease"),
        HISTORICAL_PERFORMANCE("Historical Performance", "Once a week: Run performance tests for multiple Gradle versions", "HistoricalPerformance"),
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/StagePasses.kt

        } else if (stage.trigger != Trigger.never) {
            triggers.schedule {
                if (stage.trigger == Trigger.weekly) {
                    schedulingPolicy = weekly {
                        dayOfWeek = ScheduleTrigger.DAY.Saturday
                        hour = 1
                    }
                } else {
                    schedulingPolicy = daily {
                        hour = 0
                        minute = 30
                    }
                }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

        val performanceTestTypes = if (performanceTestSpec.performanceTestType in setOf(PerformanceTestType.historical, PerformanceTestType.flakinessDetection)) {
            listOf(PerformanceTestType.per_commit, PerformanceTestType.per_day)
        } else {
            listOf(performanceTestSpec.performanceTestType)
        }
        return performanceTestConfigurations.flatMap { configuration ->
            configuration.groups
                .filter { group ->
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 15.3K bytes
    - Viewed (0)
Back to top