MCPcopy Create free account
hub / github.com/NVIDIA/OpenShell / e2e_driver

Function e2e_driver

e2e/rust/src/harness/container.rs:22–27  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

20
21#[must_use]
22pub fn e2e_driver() -> Option<String> {
23 std::env::var("OPENSHELL_E2E_DRIVER")
24 .ok()
25 .map(|value| value.trim().to_ascii_lowercase())
26 .filter(|value| !value.is_empty())
27}
28
29#[must_use]
30pub fn is_e2e_driver(driver: &str) -> bool {

Callers 6

is_e2e_driverFunction · 0.85
from_envMethod · 0.85
from_envMethod · 0.85
e2e_driver_config_keyFunction · 0.85

Calls 1

is_emptyMethod · 0.45