Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for newInputStream (0.08 sec)

  1. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        protected void parseProjectProperties(final Path propPath) {
            try (final InputStream in = Files.newInputStream(propPath)) {
                final Properties prop = new Properties();
                prop.load(in);
                version = prop.getProperty("fess.version", "0.0.0");
                final String[] values = version.split("\\.");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            if (extensionsFile != null) {
                Path extensionsPath = Path.of(extensionsFile);
                if (Files.exists(extensionsPath)) {
                    try (InputStream is = Files.newInputStream(extensionsPath)) {
                        return new CoreExtensionsStaxReader().read(is, true).getExtensions();
                    }
                }
            }
            return List.of();
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
Back to top