-
Notifications
You must be signed in to change notification settings - Fork 6.2k
New issue
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
Add delete_creating_tasks
option for internal.free()
#4588
Merged
guoyuhong
merged 10 commits into
ray-project:master
from
antgroup:free_delete_creation_task
Apr 12, 2019
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
d353719
add delete creating task objects.
jovany-wang bae2313
format code style
jovany-wang 102b91f
Fix lint
jovany-wang d123dc5
add tests add address comments.
jovany-wang 56e4887
Refine test
jovany-wang 92e9b1b
Refine java test
jovany-wang 3e6833d
Fix CI
jovany-wang 277e3c5
Refine
jovany-wang acab5cc
Fix lint
jovany-wang 9e055fd
Fix CI
jovany-wang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,45 @@ | ||
package org.ray.api; | ||
|
||
import java.util.function.Supplier; | ||
import org.ray.runtime.AbstractRayRuntime; | ||
import org.ray.runtime.config.RunMode; | ||
import org.testng.SkipException; | ||
|
||
public class TestUtils { | ||
|
||
private static final int WAIT_INTERVAL_MS = 5; | ||
|
||
public static void skipTestUnderSingleProcess() { | ||
AbstractRayRuntime runtime = (AbstractRayRuntime)Ray.internal(); | ||
if (runtime.getRayConfig().runMode == RunMode.SINGLE_PROCESS) { | ||
throw new SkipException("This test doesn't work under single-process mode."); | ||
} | ||
} | ||
|
||
/** | ||
* Wait until the given condition is met. | ||
* | ||
* @param condition A function that predicts the condition. | ||
* @param timeoutMs Timeout in milliseconds. | ||
* @return True if the condition is met within the timeout, false otherwise. | ||
*/ | ||
public static boolean waitForCondition(Supplier<Boolean> condition, int timeoutMs) { | ||
int waitTime = 0; | ||
while (true) { | ||
if (condition.get()) { | ||
return true; | ||
} | ||
|
||
try { | ||
java.util.concurrent.TimeUnit.MILLISECONDS.sleep(WAIT_INTERVAL_MS); | ||
} catch (InterruptedException e) { | ||
throw new RuntimeException(e); | ||
} | ||
waitTime += WAIT_INTERVAL_MS; | ||
if (waitTime > timeoutMs) { | ||
break; | ||
} | ||
} | ||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/ray/raylet/lib/java/org_ray_runtime_raylet_RayletClientImpl.h
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
document this new arg