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

Function read_cache_path

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

Source from the content-addressed store, hash-verified

358}
359
360fn read_cache_path() -> String {
361 let mut cache_path: String = path_to_string(&default_cache_folder());
362 CACHE_PATH.with(|value| {
363 let path: String = (&*value.borrow().to_string()).into();
364 if !path.is_empty() {
365 cache_path = path;
366 }
367 });
368 cache_path
369}
370
371#[cfg(windows)]
372fn 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