Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isFlaky (0.12 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. platforms/core-configuration/kotlin-dsl-integ-tests/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/plugins/ProjectTheExtensionCrossVersionSpec.groovy

            def isFlaky = OperatingSystem.current().isWindows() &&
                previous.version >= GradleVersion.version("6.5") &&
                previous.version < GradleVersion.version("7.0")
            assumeFalse("Test is flaky on Windows with Gradle >= 6.5 and < 7.0 ", isFlaky)
    
            when:
            pluginBuiltWith(previous)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 13:25:10 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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