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

Function read_cache_path

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

Source from the content-addressed store, hash-verified

328}
329
330fn read_cache_path() -> String {
331 let mut cache_path: String = path_to_string(&default_cache_folder());
332 CACHE_PATH.with(|value| {
333 let path: String = (&*value.borrow().to_string()).into();
334 if !path.is_empty() {
335 cache_path = path;
336 }
337 });
338 cache_path
339}
340
341#[cfg(windows)]
342fn 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 1

get_configFunction · 0.68