(
gsettings: &GlobalSettings,
opts: OptsWithMatches<JobSubmitOpts>,
)
| 62 | static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc; |
| 63 | |
| 64 | async fn command_job_submit( |
| 65 | gsettings: &GlobalSettings, |
| 66 | opts: OptsWithMatches<JobSubmitOpts>, |
| 67 | ) -> anyhow::Result<()> { |
| 68 | let mut session = get_client_session(gsettings.server_directory()).await?; |
| 69 | submit_computation(gsettings, &mut session, opts).await |
| 70 | } |
| 71 | |
| 72 | async fn command_job_open( |
| 73 | gsettings: &GlobalSettings, |
no test coverage detected