Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for reportWorkValidationWarningsAtEndOfBuild (0.48 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/WorkValidationWarningReporter.java

    public interface WorkValidationWarningReporter {
        /**
         * Reports any validation warnings at the end of the build.
         *
         * Resets the warning state for the next build.
         */
        void reportWorkValidationWarningsAtEndOfBuild();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 08 10:17:53 UTC 2020
    - 891 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/DefaultWorkValidationWarningRecorder.java

                        .willBeRemovedInGradle9())
                        .nagUser();
                }
            );
        }
    
        @Override
        public void reportWorkValidationWarningsAtEndOfBuild() {
            int workWithFailures = workWithFailuresCount.getAndSet(0);
            if (workWithFailures > 0) {
                LOGGER.warn(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildResultLogger.java

            DeprecationLogger.reportSuppressedDeprecations();
    
            // Summary of validation warnings during the build
            workValidationWarningReporter.reportWorkValidationWarningsAtEndOfBuild();
    
            boolean buildSucceeded = result.getFailure() == null;
    
            StyledTextOutput textOutput = textOutputFactory.create(BuildResultLogger.class, buildSucceeded ? LogLevel.LIFECYCLE : LogLevel.ERROR);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 08 10:17:53 UTC 2020
    - 3.1K bytes
    - Viewed (0)
Back to top