Re: [Compress]Add some easy-to-use APIs for Zip and other archivers

2020-03-09 Thread Stefan Bodewig
On 2020-03-09, Peter Lee wrote: > I'm thinking about adding some easy-to-use APIs for Zip. Currently I got > some ideas : > 1. Add extractAll(String targetPath) in ZipFile : extract all the files to > the specific directory. > 2. Add getInputStream(String fileName) in ZipFile : get the input

Re: [VOTE] Release Apache Commons Configuration 2.7 based on RC2

2020-03-09 Thread Stefan Bodewig
On 2020-03-09, Rob Tompkins wrote: > We have fixed quite a few bugs and added some significant enhancements since > Apache Commons Configuration 2.6 was released, so I would like to release > Apache Commons Configuration 2.7. +1 Stefan

Re: [collections] Bloom filters

2020-03-09 Thread Alex Herbert
I was going to modify the BloomFilter interface as discussed on this thread. However before that I have made some changes to the current code to tidy it up. PR is [1]. The changes target the following: 1. Test coverage. Coverage is now close to 100%. The AbstractBloomFilterTest was modified to

Re: [VOTE] Release Apache Commons Configuration 2.7 based on RC2

2020-03-09 Thread Oliver Heger
+1 Build works fine with Java 8, artifacts and site look good. Oliver Am 09.03.20 um 15:55 schrieb Rob Tompkins: > We have fixed quite a few bugs and added some significant enhancements since > Apache Commons Configuration 2.6 was released, so I would like to release > Apache Commons

Re: [releases,dbutils] There are 4 staged copies of dbutils-1.8

2020-03-09 Thread Rob Tompkins
Cool. I like the forward progress. Pardon my being remiss on validation. I can also give it a look tomorrow. -Rob > On Mar 9, 2020, at 3:59 PM, Carl Hall wrote: > > Wonderful! Thanks so much. > >> On Mar 9, 2020, at 12:29 PM, Bernd Eckenfels wrote: >> >> Hello Carl, just FYI I sent myself

Re: [releases,dbutils] There are 4 staged copies of dbutils-1.8

2020-03-09 Thread Carl Hall
Wonderful! Thanks so much. > On Mar 9, 2020, at 12:29 PM, Bernd Eckenfels wrote: > > Hello Carl, just FYI I sent myself an reminder to look into the release > tomorow. I hope I can find the time. If it works out I can cast a PMC+1. > -- > http://bernd.eckenfels.net >

Re: [releases,dbutils] There are 4 staged copies of dbutils-1.8

2020-03-09 Thread Bernd Eckenfels
Hello Carl, just FYI I sent myself an reminder to look into the release tomorow. I hope I can find the time. If it works out I can cast a PMC+1. -- http://bernd.eckenfels.net Von: Carl Hall Gesendet: Monday, March 9, 2020 8:18:46 PM An: Commons List Betreff:

Re: [releases,dbutils] There are 4 staged copies of dbutils-1.8

2020-03-09 Thread Carl Hall
Hey, Rob. We're about 6 weeks into a release vote for DbUtils. Once we have 2 more PMC votes, I can close out the release. I'll be sure to clean up everything in the aftermath. > On Mar 9, 2020, at 7:39 AM, Rob Tompkins wrote: > > Just a reminder that we have 4 staged copies of dbutils 1.8.

Re: [VOTE] Release Apache Commons Configuration 2.7 based on RC2

2020-03-09 Thread Gary Gregory
+1 The binary zip contains a jar that says it is built with Java 8 (good). My review is based on the git tag. The site's JaCoCo report is empty: https://dist.apache.org/repos/dist/dev/commons/configuration/2.7-RC2/site/jacoco-aggregate/index.html Apache RAT check OK. JapiCmp check OK. OS:

Re: [VOTE] Release Apache Commons Configuration 2.7 based on RC2

2020-03-09 Thread Jochen Wiedmann
+1 (Binding) On Mon, Mar 9, 2020 at 3:55 PM Rob Tompkins wrote: > > We have fixed quite a few bugs and added some significant enhancements since > Apache Commons Configuration 2.6 was released, so I would like to release > Apache Commons Configuration 2.7. > > Apache Commons Configuration 2.7

[math]Improvement: The generic parameter of ClusterRanking can move onto method

2020-03-09 Thread chentao...@qq.com
Hi,     I have created a JIRA issue for this suggestion:  https://issues.apache.org/jira/projects/MATH/issues/MATH-1522     I think the generic parameter on class "ClusterRanking" is unnecessary, it is redundancy when define a variable, and hard to reuse(it could be): ```java ClusterRanking

[VOTE] Release Apache Commons Configuration 2.7 based on RC2

2020-03-09 Thread Rob Tompkins
We have fixed quite a few bugs and added some significant enhancements since Apache Commons Configuration 2.6 was released, so I would like to release Apache Commons Configuration 2.7. Apache Commons Configuration 2.7 RC2 is available for review here:

[releases,dbutils] There are 4 staged copies of dbutils-1.8

2020-03-09 Thread Rob Tompkins
Just a reminder that we have 4 staged copies of dbutils 1.8. Seems like we’d only need 1 copy, but given that they were staged in early January I wonder if we still need them at all. Thoughts? I plan on leaving them because I don’t like to mess with the state of the projects that I don’t have

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

2020-03-09 Thread Gary Gregory
On Sun, Mar 8, 2020 at 11:25 PM Rob Tompkins wrote: > Pardon my not getting to it tonight. It’s first in the list for the > morning. > It's all good. Better done right than quick :-) Gary > > -Rob > > > On Mar 8, 2020, at 5:18 PM, Rob Tompkins wrote: > > > > Thanks for that set of eyes.

[Compress]Add some easy-to-use APIs for Zip and other archivers

2020-03-09 Thread Peter Lee
Hi all. I'm thinking about adding some easy-to-use APIs for Zip. Currently I got some ideas : 1. Add extractAll(String targetPath) in ZipFile : extract all the files to the specific directory. 2. Add getInputStream(String fileName) in ZipFile : get the input stream for a file by name. And I

Re: [Compress] Zip Files: History, Explanation and Implementation

2020-03-09 Thread Peter Lee
> Compress contains a pure Java Deflate64 deflater, which also is a > "normal" deflater by defintion. You may want to take a look at it. Thank you so much! I will look into that. I'm doing this out of my interest - I have read many of compression algorithms, I just want to have a try on myself.