Sha256: 7edc8300edbf0bad1a987b8ff2bac6792781f3d0cc1243f1dcda8bf44bb9f12d
Contents?: true
Size: 607 Bytes
Versions: 39
Compression:
Stored size: 607 Bytes
Contents
<% if @debug %> spec0_data = {}; spec0_read_count = 0; function spec0_init(options) { spec0_init_options = options; } function spec0_read_sync(ns, bp, key) { spec0_read_count += 1; var info = { key: key, value: spec0_data[key], } int_event(bp, "read_res", info); //vm_cache[ns][key] = spec0_data[key]; } function spec0_read(ns, bp, key) { spec0_read_count += 1; var info = { key: key, value: spec0_data[key], } int_event(bp, "read_res", info); vm_cache_write(ns, key, spec0_data[key]); } function spec0_write(key, value) { spec0_data[key] = value; } <% end %>
Version data entries
39 entries across 39 versions & 1 rubygems