MCPcopy Create free account
hub / github.com/FuzzAnything/PromptFuzz / set_exec_counter_value

Function set_exec_counter_value

src/program/mod.rs:32–35  ·  view source on GitHub ↗
(key: String, value: u32)

Source from the content-addressed store, hash-verified

30}
31
32pub fn set_exec_counter_value(key: String, value: u32) {
33 let mut guard = EXEC_COUNTER.get_or_init(|| RwLock::new(HashMap::new())).write().unwrap();
34 guard.insert(key, value);
35}
36
37pub fn save_exec_counter(deopt: &Deopt) {
38 let counter_path: PathBuf = [

Callers 2

snyc_from_strMethod · 0.85
compute_qualityMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected