Re: [commons] svn -> gitbox migration?

2019-01-19 Thread Chris Lambertus
as you can create your own gitbox repo and migrate the svn content using svn2git or similar yourself. -Chris ASF Infra - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org

Re: [crypto] Logging dependency

2016-06-07 Thread Chris Nauroth
rypto. --Chris Nauroth On 6/7/16, 3:55 PM, "e...@zusammenkunft.net" wrote: >Loggin Infrastructure can be quite complex including formatters, filters, >api- or file based reconfiguration and so on. It can inckude dynamcally >registering loggers and stuff. Switching the l

Re: [crypto] Logging dependency

2016-06-07 Thread Chris Nauroth
th Log4J 1 configuration files. --Chris Nauroth On 6/7/16, 9:07 AM, "sebb" wrote: >On 7 June 2016 at 16:42, Benedikt Ritter wrote: >> Hello Gary, >> >> Gary Gregory schrieb am Di., 7. Juni 2016 um >> 04:01 Uhr: >> >>> Hi All: >>> >>&g

Re: [VOTE] Accept Chimera as new Apache Commons Component

2016-04-04 Thread Chris Nauroth
se subscribe to dev@commons.apache.org. --Chris Nauroth [1] https://s.apache.org/KRqs On 3/21/16, 1:45 AM, "Benedikt Ritter" wrote: >Hi all, > >after long discussions I think we have gathered enough information to >decide whether we want to accept the Chimera proje

Re: [VOTE] Accept Chimera as new Apache Commons Component

2016-03-22 Thread Chris Nauroth
+1 (non-binding) --Chris Nauroth On 3/21/16, 1:45 AM, "Benedikt Ritter" wrote: >Hi all, > >after long discussions I think we have gathered enough information to >decide whether we want to accept the Chimera project as a new Apache >Commons component. > >Propo

commons-beanutils deserialization gadget

2016-02-22 Thread Chris Frohoff
ack-a-mole" with gadget classes (see https://gist.github.com/frohoff/24af7913611f8406eaf3#mitigation for recommendations). I'm happy answer questions, review code/patches, and otherwise help in any way I can. Regards, -Chris Frohoff Further references: Beanutils gadget chain

Re: commons-beanutils deserialization gadget

2016-02-22 Thread Chris Frohoff
PM, Chris Frohoff wrote: All, I already sent something similar to the private security list (secur...@apache.org) earlier this month and it was suggested that I post it to the dev list for discussion. There is a Java deserialization "gadget" in the commons-beanutils library th

commons-beanutils deserialization gadget

2016-02-22 Thread Chris Frohoff
ying "whack-a-mole" with gadget classes (seehttps://gist.github.com/frohoff/24af7913611f8406eaf3#mitigation for recommendations). I'm happy answer questions, review code/patches, and otherwise help in any way I can. Regards, -Chris Frohoff Further references: Beanutils gadget chain

Re: Blog post "commons" vulnerability

2015-11-09 Thread Chris Frohoff
xargs -n1 grep -lSerializable src/main/java/org/apache/commons/collections4/functors/InstantiateFactory.java src/main/java/org/apache/commons/collections4/functors/InstantiateTransformer.java src/main/java/org/apache/commons/collections4/functors/PrototypeFactory.java   Thanks,   -Chris

Re: [math] Annotations

2014-02-10 Thread Chris
nce of the annotation pointless to begin with. -Chris On Mon, Feb 10, 2014 at 9:01 PM, Phil Steitz wrote: > On 2/10/14, 5:14 PM, sebb wrote: > > The advantage of annotations over Javadoc is that the meaning of each > > annotation is precisely defined. > > > > Javadoc

Re: [math] Annotations

2014-02-10 Thread Chris
Conversely, adding an annotation would require the addition of features to external tool sets and boilerplate to make it work seamlessly, rather than just being a nuisance. It's definitely a win some, lose some situation from the sounds of it. -Chris On Mon, Feb 10, 2014 at 6:14 PM, sebb

Re: [math] Annotations

2014-02-10 Thread Chris
If you could get the tool support there, then I could definitely see a reason for the annotations. Without the tool support though, it just seems like unnecessary documentation bloat. On Mon, Feb 10, 2014 at 2:56 PM, Thomas Neidhart wrote: > On 02/10/2014 05:44 PM, Chris wrote: > >

Re: [math] Annotations

2014-02-10 Thread Chris
Hi Thomas, If this is only for documentary purposes, it seems a bit strange in my mind. Wouldn't a comment at the header serve the same purpose? -Chris On Mon, Feb 10, 2014 at 7:03 AM, luc wrote: > Le 2014-02-10 10:16, Thomas Neidhart a écrit : > >> Hi, >> > > H

Re: [MATH] Re: Pivoting QR Decomposition: Take Two!

2011-10-05 Thread Chris Nix
ecomposition.getRank(). Chris. On 5 October 2011 05:05, Greg Sterijevski wrote: > My apologies! Forgot to tag the subject line. > > On Tue, Oct 4, 2011 at 8:35 PM, Greg Sterijevski >wrote: > > > Hello all, > > > > A while back I was interested in being able to do pi

Re: [math] Re: SingularValueDecompositionImpl

2011-08-15 Thread Chris Nix
he implementation? I guess that this would be at the expense of simplicity, since it would add a constructor and getU() and getV() would only be supported depending on the construction. Chris On 12 August 2011 14:39, Greg Sterijevski wrote: > Thanks! There is an additional method I am m

Re: [math] Pivoting in QR decomposition

2011-08-07 Thread Chris Nix
uctor should be public though. Chris On 7 August 2011 16:43, Greg Sterijevski wrote: > Chris, > > In regard to the pivoting, do you think that it would be useful to allow > subclasses to pivot using other strategies? The pivoting I have looks for > the next column with the largest n

Re: [math] Pivoting in QR decomposition

2011-08-07 Thread Chris Nix
Oooops, the * below should read MATH-630. Chris On 7 August 2011 13:28, Chris Nix wrote: > Thanks, Greg, for looking more at this. Apologies I've not been able to > focus on this too much recently. > > Yes, the approach above works, however the solvers also require a

Re: [math] Pivoting in QR decomposition

2011-08-07 Thread Chris Nix
ak any existing code that expects a plain decomposition of A=QR. Chris. On 6 August 2011 21:34, Greg Sterijevski wrote: > Hello All, > > Not sure if this is stepping on toes, but here is what I thought of to deal > with pivoting. I would only need to modify the constructor of the > Q

Re: [math] Pivoting in QR decomposition

2011-07-23 Thread Chris Nix
-revealing QR decompositions that have the existing methods, plus a getP() and getRank()? The implementing class could extend the current QRDecompositionImpl class to save reproducing code, at the cost of opening up some private variables and methods, and the solver. I'll open a JIRA issue.

Re: [math] Pivoting in QR decomposition

2011-07-21 Thread Chris Nix
issue for discussion. Chris On 21 July 2011 06:40, Phil Steitz wrote: > On 7/20/11 9:27 PM, Greg Sterijevski wrote: > > Hello, > > > > In attempting to build constrained ols into the > OLSMultipleLinearRegression > > class, I rediscovered the fact that to keep th

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

2011-07-21 Thread Chris Nix
d.xml === --- build.xml (revision 1149048) +++ build.xml (working copy) @@ -182,6 +182,7 @@ + Regards, Chris On 21 July 2011 09:01, wrote: > The problem seems to come from reading resource test files, see

[math] Incorporating JAMA code to solve problems?

2011-07-05 Thread Chris Nix
an objective of Commons Math? Like I say, it's a bold question. Anticipating, Chris

Re: Future of RAT

2010-08-10 Thread Mattmann, Chris A (388J)
7;s required of all the Incubator projects, but pretty widely integrated (at least in Java land) outside of the Incubator as a tool to help check ASF policies. To me, that's a big scope and an important community, and just based on the telltale signs it seems like a TLP to me. Cheers, Chris ++

Re: Future of RAT

2010-08-10 Thread Mattmann, Chris A (388J)
ng board reports? Or, yourself for that matter? :) You see to get this whole release process thing - how is the board report sent monthly for the first few months, then quarterly after such a big deal? So, what's the problem with being a TLP? Cheers, Chris On 8/10/10 3:40 AM, "Jochen Wiedm

Beanutils: Problem with DateConverter

2007-10-07 Thread Chris Helck
Hi, I'm trying to use the DateConverter, and it just doesn't seem to work (or I don't understand it). Here's my code: DateConverter converter = new DateConverter(); converter.setPattern("MM/dd/yy"); ConvertUtils.register(converter, java.util.Date.class); System.ou

[jira] Created: (SCXML-51) with location and expr both containing datamodel expressions concatenates old and new values

2007-07-26 Thread Chris Nack (JIRA)
Project: Commons SCXML Issue Type: Bug Reporter: Chris Nack If you have the following datamodel: 10 20 and execute this assign: you end up with the data value of

[jira] Created: (SCXML-50) Add support for

2007-07-26 Thread Chris Nack (JIRA)
Add support for Key: SCXML-50 URL: https://issues.apache.org/jira/browse/SCXML-50 Project: Commons SCXML Issue Type: Improvement Reporter: Chris Nack "W3C Working Draft 21 February 2007"