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

2012-04-17 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-test has an issue affecting its community integration. This i

Re: svn commit: r1326609 - in /commons/proper/io/trunk/src: changes/changes.xml main/java/org/apache/commons/io/FileUtils.java

2012-04-17 Thread Stefan Bodewig
On 2012-04-16, wrote: > [IO-324] Add Charset sister APIs to method that take a String charset name. The new methods cause problems for people who pass in null for the charset as they want the platform's system default. The compiler doesn't know which of the writeStringToFile methods to pick if

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

2012-04-17 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-graph (in module commons-sandbox) failed

2012-04-17 Thread commons-graph development
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-graph has an issue affecting its community integration. This issue

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

2012-04-17 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

Re: How to store and use a continuation for later use

2012-04-17 Thread sebb
Such questions belong on the Commons User list, not the developer list. Please subscribe to it and ask there. On 18 April 2012 00:53, Safwan Khan wrote: > I’m a very newbie in javaflow. Consider the following basic example: > class MyRunnable implements Runnable { >  public void run() { >    Sy

Re: [javaflow] How to compare two continuations?

2012-04-17 Thread sebb
On 18 April 2012 01:04, Safwan Khan wrote: > I’m a very newbie in javaflow. Such questions belong on the Commons User list, not the developer list. Please subscribe to it and ask there. > Consider the following basic example: > class MyRunnable implements Runnable { >  public void run() { >    S

[javaflow] How to compare two continuations?

2012-04-17 Thread Safwan Khan
I’m a very newbie in javaflow. Consider the following basic example: class MyRunnable implements Runnable { public void run() { System.out.println("started!"); for( int i=0; i<10; i++ ) echo(i); } private void echo(int x) { System.out.println(x); Continuation.suspend();

How to store and use a continuation for later use

2012-04-17 Thread Safwan Khan
I’m a very newbie in javaflow. Consider the following basic example: class MyRunnable implements Runnable { public void run() { System.out.println("started!"); for( int i=0; i<10; i++ ) echo(i); } private void echo(int x) { System.out.println(x); Continuation.suspend();

[javaflow] How to store and use a continuation for later use

2012-04-17 Thread Safwan Khan
I’m a very newbie in javaflow. Consider the following basic example: class MyRunnable implements Runnable { public void run() { System.out.println("started!"); for( int i=0; i<10; i++ ) echo(i); } private void echo(int x) { System.out.println(x); Continuation.suspend();

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

2012-04-17 Thread sebb
On 17 April 2012 13:22, Ralph Goers wrote: > All the tests that fail are testing file reloading, meaning the file is > created at the beginning of the test and is modified at least once during the > test.  I've modified the test so that it doesn't use newFile. OK, that makes sense. > Ralph > >

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

2012-04-17 Thread Ralph Goers
All the tests that fail are testing file reloading, meaning the file is created at the beginning of the test and is modified at least once during the test. I've modified the test so that it doesn't use newFile. Ralph On Apr 17, 2012, at 4:02 AM, sebb wrote: > On 17 April 2012 07:34, Ralph Goe

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

2012-04-17 Thread sebb
On 17 April 2012 07:34, Ralph Goers wrote: > Gump is failing this because it is using the trunk version of junit 4.  There > was a "bug fix" that now causes TemporaryFile's newFile method to throw an > exception if the file previously existed. Commons Config was perfectly happy > with having th