()
| 1689 | } |
| 1690 | |
| 1691 | fn runtime_cache() -> Result<Arc<CachedRuntime>> { |
| 1692 | RUNTIME_CACHE |
| 1693 | .get_or_init(|| { |
| 1694 | build_runtime_cache() |
| 1695 | .map(Arc::new) |
| 1696 | .map_err(|err| format!("{err:#}")) |
| 1697 | }) |
| 1698 | .clone() |
| 1699 | .map_err(|message| anyhow!(message)) |
| 1700 | } |
| 1701 | |
| 1702 | pub(crate) fn shared_runtime_overlay_enabled() -> bool { |
| 1703 | true |
no test coverage detected