Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CheckstyleActionParameters.java

    public interface CheckstyleActionParameters extends AntWorkParameters {
        RegularFileProperty getConfig();
    
        ConfigurableFileCollection getSource();
    
        Property<Integer> getMaxErrors();
    
        Property<Integer> getMaxWarnings();
    
        Property<Boolean> getIgnoreFailures();
    
        DirectoryProperty getConfigDirectory();
    
        Property<Boolean> getShowViolations();
    
        Property<Boolean> getIsXmlRequired();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstylePlugin.java

            taskMapping.map("maxErrors", (Callable<Integer>) () -> extension.getMaxErrors());
            taskMapping.map("maxWarnings", (Callable<Integer>) () -> extension.getMaxWarnings());
            task.getConfigDirectory().convention(extension.getConfigDirectory());
            task.getEnableExternalDtdLoad().convention(extension.getEnableExternalDtdLoad());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstyleExtension.java

         * <p>
         * Example: maxWarnings = 1000
         *
         * @return the maximum number of warnings allowed
         * @since 3.4
         */
        public int getMaxWarnings() {
            return maxWarnings;
        }
    
        /**
         * Set the maximum number of warnings that are tolerated before breaking the build.
         *
         * @param maxWarnings number of warnings allowed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top