Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for license_type (0.28 seconds)

  1. build-tools-internal/src/main/groovy/elasticsearch.run.gradle

          String licenseType = providers.systemProperty("run.license_type").orElse("basic").forUseAtConfigurationTime().get()
          if (licenseType == 'trial') {
            setting 'xpack.ml.enabled', 'true'
            setting 'xpack.graph.enabled', 'true'
            setting 'xpack.watcher.enabled', 'true'
            setting 'xpack.license.self_generated.type', 'trial'
          } else if (licenseType != 'basic') {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 23 07:45:59 GMT 2021
    - 1.8K bytes
    - Click Count (0)
  2. TESTING.asciidoc

    ==== License type
    
    By default a node is started with the `basic` license type.
    In order to start with a different license type use the `-Drun.license_type` argument.
    
    In order to start a node with a trial license execute the following command:
    
    -------------------------------------
    ./gradlew run -Drun.license_type=trial
    -------------------------------------
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/DependenciesInfoTask.java

                final String licenseType = getLicenseType(dep.getGroup(), dependencyName);
                output.append(dep.getGroup() + ":" + dep.getName() + "," + dep.getVersion() + "," + url + "," + licenseType + "\n");
            }
    
            Files.write(outputFile.toPath(), output.toString().getBytes("UTF-8"), StandardOpenOption.CREATE);
        }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 8.6K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/LicenseAnalyzer.java

                    "available at www.elastic.co/elastic-geoip-database-service-terms.").replaceAll("\\s+", "\\\\s*"), Pattern.DOTALL))};
    
    
        public static LicenseInfo licenseType(File licenseFile) {
            for (LicenseMatcher matcher : matchers) {
                boolean matches = matcher.matches(licenseFile);
                if (matches) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 27 00:12:58 GMT 2021
    - 12.8K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/DependencyLicensesTask.java

                checkFile(dependencyName, jarName, notices, "NOTICE");
    
                File licenseFile = new File(licensesDir, getFileName(dependencyName, licenses, "LICENSE"));
                LicenseInfo licenseInfo = LicenseAnalyzer.licenseType(licenseFile);
                if (licenseInfo.isSourceRedistributionRequired()) {
                    checkFile(dependencyName, jarName, sources, "SOURCES");
                }
            }
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jul 26 12:16:14 GMT 2021
    - 14.3K bytes
    - Click Count (0)
Back to Top