Re: [Math] How to update the web site?

2024-03-09 Thread Gilles Sadowski
Le sam. 9 mars 2024 à 03:57, Gary Gregory a écrit : > > It looks like the Maven SCM plugin wants your password. Did you > provide it on the command line? The error message (cf. below) says: "interactive prompting was disabled". No prompt has been asking to supply a login and password. Gilles >

Re: [VOTE] Release Apache Commons Configuration 2.10.0 based on RC1

2024-03-09 Thread Gary Gregory
My +1 Gary On Wed, Mar 6, 2024 at 9:13 AM Gary Gregory wrote: > > We have fixed a few bugs and added some enhancements since Apache > Commons Configuration 2.9.0 was released, so I would like to release > Apache Commons Configuration 2.10.0. > > Apache Commons Configuration 2.10.0 RC1 is availab

[ANNOUNCE] Apache Commons Compress Version 1.26.1

2024-03-09 Thread Gary Gregory
The Apache Commons team is pleased to announce Apache Commons Compress Version 1.26.1. Apache Commons Compress defines an API for working with compression and archive formats. These include bzip2, gzip, pack200, LZMA, XZ, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, Brotli, Zstanda

[COMPRESS] Help needed to fix COMPRESS-651

2024-03-09 Thread Gary Gregory
If you want to help in Commons COMPRESS-land, please see https://issues.apache.org/jira/browse/COMPRESS-651 TY, Gary - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.a

Re: [COMPRESS] Help needed to fix COMPRESS-651

2024-03-09 Thread Peter Hull
On Sat, 9 Mar 2024 at 14:33, Gary Gregory wrote: > > If you want to help in Commons COMPRESS-land, please see > https://issues.apache.org/jira/browse/COMPRESS-651 I swear I looked into this a while ago, and the issue was pbzip2 works by compressing the source in chunks, in parallel, then cat'ing t

Re: [COMPRESS] Help needed to fix COMPRESS-651

2024-03-09 Thread Peter Hull
On Sat, 9 Mar 2024 at 18:19, Peter Hull wrote: > There's another constructor for BZip2CompressorInputStream which > allows for this, it's not the default. Specifically, the patch below makes the test pass. Whether this should be default for the one-arg constructor is a matter for discussion. Peter

Re: [COMPRESS] Help needed to fix COMPRESS-651

2024-03-09 Thread Gary Gregory
Thanks for the reminder, Peter. That rings a bell... vaguely. Can this test pass by configuring the input stream differently? Gary On Sat, Mar 9, 2024 at 1:21 PM Peter Hull wrote: > > On Sat, 9 Mar 2024 at 14:33, Gary Gregory wrote: > > > > If you want to help in Commons COMPRESS-land, please

Re: [COMPRESS] Help needed to fix COMPRESS-651

2024-03-09 Thread Gary Gregory
Thank you Peter for the patch. Now in git master. As to whether we should change the default, I don't know if we have the right kind of test that would detect if changing the default causes a problem. Changing the default to true (locally) causes the build to XXX but that does not mean we have th

[RDF] adding Quads - Bulk

2024-03-09 Thread Fred Hauschel
Hi there, it looks like I am bound to the interface org.apache.commons.rdf.api.GraphLike#add. And in the RDF4J implementation, a new connection to the repository is established for each quad/triple. This is not very useful. Am I missing another possibility or am I the first to have a problem