Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 611 - 620 of 685 for testCase (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. tests/test_sse.py

    Sebastián Ramírez <******@****.***> 1772356912 -0800
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 09:21:52 GMT 2026
    - 9.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/skip/Skip.java

        private final String skipReason;
        private final String testName;
    
        public Skip(String testName, String skipReason) {
            this.skipReason = skipReason;
            this.testName = testName;
        }
    
        public Skip(String skipReason) {
            this.skipReason = skipReason;
            this.testName = "";
        }
    
        @Override
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 4K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectWarnings.java

        private final List<String> warnings;
        private final String testName;
        private final boolean isRegex;
    
        /**
         * @param warnings The warnings to inject
         * @param testName The testName to inject
         */
        public InjectWarnings(List<String> warnings, String testName) {
            this(false, warnings, testName);
        }
    
        /**
    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/match/RemoveMatch.java

        private final String removeKey;
        private final String testName;
    
        public RemoveMatch(String removeKey) {
            this.removeKey = removeKey;
            this.testName = null;
        }
    
        public RemoveMatch(String removeKey, String testName) {
            this.removeKey = removeKey;
            this.testName = testName;
        }
    
        @Override
        @Internal
        public String getKeyToFind() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/InjectAllowedWarnings.java

         * @param allowedWarnings The allowed warnings to inject
         * @param testName The testName to inject
         */
        public InjectAllowedWarnings(boolean isRegex, List<String> allowedWarnings, String testName) {
            this.isRegex = isRegex;
            this.allowedWarnings = allowedWarnings;
            this.testName = testName;
        }
    
        @Override
        public void transformTest(ObjectNode doNodeParent) {
    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)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/RemoveWarnings.java

        private String testName;
    
        /**
         * @param warnings The allowed warnings to inject
         */
        public RemoveWarnings(Set<String> warnings) {
            this.warnings = warnings;
        }
        /**
         * @param warnings The allowed warnings to inject
         * @param testName The testName to inject
         */
        public RemoveWarnings(Set<String> warnings, String testName) {
            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)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/RestCompatTestTransformTask.java

         * @param testName the testName to apply addition
         */
        public void addMatch(String subKey, Object value, String testName) {
            transformations.add(new AddMatch(subKey, MAPPER.convertValue(value, JsonNode.class), testName));
        }
    
        /**
         * Adds one or more warnings to the given test
         *
         * @param testName the test name to add the warning
    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)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/match/AddMatch.java

        private final String matchKey;
        private final String testName;
        private final JsonNode matchValue;
    
        public AddMatch(String matchKey, JsonNode matchValue, String testName) {
            this.matchKey = matchKey;
            this.matchValue = matchValue;
            this.testName = Objects.requireNonNull(testName, "adding matches is only supported for named tests");
        }
    
        @Override
    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)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/RestTestUtil.java

                testTask.setGroup(JavaBasePlugin.VERIFICATION_GROUP);
                testTask.setDescription("Runs the REST tests against an external cluster");
                project.getPlugins().withType(JavaPlugin.class, t ->
                    testTask.mustRunAfter(project.getTasks().named("test"))
                );
    
                testTask.setTestClassesDirs(sourceSet.getOutput().getClassesDirs());
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 16:26:11 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/text/ReplaceTextual.java

            this.keyToReplaceName = keyToReplaceName;
            this.valueToBeReplaced = valueToBeReplaced;
            this.replacementNode = replacementNode;
            this.testName = testName;
        }
    
        @Override
        @Internal
        public String getKeyToFind() {
            return keyToReplaceName;
        }
    
        @Override
        public String requiredChildKey() {
            return valueToBeReplaced;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 27 10:37:15 GMT 2021
    - 2.6K bytes
    - Click Count (0)
Back to Top