MCPcopy Index your code
hub / github.com/nodejs/node / main

Function main

benchmark/http2/compat.js:16–38  ·  view source on GitHub ↗
({ requests, streams, clients, duration })

Source from the content-addressed store, hash-verified

14}, { flags: ['--no-warnings'] });
15
16function main({ requests, streams, clients, duration }) {
17 const http2 = require('http2');
18 const server = http2.createServer();
19 server.on('request', (req, res) => {
20 const out = fs.createReadStream(file);
21 res.setHeader('content-type', 'text/html');
22 out.pipe(res);
23 out.on('error', (err) => {
24 res.destroy();
25 });
26 });
27 server.listen(0, () => {
28 bench.http({
29 path: '/',
30 port: server.address().port,
31 requests,
32 maxConcurrentStreams: streams,
33 clients,
34 threads: clients,
35 duration,
36 }, () => { server.close(); });
37 });
38}

Callers

nothing calls this directly

Calls 9

setHeaderMethod · 0.80
listenMethod · 0.80
httpMethod · 0.80
addressMethod · 0.65
closeMethod · 0.65
requireFunction · 0.50
onMethod · 0.45
createReadStreamMethod · 0.45
destroyMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…