Re: [pool] close(). Closeable, and AutoCloseable

2017-10-31 Thread Matt Sicker
On 31 October 2017 at 04:42, Mark Thomas wrote: > > If we implement Closeable then we get AutoCloseable for free. > With an IOException as its throwable instead of a more generic Exception, though of course, that can be overridden. -- Matt Sicker

Re: [dbcp] update to pool 2.4.3.

2017-10-31 Thread Matt Sicker
n since a StackWalker version of CallStack could be implemented for Java 9, so it would be pointless to fully revert the change. -- Matt Sicker

Re: [dbcp] update to pool 2.4.3.

2017-10-30 Thread Matt Sicker
to restore the behavior from we > had in 2.4.2? > > Gary > > On Sun, Oct 29, 2017 at 2:32 PM, Matt Sicker wrote: > > > It's been a while since I looked at that, but from what I can tell, if > the > > method name needs to be tracked as well as the class name, then

Re: [dbcp] update to pool 2.4.3.

2017-10-29 Thread Matt Sicker
agree it's a good solution. > >> > > I'm not sure it is a good solution. I need to look at what is going on in > > more detail but if the method information has been lost then that will > make > > tracking down the root cause of a pool leak much, much harder. > > > > I guess this was caused by: > > [POOL-320]: Use more efficient stack walking mechanisms for usage tracking > > https://github.com/apache/commons-pool/commit/3994baf0f3ce59 > b73bd36e869320275d757d1884 > > > Matt, > > Any thoughts on the missing method names? > > Gary > -- Matt Sicker

Re: [VOTE] Release Apache Commons JCS 2.2.1 (roll 2)

2017-10-24 Thread Matt Sicker
copy of an RC tag to make the final release tag makes perfect sense in that context. -- Matt Sicker

Re: [pool] Java 7 and release

2017-10-24 Thread Matt Sicker
On 24 October 2017 at 06:44, Mark Thomas wrote: > On 24/10/17 05:56, Matt Sicker wrote: > > Go for it! Though perhaps some quick feedback from Tomcat would be good > > since they're the primary Apache project that uses the library. > > I assume we are talking about Pool

Re: [pool] Java 7 and release

2017-10-23 Thread Matt Sicker
017 at 4:25 PM, Gary Gregory > wrote: > > > Wow, 2 years since the last release of [pool]. I plan on updating to Java > > 7 and push out a release. > > > > Gary > > > -- Matt Sicker

Re: [text] always use static imports for assertion methods

2017-10-15 Thread Matt Sicker
>>>> >>> Why? >>> >>> Gilles >>> >>> >>>> [...] >>>> >>> >>> > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [LANG] Add module-info.java?

2017-10-14 Thread Matt Sicker
d, the > >> module-info.class file would have to be recreated and re-checked in, > >> an error-prone process. > >> > >> Stephen > >> > >> --------- > >> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > >> For additional commands, e-mail: dev-h...@commons.apache.org > >> > >> > > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: commons-collections git commit: MapUtilsTest: fix order of expected and actual parameter in assertions (closes #32)

2017-10-14 Thread Matt Sicker
>>> > >>>> @@ -1077,11 +1077,11 @@ public class MapUtilsTest extends > >>>> AbstractAvailableLocalesTest { > >>>> final Map in = new HashMap<>(); > >>>> in.put("key", "str"); > >>>> > >>>> -assertEquals(MapUtils.getString(in,"key", "defualt"), > "str"); > >>>> -assertEquals(MapUtils.getString(in,"key"), "str"); > >>>> -assertEquals(MapUtils.getString(null,"key"), null); > >>>> -assertEquals(MapUtils.getString(in,"noKey", "default"), > >>>> "default"); > >>>> -assertEquals(MapUtils.getString(null,"noKey", "default"), > >>>> "default"); > >>>> +assertEquals("str", MapUtils.getString(in,"key", "defualt")); > >>>> +assertEquals("str", MapUtils.getString(in,"key")); > >>>> +assertEquals(null, MapUtils.getString(null,"key")); > >>>> +assertEquals("default", MapUtils.getString(in,"noKey", > >>>> "default")); > >>>> +assertEquals("default", MapUtils.getString(null,"noKey", > >>>> "default")); > >>>> > >>>> } > >>>> > >>>> @@ -1090,11 +1090,11 @@ public class MapUtilsTest extends > >>>> AbstractAvailableLocalesTest { > >>>> final Map in = new HashMap<>(); > >>>> in.put("key", "str"); > >>>> > >>>> -assertEquals(MapUtils.getObject(in,"key", "defualt"), > "str"); > >>>> -assertEquals(MapUtils.getObject(in,"key"), "str"); > >>>> -assertEquals(MapUtils.getObject(null,"key"), null); > >>>> -assertEquals(MapUtils.getObject(in,"noKey", "default"), > >>>> "default"); > >>>> -assertEquals(MapUtils.getObject(null,"noKey", "default"), > >>>> "default"); > >>>> +assertEquals("str", MapUtils.getObject(in,"key", "defualt")); > >>>> +assertEquals("str", MapUtils.getObject(in,"key")); > >>>> +assertEquals(null, MapUtils.getObject(null,"key")); > >>>> +assertEquals("default", MapUtils.getObject(in,"noKey", > >>>> "default")); > >>>> +assertEquals("default", MapUtils.getObject(null,"noKey", > >>>> "default")); > >>>> > >>>> } > >>>> > >>>> @@ -1109,7 +1109,7 @@ public class MapUtilsTest extends > >>>> AbstractAvailableLocalesTest { > >>>> assertTrue(!MapUtils.getBooleanValue(in,"noKey")); > >>>> assertTrue(MapUtils.getBoolean(in,"key", true)); > >>>> assertTrue(MapUtils.getBoolean(in,"noKey", true)); > >>>> -assertEquals(MapUtils.getBoolean(null,"noKey"),null); > >>>> +assertEquals(null, MapUtils.getBoolean(null,"noKey")); > >>>> > >>>> > >>>> > >>>> @@ -1130,10 +1130,10 @@ public class MapUtilsTest extends > >>>> AbstractAvailableLocalesTest { > >>>> in.put("key1", valMap); > >>>> final Map outValue = MapUtils.getMap(in,"key1", > null); > >>>> > >>>> -assertEquals( outValue.get("key1"), "value1"); > >>>> -assertEquals( outValue.get("key2"), null); > >>>> -assertEquals( MapUtils.getMap(in,"key2", null), null); > >>>> -assertEquals( MapUtils.getMap(null,"key2", null), null); > >>>> +assertEquals("value1", outValue.get("key1")); > >>>> +assertEquals(null, outValue.get("key2")); > >>>> +assertEquals(null, MapUtils.getMap(in,"key2", null)); > >>>> +assertEquals(null, MapUtils.getMap(null,"key2", null)); > >>>> } > >>>> > >>>> @Test > >>>> @@ -1143,8 +1143,8 @@ public class MapUtilsTest extends > >>>> AbstractAvailableLocalesTest { > >>>> > >>>> MapUtils.safeAddToMap(inMap,"key1", "value1"); > >>>> MapUtils.safeAddToMap(inMap,"key2", null); > >>>> -assertEquals( inMap.get("key1"), "value1"); > >>>> -assertEquals( inMap.get("key2"), ""); > >>>> +assertEquals("value1", inMap.get("key1")); > >>>> +assertEquals("", inMap.get("key2")); > >>>> } > >>>> > >>>> @Test > >>>> > >>>> > >>>> > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > > -- Matt Sicker

Re: [IO] Releasing 2.6

2017-09-26 Thread Matt Sicker
at 2:48 PM, Benedikt Ritter > wrote: > > > Hey, > > > > I’m going through the list of components I happen to work with and make > > them ready for Java 9. Since I’m blocked in the release process of > > collections because of the Windows test failures, I’m going to cut a RC > for > > IO 2.6 probably tomorrow night. > > > > Regards, > > Benedikt > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > > -- Matt Sicker

Re: [DRAFT][REPORT] Apache Commons Board Report for September 2017

2017-09-11 Thread Matt Sicker
ets closed/resolved in the last 3 months > > [If there are any security issues, these would be added here in a PRIVATE > section, not appropriate for a public list like the dev ML] > > Gary Gregory > Apache Commons Chair > -- Matt Sicker

Re: [JCS] update to Log4j 2 facade API

2017-09-05 Thread Matt Sicker
; >>> On Sep 4, 2017, at 10:03 PM, Romain Manni-Bucau < > rmannibu...@gmail.com > > > > > >> wrote: > > >>> > > >>> Le 5 sept. 2017 05:40, "Ralph Goers" a > > >> écrit : > > >>> > > >>

Re: [JCS] update to Log4j 2 facade API

2017-09-04 Thread Matt Sicker
). What they have done with JULI was on the right track > but > > still uses the java.util.logging design, which makes it very difficult > for > > users to achieve item 3 above. > > > > As far as I can tell JCS is a general purpose caching system meant to be > &g

Re: [JCS] update to Log4j 2 facade API

2017-09-03 Thread Matt Sicker
ld you please provide some numbers to this claim? > > Bye, Thomas. > > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > -- Matt Sicker

Re: [JCS] update to Log4j 2 facade API

2017-09-03 Thread Matt Sicker
- > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > -- Matt Sicker

Re: [JCS] update to Log4j 2 facade API

2017-09-02 Thread Matt Sicker
kedIn <https://www.linkedin.com/in/rmannibucau> | JavaEE Factory > <https://javaeefactory-rmannibucau.rhcloud.com> > > 2017-09-02 19:55 GMT+02:00 Gary Gregory : > > > Hi All, > > > > How about updating JCS from Commons Logging to Log4j 2? > > > > Gary > > > -- Matt Sicker

Re: Attaching Apache repository pushes to GitHub page

2017-08-03 Thread Matt Sicker
es > in your GitHub profile. > > Cheers, > Jörg > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [VOTE] Release Commons Email 1.5 Based on RC1

2017-07-30 Thread Matt Sicker
igured inside the section for Email only, while it is > > inside for Compress. This may explain the difference when > > running rat checks directly. > > > > Stefan > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > > -- Matt Sicker

Re: [log4j] Announce Scala release?

2017-07-29 Thread Matt Sicker
; On Sat, Jul 29, 2017 at 6:34 PM, Matt Sicker wrote: > > > Oh no, sending the email completely passed my mind. I'll follow up. > > > > On 29 July 2017 at 20:19, Gary Gregory wrote: > > > > > Hi All: > > > > > > Did I miss the an

Re: [log4j] Announce Scala release?

2017-07-29 Thread Matt Sicker
Oh no, sending the email completely passed my mind. I'll follow up. On 29 July 2017 at 20:19, Gary Gregory wrote: > Hi All: > > Did I miss the announcement email for the log4j scala 11.0 components > release? > > Gary > -- Matt Sicker

Re: [all] Removal of old pgp key from https://www.apache.org/dist/commons/KEYS

2017-07-19 Thread Matt Sicker
I think so. On 19 July 2017 at 10:46, Gary Gregory wrote: > On Jul 19, 2017 08:43, "Matt Sicker" wrote: > > On 18 July 2017 at 15:02, Stefan Bodewig wrote: > > > > We shouldn't remove any key that has been used to sign a release in the > > past. No ma

Re: [all] Removal of old pgp key from https://www.apache.org/dist/commons/KEYS

2017-07-19 Thread Matt Sicker
On 18 July 2017 at 15:02, Stefan Bodewig wrote: > > We shouldn't remove any key that has been used to sign a release in the > past. No matter how long in the past :-) > What about expired keys? -- Matt Sicker

Re: [lang][collections] SortedProperties

2017-07-18 Thread Matt Sicker
ted and should go to lang. > > > > Regards, > > Amey > > > > On Tue, Jul 18, 2017, 11:58 AM Gary Gregory > > wrote: > > > > > Hi, > > > > > > I'd to have a new class called SortedProperties that extends > > > java.util.Properties. > > > > > > Should that go in [lang] or [collections]? > > > > > > I first thought [lang], but it _is_ a collection after all. > > > > > > Gary > > > > > > -- Matt Sicker

Re: [VOTE] Release Apache Commons DbUtils 1.7 based on RC2

2017-07-17 Thread Matt Sicker
; > > commons-dbutils-1.7.jar.asc > > >> > > (SHA: bbd4a9cdb128233e2bf67c252789385091576a6c) > > >> > > commons-dbutils-1.7.jar.md5 > > >> > > (SHA: 5b90d74d0967dcb3ba4422489910730c3ff396b5) > > >> > > commons-dbutils-1.7.jar.s

Re: [daemon] moving to git ? and bump java version.

2017-07-16 Thread Matt Sicker
4 July 2017 at 00:43, Gary Gregory wrote: > >> > It seems OK to me to update to Java 6 for now and get this to compile > >> under > >> > java 9 for those folks who will try... > >> > > >> > Gary > >> > > >> >

Re: [daemon] moving to git ? and bump java version.

2017-07-12 Thread Matt Sicker
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [daemon] moving to git ? and bump java version.

2017-07-11 Thread Matt Sicker
to 1.6 ? > > Regards, > Amey > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > -- Matt Sicker

Re: [compress] HasCharset is a bad name

2017-07-10 Thread Matt Sicker
The colour, dish, or liqueur? Or mountains apparently. On 10 July 2017 at 17:53, Gary Gregory wrote: > On Mon, Jul 10, 2017 at 3:04 PM, Matt Sicker wrote: > > > Charsetable? CharsetAware? ;P > > > > Chartreuse? ChartreuseDeParme? > > Gary > > > >

Re: [compress] HasCharset is a bad name

2017-07-10 Thread Matt Sicker
> like ZipEncodingWithCharset? > > > > Stefan > > > > ----- > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > > -- Matt Sicker

Re: [lang] Applying IntelliJ IDEA refactorings

2017-07-09 Thread Matt Sicker
an < > jbluettdun...@gmail.com > > > > > > wrote: > > > > > > > Okay, I don't intend to apply any `@SuppressWarnings` during my > > > > refactoring efforts - if IntelliJ still reports warnings after my > > > efforts, > > >

Re: [lang] Applying IntelliJ IDEA refactorings

2017-07-05 Thread Matt Sicker
J's norms when there's a good reason to. > > > Perhaps annotating such places with @SuppressWarning would be the best > > > approach, to signal to future developers that the warning was > considered, > > > and we explicitly decided to suppress it (possibly with

Re: [lang] Applying IntelliJ IDEA refactorings

2017-07-05 Thread Matt Sicker
al array-to-collection copy operations with >`Collections.addAll()`. >- Replace simple `String{Buffer,Builder}` usages with direct `String` >concatenations or `String.format()`. >- Simplifying boolean expressions like `obj instanceof CharRange == >false` to `!(obj instanceof CharRange)`. > > > Cheers, > Jonathan > -- Matt Sicker

Re: Things in a POM file that are not probably incorrect

2017-06-28 Thread Matt Sicker
> For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [DISCUSS] Do we need a vote for moving components to git?

2017-06-28 Thread Matt Sicker
than svn and at some point everyone will wish to move on git. > > > > There certainly are people who disagree with your (I'm not one of them) > ;-) > > > > Stefan > > > -- Matt Sicker

Re: Commons sub project for parallel method execution

2017-06-12 Thread Matt Sicker
persistentable (?) > continuation workflows as in Jenkins, but with simple Java code. > > Cheers > Bruno > > > From: Gary Gregory > To: Commons Developers List > Sent: Tuesday, 13 June 2017 2:08 PM > Subject: Re: Commons sub project for parallel method execution >

Re: Commons sub project for parallel method execution

2017-06-12 Thread Matt Sicker
Series) } > ] > > GParsExecutorsPool.withPool { > tasks.collect{ it.callAsync() }.collect{ it.get() } > //tasks.eachParallel{ it() } // one of numerous alternatives > } > > long executionTime = (System.nanoTime() - startTime) / 100 > println "\nTotal ela

Re: Commons sub project for parallel method execution

2017-06-12 Thread Matt Sicker
ng domain classes with > annotations and submitting those to fork/join. Just thinkin' aloud... > > Gary > > On Mon, Jun 12, 2017 at 4:29 PM, Matt Sicker wrote: > > > I'd be interested to see where this leads to. It could end up as a sort > of > > Commons

Re: Commons sub project for parallel method execution

2017-06-12 Thread Matt Sicker
here? By extension, > > will > > > > you > > > > > not end up with more framework-like (Spark-like) code and solutions > > as > > > > > found in Spark? I am just playing devil's advocate here ;-) > > > > > > > > > > > > &

Re: Commons sub project for parallel method execution

2017-06-12 Thread Matt Sicker
lizing any kind of methods. > > > > Can somebody please guide me or suggest what other options I can explore > ? > > > > Hi Arun, > > Thank you for your proposal. > > How would this be different from Apache Spark? > > Thank you, > Gary > > > > > > Thanks, > > Arun > > > -- Matt Sicker

Re: OSGI Version at Package Level : some more details about the COMPRESS-399 pull request

2017-06-12 Thread Matt Sicker
> types of methods) suggests that the developers might have used a > different > > approach rather than breaking binary compatibility. To me, it seems that > > automatically bumping the major version would have been the wrong > response. > > > > > > If you like, I can post a list of what the package version should have > > been, assuming that every compatibility change was intentional, and > > versioning was properly applied, for every bundle series under > > org.apache.commons and commons-* that was on maven-central as of mid-may? > > > > Simon > > > -- Matt Sicker

Re: [VOTE] Release Commons Fileupload 1.3.3 based on RC5

2017-06-08 Thread Matt Sicker
t;> > >>> Please select one of the following options[1]: > >>> [ ] +1 Release it. > >>> [ ] +0 Go ahead; I don't care. > >>> [ ] -0 There are a few minor glitches: ... > >>> [ ] -1 No, do not release it because ... > >>> > >>> This vote will be open at least 72 hours, i.e. until > >>> 2017-06-09T19:00:00Z > >>> (this is UTC time). > >>> > >>> > >>> Cheers, > >>> -Rob > >>> > >>> [1] http://apache.org/foundation/voting.html > >>> - > >>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > >>> For additional commands, e-mail: dev-h...@commons.apache.org > >>> > >>> > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [all] Should our gitignore files contain only build-related entries?

2017-06-06 Thread Matt Sicker
gitignore file? > >>>>> > >>>>> Cheers > >>>>> Bruno > >>>>> > >>>>> [1] https://github.com/apache/commons-collections/pull/21 > >>>>> [2] > >>>>> http://markmail.org/message/yvflc6kxgjalhldx?q=global+ > >>>> gitignore+list:org%2Eapache%2Ecommons%2Edev#query:global% > >>>> 20gitignore%20list%3Aorg.apache.commons.dev+page:1+mid: > >>>> ioex63sxnf6culwb+state:results > >>>>> [3] https://github.com/apache/commons-collections/pull/17 > >>>>> > >>>>> > - > >>>>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > >>>>> For additional commands, e-mail: dev-h...@commons.apache.org > >>>>> > >>>>> > >>>> > >> > >> > >> - > >> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > >> For additional commands, e-mail: dev-h...@commons.apache.org > >> > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: Compiler targets and Java 9

2017-06-05 Thread Matt Sicker
If > > your runtime is stuck on Java 5, your likely to have other more pressing > > security issues to address... > > > > Gary > > > >> > >> Jochen > >> > >> > >> -- > >> The next time you hear: "Don't reinv

Re: [LANG] Fix date related test failures on IBM JDKs (Was: Re: [CANCEL][VOTE] Release Apache Commons Lang 3.6 based on RC2)

2017-06-05 Thread Matt Sicker
he/commons/commons-lang3/ > >>>>>> 3.6/commons-lang3-3.6-test-sources.jar> > >>>>>>>> (SHA1: 8daf4979fb38811bd4a5bf39e38bc7a3a6582104) > >>>>>>>> /org/apache/commons/commons-lang3/3.6/commons-lang3-3.6-tests.jar > < > >>>>>> https://repository.apache.org/content/repositories/ > >>>>>> orgapachecommons-1247/org/apache/commons/commons-lang3/ > >>>>>> 3.6/commons-lang3-3.6-tests.jar> > >>>>>>>> (SHA1: 1f158e950250efab7cbca635e8393ab2ef666bca) > >>>>>>>> > >>>>>>>> I have tested this with JDK 7, JDK 8 and JDK 9 EA b165 using Maven > >>>>>> 3.5.0. > >>>>>>>> > >>>>>>>> Details of changes since 3.5 are in the release notes: > >>>>>>>> https://dist.apache.org/repos/dist/dev/commons/lang/RELEASE- > >>>> NOTES.txt > >>>>>>>> http://home.apache.org/~britter/commons/lang/LANG_3_6_ > >>>>>> RC2/changes-report.html > >>>>>>>> > >>>>>>>> Site: > >>>>>>>> http://home.apache.org/~britter/commons/lang/LANG_3_6_RC2/ > >>>>>>>> (note some *relative* links are broken and the 3.6 directories are > >>>>>>>> not yet created - these will be OK once the site is deployed) > >>>>>>>> > >>>>>>>> Clirr Report (compared to 3.5): > >>>>>>>> http://home.apache.org/~britter/commons/lang/LANG_3_6_ > >>>>>> RC2/clirr-report.html > >>>>>>>> > >>>>>>>> RAT Report: > >>>>>>>> http://home.apache.org/~britter/commons/lang/LANG_3_6_ > >>>>>> RC2/rat-report.html > >>>>>>>> > >>>>>>>> KEYS: > >>>>>>>> https://www.apache.org/dist/commons/KEYS > >>>>>>>> > >>>>>>>> Please review the release candidate and vote. > >>>>>>>> This vote will close no sooner that 72 hours from now, > >>>>>>>> i.e. sometime after 12:00 EDT (UTC-4) 20-May 2017 > >>>>>>>> > >>>>>>>> [ ] +1 Release these artifacts > >>>>>>>> [ ] +0 OK, but... > >>>>>>>> [ ] -0 OK, but really should fix... > >>>>>>>> [ ] -1 I oppose this release because… > >>>>>>> > >>>>>>> This vote is still pending. Please review the RC and cast your > vote. > >>>> The > >>>>>> following issues have been found: > >>>>>>> > >>>>>>> - mvn site does not work from the source archive > >>>>>>> - Jigsaw meta data is missing > >>>>>>> > >>>>>>> I consider neither as a blocker for releasing 3.6 and would rather > >>>> like > >>>>>> to fix those in 3.6.1 (which I can prepare after my vacation). So > >>>> unless > >>>>>> nobody finds something else, I’d like to release this code. > >>>>>>> > >>>>>>> Thank you, > >>>>>>> Benedikt > >>>>>>> > >>>>>>>> > >>>>>>>> Thanks! > >>>>>>>> Benedikt > >>>>>>> > >>>>>>> > >>>>>>> > - > >>>>>>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > >>>>>>> For additional commands, e-mail: dev-h...@commons.apache.org > >>>>>>> > >>>>>> > >>>>>> > >>>>>> > - > >>>>>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > >>>>>> For additional commands, e-mail: dev-h...@commons.apache.org > >>>>>> > >>>>>> > >>>>> > >>>>> > >>>>> -- > >>>>> E-Mail: garydgreg...@gmail.com | ggreg...@apache.org > >>>>> Java Persistence with Hibernate, Second Edition > >>>>> <https://www.amazon.com/gp/product/1617290459/ref=as_li_tl? > >>>> ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459&link > >>>> Code=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2b8> > >>>>> > >>>>> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > >>>> am2&o=1&a=1617290459> > >>>>> JUnit in Action, Second Edition > >>>>> <https://www.amazon.com/gp/product/1935182021/ref=as_li_tl? > >>>> ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021&link > >>>> Code=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de4 > 18%22> > >>>>> > >>>>> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > >>>> am2&o=1&a=1935182021> > >>>>> Spring Batch in Action > >>>>> <https://www.amazon.com/gp/product/1935182951/ref=as_li_tl? > >>>> ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951&link > >>>> Code=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B%7Bli > >>>> nk_id%7D%7D%22%3ESpring+Batch+in+Action> > >>>>> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > >>>> am2&o=1&a=1935182951> > >>>>> Blog: http://garygregory.wordpress.com > >>>>> Home: http://garygregory.com/ > >>>>> Tweet! http://twitter.com/GaryGregory > >>>> > >>>> > >>> > >>> > >>> -- > >>> E-Mail: garydgreg...@gmail.com | ggreg...@apache.org > >>> Java Persistence with Hibernate, Second Edition > >>> <https://www.amazon.com/gp/product/1617290459/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2b8> > >>> > >>> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1617290459> > >>> JUnit in Action, Second Edition > >>> <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de418%22 > > > >>> > >>> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182021> > >>> Spring Batch in Action > >>> <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > >>> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182951> > >>> Blog: http://garygregory.wordpress.com > >>> Home: http://garygregory.com/ > >>> Tweet! http://twitter.com/GaryGregory > >>> > >> > >> > >> > >> -- > >> E-Mail: garydgreg...@gmail.com | ggreg...@apache.org > >> Java Persistence with Hibernate, Second Edition > >> <https://www.amazon.com/gp/product/1617290459/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2b8> > >> > >> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1617290459> > >> JUnit in Action, Second Edition > >> <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de418%22 > > > >> > >> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182021> > >> Spring Batch in Action > >> <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > >> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182951> > >> Blog: http://garygregory.wordpress.com > >> Home: http://garygregory.com/ > >> Tweet! http://twitter.com/GaryGregory > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org dev-unsubscr...@commons.apache.org> > > For additional commands, e-mail: dev-h...@commons.apache.org dev-h...@commons.apache.org> > -- Matt Sicker

Re: [lang] Appetite for new method StringUtils.toCamelCase(String str, char delimiter, boolean capitalizeFirstLetter)

2017-06-01 Thread Matt Sicker
> feels reasonable to me. What are folks thoughts? > > > > Cheers, > > -Rob > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > > -- Matt Sicker

Re: [LANG] Thoughts about Lang 4.0

2017-05-23 Thread Matt Sicker
t; 5) Make a backwards incompatible change to remove the bad methods in > > v4.0 (with package name change) > > OK > > > If you do #4 or #5, you also need #1 or #2 for the v3.x branch. #3 is > > aggressive but gets rid of the issue in the fastest way. > > > > Stephen > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [LANG] Thoughts about Lang 4.0

2017-05-22 Thread Matt Sicker
gt; require the one > and other parts which require the other. Like these? https://docs.oracle.com/javase/8/docs/api/java/util/Date.html#from-java.time.Instant- https://docs.oracle.com/javase/8/docs/api/java/util/Date.html#toInstant-- -- Matt Sicker

Re: [LANG] Thoughts about Lang 4.0

2017-05-22 Thread Matt Sicker
ava 9 > is fully in general availability before releasing 4.0. > > > Benedikt > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [ALL] Build Javadoc with Java 9

2017-05-18 Thread Matt Sicker
t; 18%22 > > > > > > > > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > > 1935182021> > > > Spring Batch in Action > > > <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > > linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > > 1935182951> > > > Blog: http://garygregory.wordpress.com > > > Home: http://garygregory.com/ > > > Tweet! http://twitter.com/GaryGregory > > > > > -- Matt Sicker

Re: [VOTE] Release Apache Commons Lang 3.6 based on RC2

2017-05-17 Thread Matt Sicker
mons/lang/RELEASE- > NOTES.txt > >>http://home.apache.org/~britter/commons/lang/LANG_3_6_ > >> RC2/changes-report.html > >> > >> Site: > >> http://home.apache.org/~britter/commons/lang/LANG_3_6_RC2/ > >> (note some *relative* links are broken and the 3.6 directories are > >> not yet created - these will be OK once the site is deployed) > >> > >> Clirr Report (compared to 3.5): > >>http://home.apache.org/~britter/commons/lang/LANG_3_6_ > >> RC2/clirr-report.html > >> > >> RAT Report: > >>http://home.apache.org/~britter/commons/lang/LANG_3_6_ > >> RC2/rat-report.html > >> > >> KEYS: > >> https://www.apache.org/dist/commons/KEYS > >> > >> Please review the release candidate and vote. > >> This vote will close no sooner that 72 hours from now, > >> i.e. sometime after 12:00 EDT (UTC-4) 20-May 2017 > >> > >> [ ] +1 Release these artifacts > >> [ ] +0 OK, but... > >> [ ] -0 OK, but really should fix... > >> [ ] -1 I oppose this release because... > >> > >> Thanks! > >> Benedikt > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [math] porting other code bases into ours

2017-05-16 Thread Matt Sicker
gt; > > Stefan > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > > ----- > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [Numbers] Angle class?

2017-05-13 Thread Matt Sicker
;t have to break everything up so fine grained just yet). On 13 May 2017 at 13:50, Matt Sicker wrote: > On 13 May 2017 at 06:29, Raymond DeCampo wrote: >> >> > As for the module, do we mind a few more bytes? >> > It leaves room for expansion (not that I intend to do i

Re: [Numbers] Angle class?

2017-05-13 Thread Matt Sicker
libraries pride themselves on being distributable as a single source file for simplicity (even though said file is usually thousands of lines long). -- Matt Sicker

Re: Pair of nulls

2017-05-11 Thread Matt Sicker
uot; wrote: > > > > On Wed, May 10, 2017 at 10:58 PM, Matt Sicker wrote: > > > > > Matching the of() static factories, how about ImmutablePair.ofNull() > > > > > > > I like it but at the same time it feels to me like I am getting a N

Re: Pair of nulls

2017-05-10 Thread Matt Sicker
Matching the of() static factories, how about ImmutablePair.ofNull() On 11 May 2017 at 00:03, Gary Gregory wrote: > On Wed, May 10, 2017 at 9:27 PM, Matt Sicker wrote: > > > Wouldn't it make sense to expose typed methods like in > > Collections.emptyList() et al.?

Re: Pair of nulls

2017-05-10 Thread Matt Sicker
5182021> > Spring Batch in Action > <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182951> > Blog: http://garygregory.wordpress.com > Home: http://garygregory.com/ > Tweet! http://twitter.com/GaryGregory > -- Matt Sicker

Re: [COMPRESS] Anyone implemented "pigz"?

2017-05-10 Thread Matt Sicker
l Hufmann code > yet to be written) but it would be slower than zlib - probably a lot - > and likely eat up the speed gain provided by parallel processing. > > Stefan > > - > To unsubscribe, e-mail: dev-unsubs

Re: [COMPRESS] Anyone implemented "pigz"?

2017-05-09 Thread Matt Sicker
;) and I couldn't > >> find any "reasonable" Java implementations. Anyone thought about it for > >> Commons Compress? > >> > >> Thanks, > >> Roger Whitcomb > >> > > ----- > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [math] Proposed resolution for MATH-1284

2017-05-08 Thread Matt Sicker
Oh, nevermind then. :) On 8 May 2017 at 09:21, Raymond DeCampo wrote: > On Sun, May 7, 2017 at 5:22 PM, Matt Sicker wrote: > > > I find using "tuples" here confusing since a tuple can have multiple > types, > > while a vector or point are all the same type

Re: [math] Proposed resolution for MATH-1284

2017-05-07 Thread Matt Sicker
de > and in many places allowed the removal of casts. I also kept the Vector?D > classes as an intermediary abstract class in the hope of reducing the > burden on a user upgrading from 3.x. > > Thanks, > Ray > -- Matt Sicker

Re: [all][osgi] how to deal with non-bundle dependencies?

2017-05-04 Thread Matt Sicker
rote: > On 2017-05-02, Matt Sicker wrote: > > > Apache ServiceMix tends to repackage a lot of 3rd party libraries as > > bundles, so that's one method. End users can use things like bnd to > > generate a manifest for 3rd party jars (e.g., installing jars using the &g

Re: [all][osgi] how to deal with non-bundle dependencies?

2017-05-02 Thread Matt Sicker
to bundle the dependency > jar with ours or turn it into a bundle ourselves (by wrapping it). > > Stefan > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: StopWatch stop

2017-05-01 Thread Matt Sicker
ase but does it induce vomiting if Commons Lang > has both StopWatch AND FluentStopWatch? > > Gary > > On Sun, Apr 30, 2017 at 2:47 PM, Gary Gregory > wrote: > > > Sorry, Commons Lang. > > > > Gary > > > > On Apr 30, 2017 1:47 PM, "Matt Sicker"

Re: commons-dbcp patch

2017-04-30 Thread Matt Sicker
get it > submitted? > > Gary Evesson > -- Matt Sicker

Re: StopWatch stop

2017-04-30 Thread Matt Sicker
Which subproject are you speaking of anyways? On 30 April 2017 at 15:46, Gary Gregory wrote: > A new method perhaps or a new class a la fluent? > > Gary > > On Apr 30, 2017 1:32 PM, "Matt Sicker" wrote: > > > Yup, here it is: > > 13.4.15. Method Result

Re: StopWatch stop

2017-04-30 Thread Matt Sicker
s-4.6>) of the return type of m. On 30 April 2017 at 15:30, Matt Sicker wrote: > https://docs.oracle.com/javase/specs/jls/se7/html/jls-13.html > > A reference to a method must be resolved at compile time to a symbolic > reference to the erasure (§4.6 > <https://docs.oracle.co

Re: StopWatch stop

2017-04-30 Thread Matt Sicker
Apr 30, 2017 1:19 PM, "Oliver Heger" > wrote: > > I think client code has to be recompiled, otherwise a NoSuchMethodError > is thrown. > > > > Dang it. Are you sure? > > Gary > > > Oliver > > Am 30.04.2017 um 21:24 schrieb Matt Sicker: > >

Re: StopWatch stop

2017-04-30 Thread Matt Sicker
51/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182951> > Blog: http://garygregory.wordpress.com > Home: http://garygregory.com/ > Tweet! http://twitter.com/GaryGregory > -- Matt Sicker

Re: [Numbers] Java version?

2017-04-30 Thread Matt Sicker
g with Jenkins to make it perform the build of >>>>> code targeted to old Java. >>>>> >>>> >>>> >>>> IMO it is wrong for Jenkins to dictate the Java compat level of the >>>> items it builds. >>>> >>&g

Re: [lang] Add StringUtils#getDigits?

2017-04-28 Thread Matt Sicker
ditional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [lang] Add StringUtils#isMixedCase?

2017-04-28 Thread Matt Sicker
at do you think? > > Thanks, > > Pascal > > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [Numbers] Java version?

2017-04-28 Thread Matt Sicker
wrote: > > Hi. > > > > On Thu, 27 Apr 2017 08:42:36 -0700, Gary Gregory wrote: > >> > >> On Apr 27, 2017 8:21 AM, "Gilles" wrote: > >> > >> On Thu, 27 Apr 2017 10:10:57 -0500, Matt Sicker wrote: > >> > >>> Choos

Re: [Numbers] Java version?

2017-04-27 Thread Matt Sicker
-- > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [all] Java 9 module names

2017-04-22 Thread Matt Sicker
ygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de4 > 18%22 > > >> > > > > > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > > 1935182021 <http://ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > > am2&o=1&a=1935182021>> > > > Spring Batch in Action > > > <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > > linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action <https://www.amazon.com/gp/ > > product/1935182951/ref=as_li_tl?ie=UTF8&camp=1789&creative= > > 9325&creativeASIN=1935182951&linkCode=%7B%7BlinkCode%7D%7D& > > tag=garygregory-20&linkId=%7B%7Blink_id%7D%7D%22%3ESpring+ > Batch+in+Action > > >> > > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > > 1935182951 <http://ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > > am2&o=1&a=1935182951>> > > > Blog: http://garygregory.wordpress.com <http://garygregory.wordpress. > > com/> > > > Home: http://garygregory.com/ <http://garygregory.com/> > > > Tweet! http://twitter.com/GaryGregory <http://twitter.com/GaryGregory> > > > -- Matt Sicker

Re: [all] Java 9 module names

2017-04-21 Thread Matt Sicker
gt;>>> from using that package. Just move it to > >>>> org.apache.commons.net.examples. > >>>> > >>>> Stephen > >>>> > >>>> --------- > >>>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > >>>> For additional commands, e-mail: dev-h...@commons.apache.org > >>>> > >>>> > >>> > >>> > >>> > >>> - > >>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > >>> For additional commands, e-mail: dev-h...@commons.apache.org > >>> > >> > >> - > >> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > >> For additional commands, e-mail: dev-h...@commons.apache.org > >> > >> > > > > > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > > > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [lang] [LANG-1291] Provide annotations to document thread safety.

2017-04-18 Thread Matt Sicker
e expected to > be > >>> immutable if their dependencies injected at > >>>> + * construction time are immutable and are expected to be > >>> thread-safe if their dependencies are thread-safe. > >>>> + */ > >>>> +IMMUTABLE_CONDITIONAL, > >>>> + > >>>> +/** > >>>> + * Instances of classes with the given contract are expected to > >>> maintain no state and to be thread-safe. > >>>> + */ > >>>> +STATELESS, > >>>> + > >>>> +/** > >>>> + * Instances of classes with the given contract are expected to > be > >>> fully thread-safe. > >>>> + */ > >>>> +SAFE, > >>>> + > >>>> +/** > >>>> + * Instances of classes with the given contract are expected to > be > >>> thread-safe if their dependencies injected at > >>>> + * construction time are thread-safe. > >>>> + */ > >>>> +SAFE_CONDITIONAL, > >>>> + > >>>> +/** > >>>> + * Instances of classes with the given contract are expected to > be > >>> non thread-safe. > >>>> + */ > >>>> +UNSAFE > >>>> + > >>>> +} > >>>> > >>> > >>> > >>> - > >>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > >>> For additional commands, e-mail: dev-h...@commons.apache.org > >>> > >>> > >> > >> > >> -- > >> E-Mail: garydgreg...@gmail.com | ggreg...@apache.org > >> Java Persistence with Hibernate, Second Edition > >> <https://www.amazon.com/gp/product/1617290459/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2b8> > >> > >> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1617290459> > >> JUnit in Action, Second Edition > >> <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de418%22 > > > >> > >> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182021> > >> Spring Batch in Action > >> <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > >> <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182951> > >> Blog: http://garygregory.wordpress.com > >> Home: http://garygregory.com/ > >> Tweet! http://twitter.com/GaryGregory > > > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [VOTE] Release Apache Commons Lang 3.6 based on RC1

2017-04-18 Thread Matt Sicker
t;>>>>> Home: http://garygregory.com/ > > >>>>>>>> Tweet! http://twitter.com/GaryGregory > > >>>>>>>> > > >>>>>>> > > >>>>>>> > > >>>>>>> > > >>>>>> > > >>>>>> > > - > > >>>>>> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > >>>>>> For additional commands, e-mail: dev-h...@commons.apache.org > > >>>>>> > > >>>>>> > > >>>>> > > >>>>> > > >>>>> -- > > >>>>> E-Mail: garydgreg...@gmail.com | ggreg...@apache.org > > >>>>> Java Persistence with Hibernate, Second Edition > > >>>>> <https://www.amazon.com/gp/product/1617290459/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > > >> linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2 > > b8> > > >>>>> > > >>>>> <http:ir-na.amazon-adsystem.com/e/ir?t= > > garygregory-20&l=am2&o=1&a= > > >> 1617290459> > > >>>>> JUnit in Action, Second Edition > > >>>>> <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > > >> linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de4 > > 18%22 > > >>> > > >>>>> > > >>>>> <http:ir-na.amazon-adsystem.com/e/ir?t= > > garygregory-20&l=am2&o=1&a= > > >> 1935182021> > > >>>>> Spring Batch in Action > > >>>>> <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > > >> linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > > >> 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > > >>>>> <http:ir-na.amazon-adsystem.com/e/ir?t= > > garygregory-20&l=am2&o=1&a= > > >> 1935182951> > > >>>>> Blog: http://garygregory.wordpress.com > > >>>>> Home: http://garygregory.com/ > > >>>>> Tweet! http://twitter.com/GaryGregory > > >>>>> > > >>>> > > >>>> > > >>>> > > >>>> -- > > >>>> E-Mail: garydgreg...@gmail.com | ggreg...@apache.org > > >>>> Java Persistence with Hibernate, Second Edition > > >>>> <https://www.amazon.com/gp/product/1617290459/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > > >> linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2 > > b8> > > >>>> > > >>>> <http:ir-na.amazon-adsystem.com/e/ir?t= > > garygregory-20&l=am2&o=1&a= > > >> 1617290459> > > >>>> JUnit in Action, Second Edition > > >>>> <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > > >> linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de4 > > 18%22 > > >>> > > >>>> > > >>>> <http:ir-na.amazon-adsystem.com/e/ir?t= > > garygregory-20&l=am2&o=1&a= > > >> 1935182021> > > >>>> Spring Batch in Action > > >>>> <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > > >> linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > > >> 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > > >>>> <http:ir-na.amazon-adsystem.com/e/ir?t= > > garygregory-20&l=am2&o=1&a= > > >> 1935182951> > > >>>> Blog: http://garygregory.wordpress.com > > >>>> Home: http://garygregory.com/ > > >>>> Tweet! http://twitter.com/GaryGregory > > >>>> > > >>> > > >>> > > >>> > > >>> -- > > >>> E-Mail: garydgreg...@gmail.com <mailto:garydgreg...@gmail.com> | > > >> ggreg...@apache.org <mailto:ggreg...@apache.org> > > >>> Java Persistence with Hibernate, Second Edition > > >>> <https://www.amazon.com/gp/product/1617290459/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > > >> linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2 > b8 > > < > > >> https://www.amazon.com/gp/product/1617290459/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > > >> linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2 > > b8>> > > >>> > > >>> <http:ir-na.amazon-adsystem.com/e/ir?t= > garygregory-20&l=am2&o=1&a= > > >> 1617290459 <http://ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > > >> am2&o=1&a=1617290459>> > > >>> JUnit in Action, Second Edition > > >>> <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > > >> linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de4 > > 18%22 > > >> <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > > >> linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de4 > > 18%22 > > >>>> > > >>> > > >>> <http:ir-na.amazon-adsystem.com/e/ir?t= > garygregory-20&l=am2&o=1&a= > > >> 1935182021 <http://ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > > >> am2&o=1&a=1935182021>> > > >>> Spring Batch in Action > > >>> <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > > >> tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > > >> linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > > >> 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action < > https://www.amazon.com/gp/ > > >> product/1935182951/ref=as_li_tl?ie=UTF8&camp=1789&creative= > > >> 9325&creativeASIN=1935182951&linkCode=%7B%7BlinkCode%7D%7D& > > >> tag=garygregory-20&linkId=%7B%7Blink_id%7D%7D%22%3ESpring+ > > Batch+in+Action > > >>>> > > >>> <http:ir-na.amazon-adsystem.com/e/ir?t= > garygregory-20&l=am2&o=1&a= > > >> 1935182951 <http://ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > > >> am2&o=1&a=1935182951>> > > >>> Blog: http://garygregory.wordpress.com <http://garygregory.wordpress > . > > >> com/> > > >>> Home: http://garygregory.com/ <http://garygregory.com/> > > >>> Tweet! http://twitter.com/GaryGregory <http://twitter.com/ > GaryGregory> > > >> > > > > > > > > > > > > -- > > > E-Mail: garydgreg...@gmail.com <mailto:garydgreg...@gmail.com> | > > ggreg...@apache.org <mailto:ggreg...@apache.org> > > > Java Persistence with Hibernate, Second Edition > > > <https://www.amazon.com/gp/product/1617290459/ref=as_li_ > > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > > linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2b8 > < > > https://www.amazon.com/gp/product/1617290459/ref=as_li_ > > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > > linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2 > b8>> > > > > > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > > 1617290459 <http://ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > > am2&o=1&a=1617290459>> > > > JUnit in Action, Second Edition > > > <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > > linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de4 > 18%22 > > <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > > linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de4 > 18%22 > > >> > > > > > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > > 1935182021 <http://ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > > am2&o=1&a=1935182021>> > > > Spring Batch in Action > > > <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > > linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action <https://www.amazon.com/gp/ > > product/1935182951/ref=as_li_tl?ie=UTF8&camp=1789&creative= > > 9325&creativeASIN=1935182951&linkCode=%7B%7BlinkCode%7D%7D& > > tag=garygregory-20&linkId=%7B%7Blink_id%7D%7D%22%3ESpring+ > Batch+in+Action > > >> > > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > > 1935182951 <http://ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l= > > am2&o=1&a=1935182951>> > > > Blog: http://garygregory.wordpress.com <http://garygregory.wordpress. > > com/> > > > Home: http://garygregory.com/ <http://garygregory.com/> > > > Tweet! http://twitter.com/GaryGregory <http://twitter.com/GaryGregory> > > > > > > -- > E-Mail: garydgreg...@gmail.com | ggreg...@apache.org > Java Persistence with Hibernate, Second Edition > <https://www.amazon.com/gp/product/1617290459/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2b8> > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1617290459> > JUnit in Action, Second Edition > <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de418%22 > > > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182021> > Spring Batch in Action > <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182951> > Blog: http://garygregory.wordpress.com > Home: http://garygregory.com/ > Tweet! http://twitter.com/GaryGregory > -- Matt Sicker

Re: [VOTE] Release Apache Commons Lang 3.6 based on RC1

2017-04-17 Thread Matt Sicker
> > Blog: http://garygregory.wordpress.com > > Home: http://garygregory.com/ > > Tweet! http://twitter.com/GaryGregory > > > > > > -- > E-Mail: garydgreg...@gmail.com | ggreg...@apache.org > Java Persistence with Hibernate, Second Edition > <https://www.amazon.com/gp/product/1617290459/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1617290459& > linkCode=as2&tag=garygregory-20&linkId=cadb800f39946ec62ea2b1af9fe6a2b8> > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1617290459> > JUnit in Action, Second Edition > <https://www.amazon.com/gp/product/1935182021/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182021& > linkCode=as2&tag=garygregory-20&linkId=31ecd1f6b6d1eaf8886ac902a24de418%22 > > > > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182021> > Spring Batch in Action > <https://www.amazon.com/gp/product/1935182951/ref=as_li_ > tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1935182951& > linkCode=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182951> > Blog: http://garygregory.wordpress.com > Home: http://garygregory.com/ > Tweet! http://twitter.com/GaryGregory > -- Matt Sicker

Re: [net] URLStreamHandler / URLStreamHandlerFactory implementations

2017-04-09 Thread Matt Sicker
rotocols > in commons net? > > thanks, > chas > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [DBCP]

2017-03-29 Thread Matt Sicker
ual() call above will throw NoSuchMethodException if it doesn't exist. This is basically the same thing as traditional reflection, but more direct. On 29 March 2017 at 13:09, Gary Gregory wrote: > On Wed, Mar 29, 2017 at 8:28 AM, Matt Sicker wrote: > > > Using a MethodHandle looku

Re: [DBCP]

2017-03-29 Thread Matt Sicker
Code=%7B%7BlinkCode%7D%7D&tag=garygregory-20&linkId=%7B% > 7Blink_id%7D%7D%22%3ESpring+Batch+in+Action> > <http:ir-na.amazon-adsystem.com/e/ir?t=garygregory-20&l=am2&o=1&a= > 1935182951> > Blog: http://garygregory.wordpress.com > Home: http://garygregory.com/ > Tweet! http://twitter.com/GaryGregory > -- Matt Sicker

Re: ImmutablePair and compareTo()

2017-03-26 Thread Matt Sicker
The first definition gives a nice way to look at implementations while the second definition gives the end result of what guarantee we'd need here. On 26 March 2017 at 00:27, Gary Gregory wrote: > On Fri, Mar 3, 2017 at 8:05 AM, Matt Sicker wrote: > > > So would a further special

Re: [Collections] UnmodifiableSet/UnmodifiableList

2017-03-23 Thread Matt Sicker
> > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > ----- > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [Pool] Need PMC assistance to finish git migration

2017-03-21 Thread Matt Sicker
Looks like we've been migrated. Can I get some quick verification? On 21 March 2017 at 13:22, Gary Gregory wrote: > Oh good, it is moving along nicely then. > > Gary > > On Mar 21, 2017 6:26 PM, "Matt Sicker" wrote: > > > I followed up with my origina

Re: [Pool] Need PMC assistance to finish git migration

2017-03-21 Thread Matt Sicker
I followed up with my original ticket: https://issues.apache.org/jira/browse/INFRA-13630 On 18 March 2017 at 05:26, Gary Gregory wrote: > On Fri, Mar 17, 2017 at 6:38 PM, Matt Sicker wrote: > > > We need to update something in order to make the git.apache.org and > github >

Re: [VOTE][VFS][LAZY] Migrate VFS to Git

2017-03-21 Thread Matt Sicker
This vote passes with no objections. I'll be able to convert this after we figure out how to finish converting pool. On 17 March 2017 at 13:16, Gary Gregory wrote: > +1 > > Gary > > On Fri, Mar 17, 2017 at 4:32 AM, Matt Sicker wrote: > > > Before starting work o

Re: [VFS] Interest in starting a Java 7 FileSystem-based version?

2017-03-17 Thread Matt Sicker
, Matt Sicker wrote: > Oh wait, I looked into it more. That might be usable actually. Plus it > could be useful for diving directly into the network code of networked file > systems to implement them more efficiently. I'm not sure how well isolated > those classes are, so we might

Re: [Pool] Need PMC assistance to finish git migration

2017-03-17 Thread Matt Sicker
if necessary: > > https://svn.apache.org/repos/asf/infrastructure/site-tools/ > trunk/projects/files.xml > > But there is no such file." > > Gary > > On Fri, Mar 17, 2017 at 4:30 AM, Matt Sicker wrote: > > > I imported the svn repo for commons-pool and uploade

Re: [VFS] Interest in starting a Java 7 FileSystem-based version?

2017-03-17 Thread Matt Sicker
aming. On 17 March 2017 at 12:34, Matt Sicker wrote: > I'm actually learning a little bit about ByteBuf from Netty this > afternoon. I don't know enough about the implementation to say. The thing > is, the Channel APIs all use ByteBuffer. I'm not sure how ByteBufs are >

Re: [VFS] Interest in starting a Java 7 FileSystem-based version?

2017-03-17 Thread Matt Sicker
wrote: > I'll be happy to help with PMC related tasks. > > Gary > > On Thu, Mar 16, 2017 at 4:31 PM, Matt Sicker wrote: > > > Commons VFS is still in Subversion. We're going to need a new Git repo > > regardless. I can do an import for that repo like

[VOTE][VFS][LAZY] Migrate VFS to Git

2017-03-16 Thread Matt Sicker
it repo on apache.org to host it, and then move the old svn repo into the _moved_to_git archives. -- Matt Sicker

[Pool] Need PMC assistance to finish git migration

2017-03-16 Thread Matt Sicker
update Jenkins. I already updated the pom metadata to point to the new repo. After migration is complete, I can work on a release candidate. -- Matt Sicker

Re: [VFS] Interest in starting a Java 7 FileSystem-based version?

2017-03-16 Thread Matt Sicker
Based on experience with ByteBuffers in the past, I have a feeling VFS3 may want to provide some sort of abstraction over it like how Netty does. Otherwise, managing ByteBuffers can become painful. On 16 March 2017 at 10:31, Matt Sicker wrote: > Commons VFS is still in Subversion. We'

Re: [VFS] Interest in starting a Java 7 FileSystem-based version?

2017-03-16 Thread Matt Sicker
t; > I would recommend that you create a commons-vfs3 git repo for this as you > > will only be able to borrow some code. A lot will be different. > > > > Ralph > > > > > On Mar 15, 2017, at 8:12 PM, Matt Sicker wrote: > > > > > > Ralph has mentio

Re: [VFS] Interest in starting a Java 7 FileSystem-based version?

2017-03-15 Thread Matt Sicker
nd. > > > Sent from my Samsung device > > Original message > From: Matt Sicker > Date: 16/03/2017 08:42 (GMT+05:30) > To: Commons Developers List > Subject: [VFS] Interest in starting a Java 7 FileSystem-based version? > > Ralph has mentio

[VFS] Interest in starting a Java 7 FileSystem-based version?

2017-03-15 Thread Matt Sicker
penJDK already contains implementations for the normal file system and zip files if I recall correctly (so probably also jar files). Anyways, if we were to go forward with starting work on this, should we just make a commons-vfs3 branch in the vfs repo? Or does this belong in the sandbox? -- Matt Sicker

Re: [jexl] 3.1 release review

2017-03-13 Thread Matt Sicker
o use). On 13 March 2017 at 21:08, sebb wrote: > On 14 March 2017 at 01:38, Matt Sicker wrote: > > If they're not user-implemented interfaces, then changing them isn't > really > > a backwards incompatible change. > > I agree, but since users asked for the changes

Re: [jexl] 3.1 release review

2017-03-13 Thread Matt Sicker
gt; > > > - > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > > For additional commands, e-mail: dev-h...@commons.apache.org > > > > - > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org > For additional commands, e-mail: dev-h...@commons.apache.org > > -- Matt Sicker

Re: [jexl] 3.1 release review

2017-03-13 Thread Matt Sicker
tead? > > Adding methods to an interface does not break binary compatibility, > however AIUI many downstream consumers rely on source builds so > compatibility breaks of any kind should be avoided in the public API. > > > On 12 March 2017 at 17:09, Matt Sicker wrote: > > BC

<    1   2   3   4   5   6   >