Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for allowed_warnings_regex (0.11 seconds)

  1. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy

            ---
            setup:
            - skip:
                features:
                - "headers"
                - "warnings"
                - "warnings_regex"
                - "allowed_warnings"
                - "allowed_warnings_regex"
            ---
            one:
            - do:
                do_.some.key_that_was_replaced:
                  index: "test"
                  id: 1
                  keyvalue : replacedkeyvalue
    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)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectAllowedWarnings.java

        }
    
        @Override
        @Internal
        public String getKeyToFind() {
            return "do";
        }
    
        @Override
        @Input
        public String getSkipFeatureName() {
            return isRegex ? "allowed_warnings_regex" : "allowed_warnings";
        }
    
        @Input
        public List<String> getAllowedWarnings() {
            return allowedWarnings;
        }
    
        @Override
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 15 08:50:42 GMT 2021
    - 3.3K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/RestCompatTestTransformTask.java

         *
         * @param allowedWarningsRegex the regex warning(s) to add
         */
        public void addAllowedWarningRegex(String... allowedWarningsRegex) {
            transformations.add(new InjectAllowedWarnings(true, Arrays.asList(allowedWarningsRegex)));
        }
    
        /**
         * Adds one or more allowed regular expression warnings
         *
         * @param allowedWarningsRegex the regex warning(s) to add
    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)
Back to Top