Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for warnings_regex (0.08 seconds)

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

            List<ObjectNode> expectedAll = READER.readValues(
            """
            ---
            setup:
            - skip:
                features:
                - "headers"
                - "warnings"
                - "warnings_regex"
                - "allowed_warnings"
                - "allowed_warnings_regex"
            ---
            one:
            - do:
                do_.some.key_that_was_replaced:
                  index: "test"
    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/rest/compat/RestCompatTestTransformTask.java

         *
         * @param testName      the test name to add the regex warning
         * @param warningsRegex the regex warning(s) to add
         */
        public void addWarningRegex(String testName, String... warningsRegex) {
            transformations.add(new InjectWarnings(true, Arrays.asList(warningsRegex), testName));
        }
    
        /**
         * Removes one or more warnings
         *
    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