Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for withExactBigDecimals (0.33 seconds)

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

     */
    public class AddMatch implements RestTestTransformByParentArray {
        private static JsonNodeFactory jsonNodeFactory = JsonNodeFactory.withExactBigDecimals(false);
        private final String matchKey;
        private final String testName;
        private final JsonNode matchValue;
    
        public AddMatch(String matchKey, JsonNode matchValue, String testName) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.5K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectAllowedWarnings.java

     */
    public class InjectAllowedWarnings extends FeatureInjector implements RestTestTransformByParentObject {
    
        private static JsonNodeFactory jsonNodeFactory = JsonNodeFactory.withExactBigDecimals(false);
    
        private final List<String> allowedWarnings;
        private String testName;
        private final boolean isRegex;
    
        /**
         * @param allowedWarnings The allowed warnings to inject
         */
    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/test/rest/transform/warnings/InjectWarnings.java

     */
    public class InjectWarnings extends FeatureInjector implements RestTestTransformByParentObject {
    
        private static JsonNodeFactory jsonNodeFactory = JsonNodeFactory.withExactBigDecimals(false);
    
        private final List<String> warnings;
        private final String testName;
        private final boolean isRegex;
    
        /**
         * @param warnings The warnings to inject
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/skip/Skip.java

     */
    public class Skip implements RestTestTransformGlobalSetup, RestTestTransformByParentObject {
    
        private static JsonNodeFactory jsonNodeFactory = JsonNodeFactory.withExactBigDecimals(false);
    
        private final String skipReason;
        private final String testName;
    
        public Skip(String testName, String skipReason) {
            this.skipReason = skipReason;
            this.testName = testName;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 4K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/headers/InjectHeaders.java

     */
    public class InjectHeaders extends FeatureInjector implements RestTestTransformByParentObject {
    
        private static JsonNodeFactory jsonNodeFactory = JsonNodeFactory.withExactBigDecimals(false);
    
        private final Map<String, String> headers;
        private final Set<Function<ObjectNode, Boolean>> applyConditions;
    
        /**
         * @param headers The headers to inject
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 07 15:48:06 GMT 2021
    - 3K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/feature/FeatureInjector.java

     */
    public abstract class FeatureInjector implements RestTestTransformGlobalSetup, RestTestTransformGlobalTeardown {
    
        private static JsonNodeFactory jsonNodeFactory = JsonNodeFactory.withExactBigDecimals(false);
    
        @Override
        public ObjectNode transformSetup(ObjectNode setupNodeParent) {
            // check to ensure that headers feature does not already exist
            if (setupNodeParent != null) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 5.8K bytes
    - Click Count (0)
Back to Top