Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isFlaky (0.1 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessIndexPageGenerator.java

                protected String determineScenarioBackgroundColorCss(PerformanceReportScenario scenario) {
                    return isFlaky(scenario) ? "alert-warning" : "alert-info";
                }
    
                @Override
                protected Set<Tag> determineTags(PerformanceReportScenario scenario) {
                    return isFlaky(scenario) ? Sets.newHashSet(FLAKY) : Collections.emptySet();
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessDetectionPerformanceExecutionDataProvider.java

                .thenComparing(comparing(PerformanceReportScenario::isBuildFailed).reversed())
                .thenComparing(comparing(org.gradle.performance.results.report.FlakinessDetectionPerformanceExecutionDataProvider::isFlaky).reversed())
                .thenComparing(comparing(PerformanceReportScenario::getDifferencePercentage).reversed())
                .thenComparing(PerformanceReportScenario::getName);
    
    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-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceReportScenario.groovy

        }
    
        boolean isCrossVersion() {
            return !crossBuild
        }
    
        boolean isUnknown() {
            return teamCityExecutions.any { it.isUnknown() }
        }
    
        boolean isFlaky() {
            return teamCityExecutions.size() > 1 && teamCityExecutions.count { it.successful } == 1
        }
    
        boolean isImproved() {
            return !crossBuild && currentExecutions.every { it.confidentToSayBetter() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProvider.java

        @VisibleForTesting
        static final Comparator<PerformanceReportScenario> SCENARIO_COMPARATOR = comparing(PerformanceReportScenario::isBuildFailed).reversed()
            .thenComparing(comparing(PerformanceReportScenario::isFlaky).reversed())
            .thenComparing(PerformanceReportScenario::isSuccessful)
            .thenComparing(comparing(PerformanceReportScenario::isBuildFailed).reversed())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

        if (uncaughtException != null) {
          throw failure + AssertionError("uncaught exception thrown during test", uncaughtException)
        }
    
        if (context.isFlaky()) {
          logEvents()
        }
    
        LogManager.getLogManager().reset()
    
        var result: Throwable? = failure
        Thread.setDefaultUncaughtExceptionHandler(defaultUncaughtExceptionHandler)
        try {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top