Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for per_commit (0.1 sec)

  1. .teamcity/performance-tests-ci.json

          "testProject" : "largeJavaMultiProject",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        }, {
          "testProject" : "largeMonolithicJavaProject",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        }, {
          "testProject" : "mediumJavaCompositeBuild",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        }, {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 25 10:54:09 UTC 2025
    - 32.8K bytes
    - Viewed (0)
  2. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                    Stage(
                        StageName.PULL_REQUEST_FEEDBACK,
                        performanceTests = listOf(PerformanceTestCoverage(1, PerformanceTestType.PER_COMMIT, Os.LINUX)),
                    ),
                    PerformanceTestCoverage(1, PerformanceTestType.PER_COMMIT, Os.LINUX),
                    "Description",
                    "performance",
                    listOf("largeTestProject", "smallTestProject"),
                    2,
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Sep 18 12:22:32 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        listOf(
            PerformanceTestCoverage(
                1,
                PerformanceTestType.PER_COMMIT,
                Os.LINUX,
                numberOfBuckets = 50,
                oldUuid = "PerformanceTestTestLinux",
            ),
            PerformanceTestCoverage(
                6,
                PerformanceTestType.PER_COMMIT,
                Os.WINDOWS,
                numberOfBuckets = 10,
                failsStage = true,
            ),
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 05 13:00:26 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

    ): List<PerformanceScenario> {
        val performanceTestTypes =
            if (performanceTestSpec.performanceTestType == PerformanceTestType.FLAKINESS_DETECTION) {
                listOf(PerformanceTestType.PER_COMMIT, PerformanceTestType.PER_DAY)
            } else {
                listOf(performanceTestSpec.performanceTestType)
            }
        return performanceTestConfigurations.flatMap { configuration ->
            configuration.groups
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Jul 10 02:18:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  5. .github/workflows/pre-commit.yml

    name: pre-commit
    
    on:
      pull_request:
        types:
          - opened
          - synchronize
    
    env:
      # Forks and Dependabot don't have access to secrets
      HAS_SECRETS: ${{ secrets.PRE_COMMIT != '' }}
    
    jobs:
      pre-commit:
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v5
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 23 11:17:16 UTC 2025
    - 3K bytes
    - Viewed (0)
  6. .github/workflows/check-commits.yml

            run: |
              git log --pretty=format:"%H" ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} > pr_commits.txt
          - name: Check PR commits
            id: run_check
            run: |
              groovy .github/workflows/CheckBadMerge.groovy pr_commits.txt > output.txt 2>&1
          - name: Read output file
            id: read_output
            if: ${{ always() }}
            run: |
              cat output.txt
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Nov 20 22:15:20 UTC 2025
    - 3K bytes
    - Viewed (0)
  7. .gitignore

    .dockerized-kube-version-defs
    
    # Web UI
    /www/master/node_modules/
    /www/master/npm-debug.log
    /www/master/shared/config/development.json
    
    # Karma output
    /www/test_out
    
    # precommit temporary directories created by ./hack/verify-generated-docs.sh and ./hack/lib/util.sh
    /_tmp/
    /doc_tmp/
    
    # Test artifacts produced by Prow/kubetest2 jobs
    /_artifacts/
    /_rundir/
    
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top