MCPcopy
hub / github.com/cloudflare/vibesdk / push

Method push

container/process-monitor.ts:74–82  ·  view source on GitHub ↗
(item: T)

Source from the content-addressed store, hash-verified

72 }
73
74 push(item: T): void {
75 this.buffer[this.tail] = item;
76 this.tail = (this.tail + 1) % this.capacity;
77 if (this.size < this.capacity) {
78 this.size++;
79 } else {
80 this.head = (this.head + 1) % this.capacity;
81 }
82 }
83
84 toArray(): T[] {
85 const result: T[] = [];

Callers 15

storeLogsMethod · 0.80
acquireMethod · 0.80
toArrayMethod · 0.80
flushStreamBuffersMethod · 0.80
processStreamDataMethod · 0.80
performHealthCheckMethod · 0.80
validatePasswordFunction · 0.80
normalizePathFunction · 0.80
createSecureCookieFunction · 0.80
processArgsWithErrorMethod · 0.80
buildCommonAppFiltersMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected