MCPcopy Create free account
hub / github.com/MigoXLab/coderio / push

Method push

src/tools/launch-tool/utils/dev-server-manager.ts:180–185  ·  view source on GitHub ↗
(chunk: Buffer)

Source from the content-addressed store, hash-verified

178 const maxBytes = 1_000_000;
179 let out = '';
180 const push = (chunk: Buffer) => {
181 out += chunk.toString('utf-8');
182 if (out.length > maxBytes) {
183 out = out.slice(out.length - maxBytes);
184 }
185 };
186 child.stdout?.on('data', push);
187 child.stderr?.on('data', push);
188

Callers 15

transformReportDataMethod · 0.80
getComponentHistoryMethod · 0.80
getIterationSummaryMethod · 0.80
aggregateElementsMethod · 0.80
captureBrowserPositionsFunction · 0.80
getSharedInstancesMethod · 0.80
fetchImagesFunction · 0.80
findImageNodesFunction · 0.80
convertEffectsFunction · 0.80
extractFilesFunction · 0.80
callModelFunction · 0.80

Calls

no outgoing calls

Tested by 1

taskGeneratorFunction · 0.64