Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for printDiagnosticCounts (0.27 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkJavaCompiler.java

                throw problemsService.getInternalReporter().rethrowing(ex, builder -> buildProblemFrom(ex, builder));
            }
            boolean success = task.call();
            diagnosticToProblemListener.printDiagnosticCounts();
            if (!success) {
                throw new CompilationFailedException(result);
            }
            return result;
        }
    
        @SuppressWarnings("DefaultCharset")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 14:50:33 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

         *                                ^
         * 1 error
         * 1 warning
         * </pre>
         *
         * @see com.sun.tools.javac.main.JavaCompiler#printCount(String, int)
         */
        void printDiagnosticCounts() {
            Log logger = Log.instance(new Context());
            printDiagnosticCount(logger, "error", errorCount);
            printDiagnosticCount(logger, "warn", warningCount);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top