MCPcopy
hub / github.com/ray-project/ray / nil

Method nil

java/api/src/main/java/io/ray/api/id/ActorId.java:29–33  ·  view source on GitHub ↗

Generate a nil ActorId.

()

Source from the content-addressed store, hash-verified

27
28 /** Generate a nil ActorId. */
29 private static ActorId nil() {
30 byte[] b = new byte[LENGTH];
31 Arrays.fill(b, (byte) 0xFF);
32 return new ActorId(b);
33 }
34
35 /** Generate an ActorId with random value. Used for local mode and test only. */
36 public static ActorId fromRandom() {

Callers 15

ActorIdClass · 0.95
on_task_submittedMethod · 0.45
__init__Method · 0.45
on_data_readyMethod · 0.45
is_actorMethod · 0.45
push_error_to_driverFunction · 0.45
publish_error_to_driverFunction · 0.45
_object_ref_deserializerFunction · 0.45
_drain_nodeMethod · 0.45
_next_syncMethod · 0.45
_next_asyncMethod · 0.45
current_job_idMethod · 0.45

Calls

no outgoing calls