MCPcopy Create free account
hub / github.com/apache/mesos / getExecutorVirtualPath

Function getExecutorVirtualPath

src/slave/paths.cpp:355–366  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

353
354
355string getExecutorVirtualPath(
356 const FrameworkID& frameworkId,
357 const ExecutorID& executorId)
358{
359 return path::join(
360 stringify(os::PATH_SEPARATOR) + FRAMEWORKS_DIR,
361 stringify(frameworkId),
362 EXECUTORS_DIR,
363 stringify(executorId),
364 EXECUTOR_RUNS_DIR,
365 LATEST_SYMLINK);
366}
367
368
369string getExecutorLatestRunPath(

Callers 4

TEST_FFunction · 0.85
removeExecutorMethod · 0.85
addExecutorMethod · 0.85
recoverExecutorMethod · 0.85

Calls 2

joinFunction · 0.50
stringifyFunction · 0.50

Tested by 1

TEST_FFunction · 0.68