MCPcopy Create free account
hub / github.com/apache/tvm / deleteInCache

Method deleteInCache

web/src/artifact_cache.ts:407–412  ·  view source on GitHub ↗

* Delete the corresponding url object in cache * @param url the corresponding url object to be deleted

(url: string)

Source from the content-addressed store, hash-verified

405 * @param url the corresponding url object to be deleted
406 */
407 async deleteInCache(url: string) {
408 if (this.cache === undefined) {
409 this.cache = await caches.open(this.scope);
410 }
411 await this.cache.delete(url);
412 }
413}
414
415/**

Callers

nothing calls this directly

Calls 1

deleteMethod · 0.45

Tested by

no test coverage detected