Re: [crypto] New Release

2020-06-30 Thread Alex Remily
I'll see if I have any time this weekend, but this part is largely unfamiliar to me, so not sure how far I'll get even if I have the time to look at it. On Tue, Jun 30, 2020 at 4:59 PM Geoffrey Blake wrote: > > I think you're right Alex. I just happened to look at the Makefile > and saw this

[test] Bug in StringSubstitutor?

2020-06-30 Thread Gary Gregory
Hi All: I think we might have a bug in StringSubstitutor exemplified in a comment I just added in: org.apache.commons.text.StringSubstitutorTest.testReplaceWeirdPattens() doTestNoReplace("${"); // TODO this looks like a bug since a $ is removed but this is not a variable.

Re: [DBCP] poolPreparedStatements

2020-06-30 Thread Phil Steitz
> On Jun 30, 2020, at 2:36 PM, Gary Gregory wrote: > > How about clearStatementPoolOnReturn. +1 Phil > > You do not need to say "Prepared" in the name IMO since we only pool > prepared statements. The above name actual says what happens when. > > The full version of that name if you want

Re: [DBCP] poolPreparedStatements

2020-06-30 Thread Gary Gregory
How about clearStatementPoolOnReturn. You do not need to say "Prepared" in the name IMO since we only pool prepared statements. The above name actual says what happens when. The full version of that name if you want to be extra specific would be clearPreparedStatementPoolOnConnectionReturn.

Re: Apache Commons Geometry Release

2020-06-30 Thread Matt Juntunen
Alrighty! I will replace that model, save my tutorial changes for later, and see if I can start on a release later tonight. -Matt From: Gilles Sadowski Sent: Tuesday, June 30, 2020 2:35 PM To: Commons Developers List Subject: Re: Apache Commons Geometry Release

Re: [DBCP] poolPreparedStatements

2020-06-30 Thread Robert Paschek
​That would be quite difficult to handle on application side. Two connection pools means two datasources, which need to be selectively injected into the business logic. When the same business logic is handling 100 or 10 rows, it's difficult to find a place to decide which datasource to

Re: [DBCP] poolPreparedStatements

2020-06-30 Thread Robert Paschek
​Thanks for the implementation hints. I'm willing to look into this. Can you think of a better propertyname than limitPreparedStatementPoolToConnectionUse? While the meaning is clear (at least to me), it's also quite long. Robert From: Phil Steitz Sent: Dienstag, 30. Juni 2020 21:07 To:

Re: [crypto] New Release

2020-06-30 Thread Geoffrey Blake
I think you're right Alex. I just happened to look at the Makefile and saw this above the win64 target: # for cross-compilation on Ubuntu, install the g++-mingw-w64-x86-64 package We could potentially build everything but MacOS on 1 Ubuntu 16.04LTS box. Or even a 14.04 box if necessary.

RE: [Text] do we have number to word converter ?

2020-06-30 Thread Jason Pyeron
> -Original Message- > From: sebb > Sent: Tuesday, June 30, 2020 4:03 PM > > On Tue, 30 Jun 2020 at 19:47, Jason Pyeron wrote: > > > > > -Original Message- > > > From: Amey Jadiye Sent: Tuesday, June 30, 2020 2:04 PM > > > > > > Hi, > > > > > > Does anyone know if apache commons

Re: [Text] do we have number to word converter ?

2020-06-30 Thread Amey Jadiye
On Wed, Jul 1, 2020 at 1:18 AM Gary Gregory wrote: > I am not sure we should have something so language dependent here. Making > it plugable feels out of scope with one resource bundle per language and so > on. Might be worth seeing how java.time deals with this kind of issue if at > all. >

RE: [Text] do we have number to word converter ?

2020-06-30 Thread Jason Pyeron
> -Original Message- > From: Gary Gregory Sent: Tuesday, June 30, 2020 3:49 PM > > I am not sure we should have something so language dependent here. Making > it plugable feels out of scope with one resource bundle per language and so Meh, it has no home on the internet. Maybe

Re: [Text] do we have number to word converter ?

2020-06-30 Thread Melloware
On 6/30/2020 4:02 PM, sebb wrote: I think this is out of scope for Commons. Agreed this feels like a good Stack Overflow post that people can then take and modify for their own language or needs. - To unsubscribe,

Re: [Text] do we have number to word converter ?

2020-06-30 Thread sebb
On Tue, 30 Jun 2020 at 19:47, Jason Pyeron wrote: > > > -Original Message- > > From: Amey Jadiye Sent: Tuesday, June 30, 2020 2:04 PM > > > > Hi, > > > > Does anyone know if apache commons have any utility which converts number > > to words ? > > > > Ex. 3957 = Three Thousand Nine Hundred

Re: [Text] do we have number to word converter ?

2020-06-30 Thread Gary Gregory
I am not sure we should have something so language dependent here. Making it plugable feels out of scope with one resource bundle per language and so on. Might be worth seeing how java.time deals with this kind of issue if at all. Gary On Tue, Jun 30, 2020, 14:47 Jason Pyeron wrote: > >

Re: [DBCP] poolPreparedStatements

2020-06-30 Thread Phil Steitz
On 6/29/20 12:17 PM, Robert Paschek wrote: Hello, DBCP has a feature to pool PreparedStatements for the lifetime of a connection. This results in cursors being open and locks in the database for a long time, which could cause problems with administrative tasks in the database. That why I

RE: [Text] do we have number to word converter ?

2020-06-30 Thread Jason Pyeron
> -Original Message- > From: Amey Jadiye Sent: Tuesday, June 30, 2020 2:04 PM > > Hi, > > Does anyone know if apache commons have any utility which converts number > to words ? > > Ex. 3957 = Three Thousand Nine Hundred and fifty seven. If not, can dig up the one we made for united

Re: Apache Commons Geometry Release

2020-06-30 Thread Gilles Sadowski
Hello. Le mar. 30 juin 2020 à 18:29, Matt Juntunen a écrit : > > Hi Baljit, > > The only things keeping the release from happening at this time are > > 1. the legal issue of including a 3D model which I opened a ticket for in > JIRA yesterday [1], and It doesn't look like this site

[Text] do we have number to word converter ?

2020-06-30 Thread Amey Jadiye
Hi, Does anyone know if apache commons have any utility which converts number to words ? Ex. 3957 = Three Thousand Nine Hundred and fifty seven. Regards, Amey

Re: Apache Commons Geometry Release

2020-06-30 Thread Matt Juntunen
Hi Baljit, The only things keeping the release from happening at this time are 1. the legal issue of including a 3D model which I opened a ticket for in JIRA yesterday [1], and 2. the tutorial requested in GEOMETRY-95. The first issue I can solve easily by just not including that model

Re: Apache Commons Geometry Release

2020-06-30 Thread Singh, Baljit (GE Aviation, US)
Matt, Can someone release the beta? I can migrate our test environment, and report back if any new or known Math3 issues are still present. Regards, Baljit From: Matt Juntunen Date: Tuesday, May 26, 2020 at 9:57 AM To: "Singh, Baljit (GE Aviation, US)" , Gilles Sadowski ,

Re: JDK 15 is in Rampdown Phase One

2020-06-30 Thread Xeno Amess
Great, thanks! Rory O'Donnell 于2020年6月30日周二 下午4:25写道: > Hi Xeno, > > The bug has moved into the Java Bug System (JBS) - JDK-8248434 > > > I have added the "apache-maven-found" label to the bug. > > Rgds,Rory > On 26/06/2020 13:18, Rory

Re: JDK 15 is in Rampdown Phase One

2020-06-30 Thread Rory O'Donnell
Hi Xeno, The bug has moved into the Java Bug System (JBS) - JDK-8248434 I have added the "apache-maven-found" label to the bug. Rgds,Rory On 26/06/2020 13:18, Rory O'Donnell wrote: Thanks Xeno! Will let you know if anything else required.