We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I call evaluateCrossValidation, I may want to give up after a certain amount of time. Instead of building in some "isRunning" boolean, would it be easier to check in the loops for https://docs.oracle.com/javase/tutorial/essential/concurrency/interrupt.html if (Thread.interrupted()) { in key areas?
if (Thread.interrupted()) {
The text was updated successfully, but these errors were encountered:
Are you asking how this could be done, or to have it integrated into the current code?
I'm about to start a Java-8 transition, so if you want that added its going to be a bit.
Sorry, something went wrong.
It is a low priority feature request.
No branches or pull requests
When I call evaluateCrossValidation, I may want to give up after a certain amount of time. Instead of building in some "isRunning" boolean, would it be easier to check in the loops for https://docs.oracle.com/javase/tutorial/essential/concurrency/interrupt.html
if (Thread.interrupted()) {
in key areas?The text was updated successfully, but these errors were encountered: