Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for newInputStream (0.06 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java

            this.location = location;
            this.substitute = substitute;
        }
    
        public void load(Path location) throws IOException {
            try (InputStream is = Files.newInputStream(location)) {
                load(is);
            }
        }
    
        public void load(URL location) throws IOException {
            try (InputStream is = location.openStream()) {
                load(is);
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 09:03:48 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java

            this.location = location;
            this.substitute = substitute;
        }
    
        public void load(Path location) throws IOException {
            try (InputStream is = Files.newInputStream(location)) {
                load(is);
            }
        }
    
        public void load(URL location) throws IOException {
            try (InputStream is = location.openStream()) {
                load(is);
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 38.4K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    if (pluginXml.isFile()) {
                        pluginDescriptor = parsePluginDescriptor(
                                () -> Files.newInputStream(pluginXml.toPath()), plugin, pluginXml.getAbsolutePath());
                    }
                }
    
                if (pluginDescriptor == null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

         * @throws FessSystemException if the properties file cannot be parsed.
         */
        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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  5. 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, InputSource.of(extensionsFile))
                                .getExtensions();
                    }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
Back to top