Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getElasticsearch (0.17 seconds)

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

                        final Path noticePath = checkExtraction.get()
                            .getDestinationDir()
                            .toPath()
                            .resolve("elasticsearch-" + VersionProperties.getElasticsearch() + "/modules/x-pack-ml/NOTICE.txt");
                        final List<String> actualLines;
                        try {
                            actualLines = Files.readAllLines(noticePath);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.6K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GenerateReleaseNotesTask.java

            if (needsGitTags(VersionProperties.getElasticsearch())) {
                findAndUpdateUpstreamRemote(gitWrapper);
            }
    
            LOGGER.info("Finding changelog files...");
    
            final Map<QualifiedVersion, Set<File>> filesByVersion = partitionFilesByVersion(
                gitWrapper,
                VersionProperties.getElasticsearch(),
                this.changelogs.getFiles()
            );
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 12.9K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/DistroTestPlugin.java

                ));
            }
    
            for (Architecture architecture : Architecture.values()) {
                for (Platform platform : Arrays.asList(Platform.LINUX, Platform.WINDOWS)) {
                    currentDistros.add(
                        createDistro(distributions, architecture, ARCHIVE, platform, true, VersionProperties.getElasticsearch())
                    );
                }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 28 21:31:21 GMT 2021
    - 23.1K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcVersions.java

                this.gradleProjectPath = gradleProjectPath;
            }
        }
    
        public BwcVersions(List<String> versionLines) {
            this(versionLines, Version.fromString(VersionProperties.getElasticsearch()));
        }
    
        protected BwcVersions(List<String> versionLines, Version currentVersionProperty) {
            this(
                versionLines.stream()
                    .map(LINE_PATTERN::matcher)
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 16.8K bytes
    - Click Count (0)
Back to Top