Package-level declarations
Types
Link copied to clipboard
class BenchmarkApp
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class TaskApp(taskListClientFactory: (CliConfig) -> TaskListClient = {
RestTaskListClient(createTasksRestClient(it))
}, taskCancelClientFactory: (CliConfig) -> TaskCancelClient = {
RestTaskCancelClient(createTasksRestClient(it))
}, taskRerunClientFactory: (CliConfig) -> TaskRerunClient = {
RestTaskRerunClient(createTasksRestClient(it))
}, taskErrorsClientFactory: (CliConfig) -> TaskErrorsClient = {
RestTaskErrorsClient(createTasksRestClient(it))
}, output: Appendable = System.out, stdinInput: () -> String = { System.`in`.bufferedReader().readText() }, fileInput: (String) -> String = { File(it).readText() })
Link copied to clipboard
Link copied to clipboard
interface TaskCancelClient
Link copied to clipboard
Link copied to clipboard
interface TaskErrorsClient
Link copied to clipboard
interface TaskListClient
Link copied to clipboard
interface TaskRerunClient
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun formatTaskList(tasks: List<TaskWithProgress>, humanReadableAge: Boolean = false, includeExecutorHostname: Boolean = false): String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun resolveUniquePrefix(argument: String?, possibleValues: Collection<String>, valueDescription: String): String