Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for removeWarning (0.06 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/RestCompatTestTransformTask.java

        }
    
        /**
         * Removes one or more warnings
         *
         * @param warnings the warning(s) to remove
         */
        public void removeWarning(String... warnings) {
            transformations.add(new RemoveWarnings(Set.copyOf(Arrays.asList(warnings))));
        }
    
        /**
         * Removes one or more warnings
         *
         * @param warnings the warning(s) to remove
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 22.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy

                  task.addAllowedWarning("added allowed warning")
                  task.addAllowedWarningRegex("added allowed warning regex .* [0-9]")
                  task.removeWarning("one", "warning to remove")
                  task.replaceIsTrue("value_to_replace", "replaced_value")
                  task.replaceIsFalse("value_to_replace", "replaced_value")
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 16.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/RemoveWarnings.java

     * no difference.
     */
    
    public class RemoveWarnings implements RestTestTransformByParentObject {
    
        private final Set<String> warnings;
        private String testName;
    
        /**
         * @param warnings The allowed warnings to inject
         */
        public RemoveWarnings(Set<String> warnings) {
            this.warnings = warnings;
        }
        /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 15 08:50:42 GMT 2021
    - 2.9K bytes
    - Click Count (0)
Back to Top