You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will result in 100% CPU usage (i.e. 1 core) for the duration of the run.
The reason appears to be while (!finished && !isDone.get()) { in SbtTask.execute, which is in effect a busy spin (until isDone is done).
Of course, feel free to close at your discretion if this is deemed not an issue.
The text was updated successfully, but these errors were encountered:
Consider
This will result in 100% CPU usage (i.e. 1 core) for the duration of the run.
The reason appears to be
while (!finished && !isDone.get()) {
inSbtTask.execute
, which is in effect a busy spin (untilisDone
is done).Of course, feel free to close at your discretion if this is deemed not an issue.
The text was updated successfully, but these errors were encountered: