Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for replaceIsFalse (0.12 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/text/ReplaceIsFalse.java

    import com.fasterxml.jackson.databind.node.TextNode;
    
    public class ReplaceIsFalse extends ReplaceTextual {
        public ReplaceIsFalse(String valueToBeReplaced, TextNode replacementNode) {
            super("is_false", valueToBeReplaced, replacementNode);
        }
    
        public ReplaceIsFalse(String valueToBeReplaced, TextNode replacementNode, String testName) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 859 bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/RestCompatTestTransformTask.java

         *
         * @param oldValue the value that has to match and will be replaced
         * @param newValue the value used in the replacement
         */
        public void replaceIsFalse(String oldValue, Object newValue) {
            transformations.add(new ReplaceIsFalse(oldValue, MAPPER.convertValue(newValue, TextNode.class)));
        }
    
        /**
         * Replaces all the values of a is_false assertion for given REST test.
    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)
  3. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy

                  task.removeWarning("one", "warning to remove")
                  task.replaceIsTrue("value_to_replace", "replaced_value")
                  task.replaceIsFalse("value_to_replace", "replaced_value")
                  task.replaceKeyInDo("do_.some.key_to_replace", "do_.some.key_that_was_replaced")
    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)
Back to Top