Skip to content

Commit ea874f0

Browse files
committed
fix memory leak
1 parent 19d7a4c commit ea874f0

File tree

107 files changed

+18404
-61
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+18404
-61
lines changed

.vscode/launch.json

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Launch Chrome",
9+
"request": "launch",
10+
"type": "pwa-chrome",
11+
"url": "http://localhost:8080",
12+
"webRoot": "${workspaceFolder}"
13+
},
14+
{
15+
"name": "Listen for Xdebug",
16+
"type": "php",
17+
"request": "launch",
18+
"port": 9003
19+
},
20+
{
21+
"name": "Launch currently open script",
22+
"type": "php",
23+
"request": "launch",
24+
"program": "${file}",
25+
"cwd": "${fileDirname}",
26+
"port": 0,
27+
"runtimeArgs": [
28+
"-dxdebug.start_with_request=yes"
29+
],
30+
"env": {
31+
"XDEBUG_MODE": "debug,develop",
32+
"XDEBUG_CONFIG": "client_port=${port}"
33+
}
34+
},
35+
{
36+
"name": "Launch Built-in web server",
37+
"type": "php",
38+
"request": "launch",
39+
"runtimeArgs": [
40+
"-dxdebug.mode=debug",
41+
"-dxdebug.start_with_request=yes",
42+
"-S",
43+
"localhost:0"
44+
],
45+
"program": "",
46+
"cwd": "${workspaceRoot}",
47+
"port": 9003,
48+
"serverReadyAction": {
49+
"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
50+
"uriFormat": "http://localhost:%s",
51+
"action": "openExternally"
52+
}
53+
}
54+
]
55+
}

plugins/query-monitor/LICENSE

+339
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)