Home
last modified time | relevance | path

Searched refs:keepAlive (Results 1 – 25 of 66) sorted by relevance

123

/third_party/flutter/flutter/packages/flutter/test/widgets/
Dslivers_keepalive_test.dart12 const WidgetTest0(text: 'child 0', keepAlive: true),
13 const WidgetTest1(text: 'child 1', keepAlive: true),
14 const WidgetTest2(text: 'child 2', keepAlive: true),
81 WidgetTest0(text: 'child 0', key: GlobalKey(), keepAlive: true),
82 WidgetTest1(text: 'child 1', key: GlobalKey(), keepAlive: true),
83 WidgetTest2(text: 'child 2', key: GlobalKey(), keepAlive: true),
103 WidgetTest0(text: 'child 0', key: UniqueKey(), keepAlive: true),
104 WidgetTest1(text: 'child 1', key: UniqueKey(), keepAlive: true),
105 WidgetTest2(text: 'child 2', key: UniqueKey(), keepAlive: true),
125 const WidgetTest0(text: 'child 0', key: ValueKey<int>(0), keepAlive: true),
[all …]
/third_party/node/test/parallel/
Dtest-http-agent-scheduling.js53 keepAlive: true, property
80 keepAlive: true, property
108 keepAlive: true, property
132 keepAlive: true, property
Dtest-http-agent-timeout.js10 const agent = new http.Agent({ keepAlive: true }); property
39 const agent = new http.Agent({ keepAlive: true, timeout: 50 }); property
69 const agent = new http.Agent({ keepAlive: true }); property
113 const agent = new CustomAgent({ keepAlive: true, timeout: AGENT_TIMEOUT }); property
Dtest-http-agent-uninitialized.js8 keepAlive: true, property
Dtest-http-client-agent-abort-close-event.js8 const keepAliveAgent = new http.Agent({ keepAlive: true }); property
Dtest-http-agent-uninitialized-with-handle.js8 keepAlive: true, property
Dtest-http-client-set-timeout-after-end.js15 const agent = new Agent({ keepAlive: true, maxSockets: 1 }); property
Dtest-http-client-agent-end-close-event.js10 const keepAliveAgent = new http.Agent({ keepAlive: true }); property
Dtest-http-keep-alive-timeout.js16 const agent = new http.Agent({ maxSockets: 1, keepAlive: true }); property
Dtest-http-keep-alive-timeout-custom.js19 const agent = new http.Agent({ maxSockets: 1, keepAlive: true }); property
Dtest-http-client-keep-alive-release-before-finish.js10 keepAlive: true property
Dtest-http-client-timeout-connect-listener.js19 const agent = new http.Agent({ keepAlive: true, maxSockets: 1 }); property
Dtest-http-client-abort-keep-alive-destroy-res.js21 keepAlive: true, property
Dtest-http-agent-maxsockets-respected.js14 keepAlive: true, property
Dtest-http-keepalive-free.js13 const agent = http.Agent({ keepAlive: true }); property
Dtest-http-client-abort-keep-alive-queued-unix-socket.js24 keepAlive: true, property
Dtest-http-no-read-no-dump.js25 keepAlive: true property
Dtest-http-client-abort-keep-alive-queued-tcp-socket.js23 keepAlive: true, property
/third_party/node/deps/npm/node_modules/agentkeepalive/lib/
Dagent.js17 options.keepAlive = options.keepAlive !== false;
82 if (this.keepAlive) {
D_http_agent.js62 self.keepAlive = self.options.keepAlive || false;
96 self.keepAlive) {
/third_party/node/deps/npm/node_modules/agentkeepalive/
DREADME.md30 - `keepAlive=true` by default
45 * `keepAlive` {Boolean} Keep sockets around in a pool to be used by
47 * `keepAliveMsecs` {Number} When using the keepAlive option, specifies the initial delay
48 …for TCP Keep-Alive packets. Ignored when the keepAlive option is false or undefined. Defaults to 1…
49 Default = `1000`. Only relevant if `keepAlive` is set to `true`.
53 Only relevant if `keepAlive` is set to `true`.
60 in a free state. Only relevant if `keepAlive` is set to `true`.
/third_party/flutter/flutter/packages/flutter/test/rendering/
Dslivers_block_test.dart341 expect(candidate.keepAlive, isFalse);
344 candidate.keepAlive = null;
346 candidate.keepAlive = true;
347 expect(candidate.toString(), 'index=null; keepAlive; layoutOffset=0.0');
348 candidate.keepAlive = false;
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dsliver_multi_box_adaptor.dart128 bool keepAlive = false;
130 /// Whether the widget is currently being kept alive, i.e. has [keepAlive] set
158 String toString() => 'index=$index; ${keepAlive == true ? "keepAlive; " : ""}${super.toString()}';
361 if (childParentData.keepAlive) {
412 /// see [SliverMultiBoxAdaptorParentData.keepAlive].
444 /// see [SliverMultiBoxAdaptorParentData.keepAlive].
473 /// see [SliverMultiBoxAdaptorParentData.keepAlive].
502 /// Children whose [SliverMultiBoxAdaptorParentData.keepAlive] property is
526 return !childParentData.keepAlive;
530 return !childParentData.keepAlive;
/third_party/node/lib/
D_http_agent.js94 this.keepAlive = this.options.keepAlive || false;
149 if (!req || !req.shouldKeepAlive || !this.keepAlive) {
/third_party/node/test/sequential/
Dtest-http-server-keep-alive-timeout-slow-server.js20 keepAlive: true, property

123