Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setConsoleOutput (0.28 sec)

  1. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/LoggingConfiguration.java

         * Defaults to {@link ConsoleOutput#Auto}
         */
        ConsoleOutput getConsoleOutput();
    
        /**
         * Specifies the style of logging output that should be written to the console.
         */
        void setConsoleOutput(ConsoleOutput consoleOutput);
    
        /**
         * Specifies which type of warnings should be written to the console.
         * @since 4.5
         */
        WarningMode getWarningMode();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/DefaultLoggingConfiguration.java

            this.logLevel = logLevel;
        }
    
        @Override
        public ConsoleOutput getConsoleOutput() {
            return consoleOutput;
        }
    
        @Override
        public void setConsoleOutput(ConsoleOutput consoleOutput) {
            this.consoleOutput = consoleOutput;
        }
    
        @Override
        public WarningMode getWarningMode() {
            return warningMode;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdExtension.java

         */
        public boolean isConsoleOutput() {
            return consoleOutput;
        }
    
        /**
         * Whether or not to write PMD results to {@code System.out}.
         */
        public void setConsoleOutput(boolean consoleOutput) {
            this.consoleOutput = consoleOutput;
        }
    
        /**
         * Controls whether to use incremental analysis or not.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top