Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getEnableExternalDtdLoad (0.33 sec)

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

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

         * @return The property controlling whether to enable the ability to use custom DTD files
         *
         * @since 7.6
         */
        @Incubating
        @Optional
        @Input
        public Property<Boolean> getEnableExternalDtdLoad() {
            return enableExternalDtdLoad;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Checkstyle.java

         *
         * @return property to enable the use of external DTD files
         *
         * @since 7.6
         */
        @Incubating
        @Input
        public Property<Boolean> getEnableExternalDtdLoad() {
            return enableExternalDtdLoad;
        }
    
        /**
         * Whether the build should break when the verifications performed by this task fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:12 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top