MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / read_cache_path

Function read_cache_path

rust/src/config.rs:302–311  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

300}
301
302fn read_cache_path() -> String {
303 let mut cache_path: String = path_to_string(&default_cache_folder());
304 CACHE_PATH.with(|value| {
305 let path: String = (&*value.borrow().to_string()).into();
306 if !path.is_empty() {
307 cache_path = path;
308 }
309 });
310 cache_path
311}
312
313#[cfg(windows)]
314fn get_win_os_architecture() -> String {

Callers 3

defaultMethod · 0.85
get_configFunction · 0.85
check_cache_pathFunction · 0.85

Calls 4

path_to_stringFunction · 0.85
default_cache_folderFunction · 0.85
is_emptyMethod · 0.80
withMethod · 0.65

Tested by

no test coverage detected