Re: [lang] org.apache.commons.lang3.concurrent.Locks.Lock

2020-06-29 Thread Rob Tompkins
At first look, I’m a little surprised we’re trying to take on this functionality. Has anyone reached out to the JDK guys to see if they’d be interested in having it in the JDK? That said, if we approach it from that path, we would lose the functionality in older versions of java. So maybe I jus

Announcing ApacheCon @Home 2020

2020-06-29 Thread Rich Bowen
Hi, Apache enthusiast! (You’re receiving this because you’re subscribed to one or more dev or user mailing lists for an Apache Software Foundation project.) The ApacheCon Planners and the Apache Software Foundation are pleased to announce that ApacheCon @Home will be held online, September 29

Re: [lang] org.apache.commons.lang3.concurrent.Locks.Lock

2020-06-29 Thread Gary Gregory
I'm not sure talking to the JDK folks is helpful IMO. We are still targeting Java 8. The customers I deal with are migrating from 8 to 11, and Java 11 is not everywhere our customers are. So talking about something that might end up in Java... 25 seems to be not in our user's best or immediate inte

Re: [lang] org.apache.commons.lang3.concurrent.Locks.Lock

2020-06-29 Thread Xeno Amess
soemtimes I really wish to rewrite/add some functions in jdk directly... especially for reusing some package private static functions... Gary Gregory 于2020年6月30日周二 上午12:01写道: > I'm not sure talking to the JDK folks is helpful IMO. We are still > targeting Java 8. The customers I deal with are mi

Re: [lang] org.apache.commons.lang3.concurrent.Locks.Lock

2020-06-29 Thread Matt Sicker
Now that starts to sound like Apache Groovy or Kotlin. On Mon, 29 Jun 2020 at 11:58, Xeno Amess wrote: > > soemtimes I really wish to rewrite/add some functions in jdk directly... > especially for reusing some package private static functions... > > Gary Gregory 于2020年6月30日周二 上午12:01写道: > > > I'

[geometry] 3D Model License

2020-06-29 Thread Matt Juntunen
Hello, I'm adding an OBJ model file of the Utah teapot [1] (a standard 3D test model) to the project for use in unit tests and code examples. The file I used was generated by Nate Morrical at the University of Utah [2] from the original surface descriptions from Martin Newell in 1975. Neither t

Re: [geometry] 3D Model License

2020-06-29 Thread Gary Gregory
Please ask on @legal. Gary On Mon, Jun 29, 2020, 14:49 Matt Juntunen wrote: > Hello, > > I'm adding an OBJ model file of the Utah teapot [1] (a standard 3D test > model) to the project for use in unit tests and code examples. The file I > used was generated by Nate Morrical at the University of

Re: [geometry] 3D Model License

2020-06-29 Thread Gary Gregory
Oh, and let's not add it to the repo until we get clearance from legal... Gary On Mon, Jun 29, 2020, 14:49 Matt Juntunen wrote: > Hello, > > I'm adding an OBJ model file of the Utah teapot [1] (a standard 3D test > model) to the project for use in unit tests and code examples. The file I > used

Re: [geometry] 3D Model License

2020-06-29 Thread Gary Gregory
You can look here for similar issues https://issues.apache.org/jira/projects/LEGAL/issues/ On Mon, Jun 29, 2020, 15:00 Gary Gregory wrote: > Oh, and let's not add it to the repo until we get clearance from legal... > > Gary > > On Mon, Jun 29, 2020, 14:49 Matt Juntunen > wrote: > >> Hello, >> >

Re: [geometry] 3D Model License

2020-06-29 Thread Matt Juntunen
Thanks. I've created LEGAL-525 [1]. The file is only in my github dev branch for now. I'll hold off on merging until this is resolved. -Matt [1] https://issues.apache.org/jira/projects/LEGAL/issues/LEGAL-525 From: Gary Gregory Sent: Monday, June 29, 2020 3:15 PM

[DBCP] poolPreparedStatements

2020-06-29 Thread Robert Paschek
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 would prefer this pool to be more short-living, th

Re: [DBCP] poolPreparedStatements

2020-06-29 Thread Gary Gregory
You can do this today by using two connection pools, one configured with statement pooling, and the other not (which is the default). Gary On Mon, Jun 29, 2020, 16:36 Robert Paschek wrote: > Hello, > > DBCP has a feature to pool PreparedStatements for the lifetime of a > connection. > This resu