Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for currentExecutions (0.17 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceReportScenario.groovy

        }
    
        boolean isImproved() {
            return !crossBuild && currentExecutions.every { it.confidentToSayBetter() }
        }
    
        boolean isBuildFailed() {
            return teamCityExecutions.every { it.isBuildFailed() } && currentExecutions.empty
        }
    
        boolean isRegressed() {
            return teamCityExecutions.every { it.isBuildFailed() } && !currentExecutions.empty
        }
    
        boolean isSuccessful() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessDetectionPerformanceExecutionDataProvider.java

            List<? extends PerformanceTestExecution> currentExecutions = executionsOfSameCommit.isEmpty()
                ? history.getExecutions().stream().limit(3).collect(toList())
                : executionsOfSameCommit;
            return new PerformanceReportScenario(
                Collections.singletonList(execution),
                removeEmptyExecution(currentExecutions),
                history instanceof CrossBuildPerformanceTestHistory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/AbstractMultiTestInterceptor.java

            @Override
            public void interceptIterationExecution(IMethodInvocation invocation) throws Throwable {
                currentExecution.assertCanExecute();
                currentExecution.before(invocation);
                invocation.proceed();
                currentExecution.after();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top