Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getIdentifier (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            for (LicenseMatcher matcher : matchers) {
                boolean matches = matcher.matches(licenseFile);
                if (matches) {
                    return new LicenseInfo(matcher.getIdentifier(), matcher.spdxLicense, matcher.sourceRedistributionRequired);
                }
            }
    
            throw new IllegalStateException("Unknown license for license file: " + licenseFile);
        }
    
    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)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/DependenciesInfoTask.java

                licenseType = licenseInfo.getIdentifier()
                    + ";"
                    + license.getCanonicalPath().replaceFirst(".*/elasticsearch/", githubBaseURL)
                    + ",";
            } else {
                licenseType = licenseInfo.getIdentifier() + ",";
            }
    
            if (licenseInfo.isSourceRedistributionRequired()) {
    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)
Back to Top