| 53 | } |
| 54 | |
| 55 | internalExperiment struct { |
| 56 | mu sync.Mutex |
| 57 | |
| 58 | experimentState |
| 59 | |
| 60 | trials map[model.RequestID]*trial |
| 61 | |
| 62 | *model.Experiment |
| 63 | activeConfig expconf.ExperimentConfig |
| 64 | db *internaldb.PgDB |
| 65 | rm rm.ResourceManager |
| 66 | syslog *log.Entry |
| 67 | searcher *searcher.Searcher |
| 68 | warmStartCheckpoint *model.Checkpoint |
| 69 | continueTrials bool |
| 70 | |
| 71 | taskSpec *tasks.TaskSpec |
| 72 | generatedKeys ssh.PrivateAndPublicKeys |
| 73 | |
| 74 | faultToleranceEnabled bool |
| 75 | restored bool |
| 76 | |
| 77 | logCtx logger.Context |
| 78 | } |
| 79 | ) |
| 80 | |
| 81 | // returns the workspace set by the user or the default workspace if none. |
nothing calls this directly
no outgoing calls
no test coverage detected