(info: &SystemInfo)
| 2252 | } |
| 2253 | |
| 2254 | fn docker_cdi_gpu_inventory(info: &SystemInfo) -> CdiGpuInventory { |
| 2255 | CdiGpuInventory::new( |
| 2256 | info.discovered_devices |
| 2257 | .as_deref() |
| 2258 | .unwrap_or_default() |
| 2259 | .iter() |
| 2260 | .filter(|device| device.source.as_deref() == Some("cdi")) |
| 2261 | .filter_map(|device| device.id.as_deref()), |
| 2262 | ) |
| 2263 | } |
| 2264 | |
| 2265 | fn docker_info_reports_wsl2(info: &SystemInfo) -> bool { |
| 2266 | [ |
no outgoing calls
no test coverage detected