Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for NOTCONSOLE (0.04 seconds)

  1. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/SnippetsTask.groovy

                                + "Can't be both CONSOLE and NOTCONSOLE")
                        }
                        snippet.console = true
                        return
                    }
                    if (line ==~ /\/\/\s*NOTCONSOLE\s*/) {
                        if (snippet == null) {
                            throw new InvalidUserDataException("$file:$lineNumber: "
                                + "NOTCONSOLE not paired with a snippet")
                        }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 20 10:08:26 GMT 2021
    - 17.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/RestTestsFromSnippetsTask.groovy

             * `// NOTCONSOLE` are not candidates. */
            if (snippet.console != null || snippet.testResponse) {
                return false
            }
            /* js snippets almost always should be marked with `// CONSOLE`. js
             * snippets that shouldn't be marked `// CONSOLE`, like examples for
             * js client, should always be marked with `// NOTCONSOLE`.
             *
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 19.5K bytes
    - Click Count (0)
Back to Top