[GUMP@vmgump]: Project commons-dbcp (in module commons-dbcp-1.x) failed

2012-08-09 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-dbcp has an issue affecting its community integration. This issue

[GUMP@vmgump]: Project commons-dbcp2 (in module apache-commons) failed

2012-08-09 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-dbcp2 has an issue affecting its community integration. This issue

Re: svn commit: r1370951 [1/2] - in /commons/proper/math/trunk/src: changes/ main/java/org/apache/commons/math3/analysis/differentiation/ main/java/org/apache/commons/math3/util/ test/java/org/apac

2012-08-09 Thread luc
Le 2012-08-09 00:25, Gilles Sadowski a écrit : Hi Luc, Hi Gilles, On Wed, Aug 08, 2012 at 08:33:43PM -, l...@apache.org wrote: Author: luc Date: Wed Aug 8 20:33:43 2012 New Revision: 1370951 URL: http://svn.apache.org/viewvc?rev=1370951&view=rev Log: Added a new package dealing with d

[GUMP@vmgump]: Project commons-digester3 (in module apache-commons) failed

2012-08-09 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-digester3 has an issue affecting its community integration. This i

[GUMP@vmgump]: Project commons-chain2 (in module apache-commons) failed

2012-08-09 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-chain2 has an issue affecting its community integration. This issu

[GUMP@vmgump]: Project commons-proxy-test (in module apache-commons) failed

2012-08-09 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-proxy-test has an issue affecting its community integration. This

[GUMP@vmgump]: Project commons-dbutils (in module apache-commons) failed

2012-08-09 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-dbutils has an issue affecting its community integration. This iss

[GUMP@vmgump]: Project commons-vfs2-sandbox (in module apache-commons) failed

2012-08-09 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-vfs2-sandbox has an issue affecting its community integration. Thi

[GUMP@vmgump]: Project commons-scxml-test (in module apache-commons) failed

2012-08-09 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-scxml-test has an issue affecting its community integration. This

[GUMP@vmgump]: Project commons-jelly-tags-sql (in module commons-jelly) failed

2012-08-09 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-jelly-tags-sql has an issue affecting its community integration. T

Re: svn commit: r1371082 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMath.java

2012-08-09 Thread Gilles Sadowski
Hi. On Thu, Aug 09, 2012 at 08:07:25AM -, l...@apache.org wrote: > Author: luc > Date: Thu Aug 9 08:07:25 2012 > New Revision: 1371082 > > URL: http://svn.apache.org/viewvc?rev=1371082&view=rev > Log: > added a function to raise a double to an int power > > Modified: > > commons/proper

Re: svn commit: r1371082 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMath.java

2012-08-09 Thread luc
Le 2012-08-09 13:50, Gilles Sadowski a écrit : Hi. Hi Gilles, On Thu, Aug 09, 2012 at 08:07:25AM -, l...@apache.org wrote: Author: luc Date: Thu Aug 9 08:07:25 2012 New Revision: 1371082 URL: http://svn.apache.org/viewvc?rev=1371082&view=rev Log: added a function to raise a double to

Re: svn commit: r1371082 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMath.java

2012-08-09 Thread Gilles Sadowski
Hello Luc. > >> [...] > >>+public static double pow(double d, int e) { > >>+if (e == 0) { > >>+return 1.0; > >>+} else if (e < 0) { > >>+e = -e; > >>+d = 1.0 / d; > >>+} > >>+ > >>+double result = 1; > >>+double d2p

Re: svn commit: r1369332 - in /commons/proper/jcs/trunk/src/test/org/apache/jcs: ./ auxiliary/disk/block/ auxiliary/disk/file/ auxiliary/disk/indexed/ auxiliary/disk/jdbc/ auxiliary/disk/jdbc/mysql/ a

2012-08-09 Thread Thomas Vandahl
On 06.08.12 00:12, sebb wrote: > On 4 August 2012 15:23, wrote: >> Author: tv >> Date: Sat Aug 4 14:23:36 2012 >> New Revision: 1369332 >> >> URL: http://svn.apache.org/viewvc?rev=1369332&view=rev >> Log: >> - Fixed lots of warnings and FindBugs issues >> - Introduced carefully crafted @Suppress

Re: [Math] Wrong diagnostic by Clirr?

2012-08-09 Thread sebb
On 8 August 2012 13:55, Gilles Sadowski wrote: > Hi. > > Following issue MATH-838, the "probability(double)" method was moved up to > the base class "AbstractRealDistribution". Following MATH-839, a new > "probabibility(double, double)" has been created. That method is overridden > in "NormalDistr

Fwd: [all] NSWC and Apache license

2012-08-09 Thread Dave Fisher
FWIW - I'm forwarding the following from BF who is involved with potentially using some of these routines in FreeBSD. Good luck. Regards, Dave Begin forwarded message: > From: "b. f." > Date: August 9, 2012 10:47:47 AM PDT > To: Pedro Giffuni > Cc: Dave Fisher , "b...@freebsd.org" > Subjec

Re: [configuration] Preparations for a new release

2012-08-09 Thread Oliver Heger
Am 08.08.2012 22:46, schrieb Simone Tripodi: Hi Oliver, the same happened for DbUtils, I suggest you to send a ping to @repository, they usually monitor the ML better than assigned issues. Done. Thanks for the tip! Oliver HTH, alles gute! -Simo http://people.apache.org/~simonetripodi/ http

[GUMP@vmgump]: Project commons-exec-test (in module apache-commons) failed

2012-08-09 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-exec-test has an issue affecting its community integration. This i

Re: [configuration] Preparations for a new release

2012-08-09 Thread Simone Tripodi
> Done. Thanks for the tip! you are welcome, hope they will quickly fix the issue! best, -Simo http://people.apache.org/~simonetripodi/ http://simonetripodi.livejournal.com/ http://twitter.com/simonetripodi http://www.99soft.org/ -