/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | slivers_keepalive_test.dart | 12 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/ |
D | test-http-agent-scheduling.js | 53 keepAlive: true, property 80 keepAlive: true, property 108 keepAlive: true, property 132 keepAlive: true, property
|
D | test-http-agent-timeout.js | 10 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
|
D | test-http-agent-uninitialized.js | 8 keepAlive: true, property
|
D | test-http-client-agent-abort-close-event.js | 8 const keepAliveAgent = new http.Agent({ keepAlive: true }); property
|
D | test-http-agent-uninitialized-with-handle.js | 8 keepAlive: true, property
|
D | test-http-client-set-timeout-after-end.js | 15 const agent = new Agent({ keepAlive: true, maxSockets: 1 }); property
|
D | test-http-client-agent-end-close-event.js | 10 const keepAliveAgent = new http.Agent({ keepAlive: true }); property
|
D | test-http-keep-alive-timeout.js | 16 const agent = new http.Agent({ maxSockets: 1, keepAlive: true }); property
|
D | test-http-keep-alive-timeout-custom.js | 19 const agent = new http.Agent({ maxSockets: 1, keepAlive: true }); property
|
D | test-http-client-keep-alive-release-before-finish.js | 10 keepAlive: true property
|
D | test-http-client-timeout-connect-listener.js | 19 const agent = new http.Agent({ keepAlive: true, maxSockets: 1 }); property
|
D | test-http-client-abort-keep-alive-destroy-res.js | 21 keepAlive: true, property
|
D | test-http-agent-maxsockets-respected.js | 14 keepAlive: true, property
|
D | test-http-keepalive-free.js | 13 const agent = http.Agent({ keepAlive: true }); property
|
D | test-http-client-abort-keep-alive-queued-unix-socket.js | 24 keepAlive: true, property
|
D | test-http-no-read-no-dump.js | 25 keepAlive: true property
|
D | test-http-client-abort-keep-alive-queued-tcp-socket.js | 23 keepAlive: true, property
|
/third_party/node/deps/npm/node_modules/agentkeepalive/lib/ |
D | agent.js | 17 options.keepAlive = options.keepAlive !== false; 82 if (this.keepAlive) {
|
D | _http_agent.js | 62 self.keepAlive = self.options.keepAlive || false; 96 self.keepAlive) {
|
/third_party/node/deps/npm/node_modules/agentkeepalive/ |
D | README.md | 30 - `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/ |
D | slivers_block_test.dart | 341 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/ |
D | sliver_multi_box_adaptor.dart | 128 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.js | 94 this.keepAlive = this.options.keepAlive || false; 149 if (!req || !req.shouldKeepAlive || !this.keepAlive) {
|
/third_party/node/test/sequential/ |
D | test-http-server-keep-alive-timeout-slow-server.js | 20 keepAlive: true, property
|