Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for loadBuildSrcVersion (0.11 seconds)

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

  1. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/VersionPropertiesLoader.java

    public class VersionPropertiesLoader {
        static Properties loadBuildSrcVersion(File input, ProviderFactory providerFactory) throws IOException {
            Properties props = new Properties();
            InputStream is = new FileInputStream(input);
            try {
                props.load(is);
            } finally {
                is.close();
            }
            loadBuildSrcVersion(props, providerFactory);
            return props;
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Aug 09 07:39:30 GMT 2021
    - 2.7K bytes
    - Click Count (0)
Back to Top