MCPcopy Create free account
hub / github.com/It4innovations/hyperqueue / print_task_ids

Method print_task_ids

crates/hyperqueue/src/client/output/cli.rs:452–460  ·  view source on GitHub ↗
(&self, job_task_ids: Vec<(JobId, IntArray)>)

Source from the content-addressed store, hash-verified

450 }
451
452 fn print_task_ids(&self, job_task_ids: Vec<(JobId, IntArray)>) {
453 if job_task_ids.len() == 1 {
454 println!("{}", job_task_ids[0].1);
455 } else {
456 for (job_id, array) in &job_task_ids {
457 println!("{job_id}: {array}");
458 }
459 }
460 }
461
462 fn print_job_list(&self, jobs: Vec<JobInfo>, total_jobs: usize, verbose: bool) {
463 let job_count = jobs.len();

Callers 1

output_job_task_idsFunction · 0.45

Calls 1

lenMethod · 0.45

Tested by

no test coverage detected