Re: svn commit: r1764173 - /commons/proper/bcel/trunk/src/site/xdoc/manual/jvm.xml

2016-10-10 Thread Bruno P. Kinoshita
Oh, ignore my previous message. Noticed I couldn't find the https URL for commons-bcel in git, so had a better look at the commits and realized [bcel] is still using Subversion, but mirroring commits on git. Sorry for the noise. Bruno - Original Message - > From: Bruno P. Kinoshita

Re: svn commit: r1764173 - /commons/proper/bcel/trunk/src/site/xdoc/manual/jvm.xml

2016-10-10 Thread Bruno P. Kinoshita
Just noticed [bcel] is using git. Committing to git now. Wonder if I have to revert these commits to Subversion? Cheers Bruno > > From: "ki...@apache.org" >To: comm...@commons.apache.org >Sent: Tuesday, 11 October 2016 9:04 AM >Subject: svn commit: r1764173

Build failed in Jenkins: commons-jcs #175

2016-10-10 Thread Apache Jenkins Server
See Changes: [tv] [maven-release-plugin] prepare for next development iteration [tv] [maven-release-plugin] prepare release commons-jcs-2.0-beta-2 -- [...truncated 933 lines...] AU commons-jc

Re: [lang] LANG-1275 in upcoming 3.5 release?

2016-10-10 Thread Gary Gregory
If a VOTE has taken place based on a tag, then that tag should be considered immutable regardless of the VOTE outcome. Gary On Mon, Oct 10, 2016 at 11:00 AM, Matt Sicker wrote: > You should make a new RC tag. I don't think it's a good idea to delete > tags. > > On 10 October 2016 at 11:24, Bene

Re: [lang] LANG-1275 in upcoming 3.5 release?

2016-10-10 Thread Matt Sicker
You should make a new RC tag. I don't think it's a good idea to delete tags. On 10 October 2016 at 11:24, Benedikt Ritter wrote: > Hi, > > Oliver Heger schrieb am So., 9. Okt. 2016 > um > 18:00 Uhr: > > > > > > > Am 09.10.2016 um 17:50 schrieb Matt Sicker: > > > You can do a git rebase on the r

Re: [lang] LANG-1275 in upcoming 3.5 release?

2016-10-10 Thread Emmanuel Bourg
Le 10/10/2016 à 18:24, Benedikt Ritter a écrit : > Fine by me. We can incorporate LANG-1275 into 3.5. Oliver can add his > changes and then I rebase release onto master. What happens with the > already published RC1 tag? the tag points to the commit with ID 4b2ec07. It > won't be moved to the reba

Re: [lang] LANG-1275 in upcoming 3.5 release?

2016-10-10 Thread Benedikt Ritter
Hi, Oliver Heger schrieb am So., 9. Okt. 2016 um 18:00 Uhr: > > > Am 09.10.2016 um 17:50 schrieb Matt Sicker: > > You can do a git rebase on the release branch to get master back in, > though > > if you've already run the version update stuff on it, I'm not completely > > sure how that works (th

Re: Help with task: Random number generators

2016-10-10 Thread Gilles
Hello. On Sun, 9 Oct 2016 21:29:35 -0400, Thomas Matecki wrote: I would like to help out with the task listed at https://helpwanted.apache.org/task.html?532e1a73 Please subscribe to the mailing list of the "Commons" project: http://commons.apache.org/proper/commons-rng/mail-lists.html and po

Help with task: Random number generators

2016-10-10 Thread Thomas Matecki
I would like to help out with the task listed at https://helpwanted.apache.org/task.html?532e1a73

Build failed in Jenkins: commons-jcs #174

2016-10-10 Thread Apache Jenkins Server
See Changes: [tv] Prepare release candidate, try to make maven release plugin work -- [...truncated 933 lines...] AU src/experimental/org/apache/commons/jcs/auxiliary/lateral/xmlrpc/LateralXML

Re: [math] Faster getSubMatrix in Array2DRowRealMatrix

2016-10-10 Thread Christoph Dibak
Hi Emmanuel, On 10/10/2016 10:25 AM, Emmanuel Bourg wrote: > Do you know if using System.arraycopy is always faster than the > current method, or is there a threshold where it becomes slower? I checked different sizes of the sub-matrices and attached the code for the evaluation to the bug report

Jenkins build is back to normal : commons-jcs #171

2016-10-10 Thread Apache Jenkins Server
See - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

Re: [2/4] commons-rng git commit: RNG-20

2016-10-10 Thread Emmanuel Bourg
Le 10/10/2016 à 02:47, er...@apache.org a écrit : > RNG-20 > > Modified "fillState" method: new implementation is based on code used in > "AbstractWell" class. If I may suggest, I think it would be a good idea to put more information on the first line of the commit message. The first line is oft

Re: [math] Faster getSubMatrix in Array2DRowRealMatrix

2016-10-10 Thread Emmanuel Bourg
Le 10/10/2016 à 09:33, Christoph Dibak a écrit : > I used the Apache Commons Math library in a project where I had to > create a lot of sub-matrices of Array2DRowRealMatrix. Analyzing the > runtime, I found that getSubMatrix could be implemented much more > efficient using System.arraycopy. You

[math] Faster getSubMatrix in Array2DRowRealMatrix

2016-10-10 Thread Christoph Dibak
Hi all, I used the Apache Commons Math library in a project where I had to create a lot of sub-matrices of Array2DRowRealMatrix. Analyzing the runtime, I found that getSubMatrix could be implemented much more efficient using System.arraycopy. You can find the patch that speeds-up the runtime fo