Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 16 of 16 for asciidoc (0.05 seconds)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBadMultiLangSnippets.java

                gatherBadSnippetsInFile(file, errors);
            });
    
            if (!errors.isEmpty()) {
                StringBuilder sb = new StringBuilder("Found reversed multi-language snippet order in AsciiDoc files:\n");
                for (Map.Entry<File, List<Error>> e : errors.entrySet()) {
                    sb.append(" - ").append(e.getKey().getPath()).append("\n");
                    for (Error err : e.getValue()) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Aug 29 10:12:17 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/RestTestsFromSnippetsTask.groovy

                Path dest = outputRoot().toPath().resolve(test.path)
                // Replace the extension
                String fileName = dest.getName(dest.nameCount - 1)
                dest = dest.parent.resolve(fileName.replace('.asciidoc', '.yml'))
    
                // Now setup the writer
                Files.createDirectories(dest.parent)
                current = dest.newPrintWriter('UTF-8')
            }
    
            void finishLastTest() {
    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)
  3. CONTRIBUTING.md

    including but not limited to: User Manual, DSL Reference and Javadoc.
    This information is used to generate documentation for each Gradle version
    on [docs.gradle.org](https://docs.gradle.org/).
    The documentation is mostly implemented in Asciidoc
    though we use GitHub-flavored Markdown for internal documentation too.
    
    You can generate docs by running `./gradlew :docs:docs`.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseToolsPlugin.java

                task.setReleaseNotesIndexFile(projectDirectory.file("docs/reference/release-notes.asciidoc"));
    
                task.setReleaseNotesTemplate(projectDirectory.file(RESOURCES + "templates/release-notes.asciidoc"));
                task.setReleaseNotesFile(
                    projectDirectory.file(String.format("docs/reference/release-notes/%d.%d.asciidoc", version.getMajor(), version.getMinor()))
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 10:57:02 GMT 2021
    - 4.8K bytes
    - Click Count (0)
  5. CONTRIBUTING.md

    ### Tips for code changes
    Following these tips prior to raising a pull request will speed up the review
    cycle.
    
    * Add appropriate unit tests (details on writing tests can be found in the
      [TESTING](TESTING.asciidoc) file)
    * Add integration tests, if applicable
    * Make sure the code you add follows the [formatting guidelines](#java-language-formatting-guidelines)
    * Lines that are not part of your change should not be edited (e.g. don't format
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 07:32:01 GMT 2021
    - 36.5K bytes
    - Click Count (0)
  6. Vagrantfile

    # -*- mode: ruby -*-
    # vim: ft=ruby ts=2 sw=2 sts=2 et:
    
    # This Vagrantfile exists to test packaging. Read more about its use in the
    # vagrant section in TESTING.asciidoc.
    
    # Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
    # or more contributor license agreements. Licensed under the Elastic License
    # 2.0 and the Server Side Public License, v 1; you may not use this file except
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
Back to Top