Re: 256 MB static buffer in the feature launcher

2022-07-18 Thread Robert Munteanu
On Mon, 2022-07-18 at 15:02 +0200, Konrad Windszus wrote: > https://docs.oracle.com/javase/7/docs/api/java/nio/file/Files.html#copy(java.io.InputStream,%20java.nio.file.Path,%20java.nio.file.CopyOption...) >  < >

Re: 256 MB static buffer in the feature launcher

2022-07-18 Thread Konrad Windszus
https://docs.oracle.com/javase/7/docs/api/java/nio/file/Files.html#copy(java.io.InputStream,%20java.nio.file.Path,%20java.nio.file.CopyOption...)

Re: 256 MB static buffer in the feature launcher

2022-07-18 Thread Robert Munteanu
Hi, On Sat, 2022-07-09 at 09:28 -0700, Eric Norman wrote: > I'd probably try to get rid of that buffer variable and just use > java.nio.file.Files#copy to copy the inputstream to the target path. That is a good idea. Unfortunately, we still target Java 8 with the feature launcher and the

Re: 256 MB static buffer in the feature launcher

2022-07-09 Thread Eric Norman
I'd probably try to get rid of that buffer variable and just use java.nio.file.Files#copy to copy the inputstream to the target path. Regards, -Eric On Sat, Jul 9, 2022 at 6:28 AM Robert Munteanu wrote: > Hi, > > I was trying to run a feature model based application with slightly > less memory