Pablo Cingolani

Results 7 issues of Pablo Cingolani

TODO: Change this to use 'ProcessHandle.allProcesses​()' which wasn't available when I first wrote this... ``` public class CheckTasksRunningLocal extends CheckTasksRunning { public CheckTasksRunningLocal(Config config, Executioner executioner) { super(config, executioner); defaultCmdArgs...

Create a function similar to `filename.write(str)` that appends to a file, instead of overwriting.

There are many parameters and setting them on the Global space is becoming dangerous. A new Class should be created to accommodate all parameters. Sub-classes can implement system-specific parameters and...

When a task is dispatched by bds (using any executioner) we should be able to add custom command line options to the firing process (e.g. `qsub ...`)

An Executioner should block when the number of tasks exceeds the limits. Limits: - `maxTasksRunning`: Max number of tasks in `RUNNING` state - `maxTasksToRun`: Max number of tasks waiting to...

Improved `task` statement that can be executed on a cloud instance, cloud docker, etc. - Create a startup script for the instance - Create a queue (SQS) to listen to...

Add named parameters (with defaults) in functions and methods. e.g.: ``` int f(int x, int y, int z=1) { return x + y + z } f(1, 2) # Returns...

enhancement