Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for buildBwc (0.13 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcSetupExtension.java

        private String minimumCompilerVersionPath(Version bwcVersion) {
            return (bwcVersion.onOrAfter(BUILD_TOOL_MINIMUM_VERSION)) ?
                    "build-tools-internal/" + MINIMUM_COMPILER_VERSION_PATH :
                    "buildSrc/" + MINIMUM_COMPILER_VERSION_PATH;
        }
    
        private static class IndentingOutputStream extends OutputStream {
    
            public final byte[] indent;
            private final OutputStream delegate;
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Aug 18 09:11:28 GMT 2021
    - 6.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/resources/forbidden/third-party-audit.txt

    # up-to-date, and that each module accurately documents the evil things
    # that its dependencies do.
    #
    # For more information, look at ThirdPartyAuditTask.groovy in buildSrc/
    
    #
    # Ruleset to fail on java internal apis, using this logic:
    # http://docs.oracle.com/javase/8/docs/api/java/lang/SecurityManager.html#checkPackageAccess-java.lang.String-
    #
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java

    /**
     * This class models the contents of a changelog YAML file. We validate it using a
     * JSON Schema, as well as some programmatic checks in {@link ValidateChangelogEntryTask}.
     * <ul>
     *   <li><code>buildSrc/src/main/resources/changelog-schema.json</code></li>
     *   <li><a href="https://json-schema.org/understanding-json-schema/">Understanding JSON Schema</a></li>
     * </ul>
     */
    public class ChangelogEntry {
        private Integer pr;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 9.3K bytes
    - Click Count (0)
Back to Top