readmeter-changan 1.0.33 → 1.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.idea/ReadMeterClient.iml +9 -0
- package/.idea/workspace.xml +62 -442
- package/.npmignore +7 -0
- package/build/dev-server.js +132 -132
- package/build/webpack.base.conf.js +75 -75
- package/hs_err_pid13284.log +207 -0
- package/package.json +1 -1
- package/package.json.bak +99 -99
- package/src/AndroidPlugin.js +28 -28
- package/src/App.vue +74 -74
- package/src/components/readingmeter/CheckInfo.vue +618 -618
- package/src/components/readingmeter/FinishHandInfo.vue +75 -75
- package/src/components/readingmeter/FinishHandInfocopy.vue +99 -99
- package/src/components/readingmeter/HandInfo.vue +87 -87
- package/src/components/readingmeter/HandMessage.vue +40 -40
- package/src/components/readingmeter/HistoryHandInfo.vue +114 -114
- package/src/components/readingmeter/MeterInfo.vue +183 -183
- package/src/components/readingmeter/PhoneHand.vue +93 -93
- package/src/components/readingmeter/PhoneHandHome.vue +2 -0
- package/src/components/readingmeter/PhoneHandplanInfo.vue +643 -643
- package/src/components/readingmeter/PictureArea.vue +156 -156
- package/src/components/readingmeter/PlanDown.vue +232 -232
- package/src/components/readingmeter/PlanUpdate.vue +186 -186
- package/src/components/readingmeter/ReadMeterCenter.vue +325 -325
- package/src/components/readingmeter/ReadMeterInfo.vue +349 -349
- package/src/components/readingmeter/ReadMeterInfoChangan.vue +1 -1
- package/src/components/readingmeter/SellHistory.vue +36 -36
- package/src/components/readingmeter/SellInfo.vue +88 -88
- package/src/components/readingmeter/UserInfo.vue +1 -0
- package/src/components/server/AppHeader.vue +65 -65
- package/src/components/server/ReadMeterHome.vue +192 -192
- package/src/components/server/ReadMeterLogin.vue +161 -161
- package/src/components/server/ReadMeterNavBottom.vue +119 -119
- package/src/components/server/ReadMeterRoute.vue +79 -79
- package/src/components/server/ReadMeterTop.vue +61 -61
- package/src/components/server/ReadMeterTopcopy.vue +53 -53
- package/src/expandcss.less +668 -668
- package/src/main.js +23 -23
- package/src/readmeter-android.js +34 -34
- package/src/readmeter.js +54 -54
- package/yarn.lock +7818 -0
package/build/dev-server.js
CHANGED
|
@@ -1,132 +1,132 @@
|
|
|
1
|
-
var express = require('express')
|
|
2
|
-
var webpack = require('webpack')
|
|
3
|
-
var config = require('./webpack.dev.conf')
|
|
4
|
-
var proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
-
var httpProxy = require('http-proxy')
|
|
6
|
-
|
|
7
|
-
var app = express()
|
|
8
|
-
var compiler = webpack(config)
|
|
9
|
-
var proxy = httpProxy.createProxyServer()
|
|
10
|
-
|
|
11
|
-
// Define HTTP proxies to your custom API backend
|
|
12
|
-
// https://github.com/chimurai/http-proxy-middleware
|
|
13
|
-
var proxyTable = {
|
|
14
|
-
// '/images': {
|
|
15
|
-
// target: 'http://192.168.50.202:8081'
|
|
16
|
-
// // target: 'http://127.0.0.1:8088'
|
|
17
|
-
// },
|
|
18
|
-
// '/rs/user': {
|
|
19
|
-
// target: 'http://192.168.50.202:8081'
|
|
20
|
-
// // target: 'http://127.0.0.1:8088'
|
|
21
|
-
// },
|
|
22
|
-
// '/excel': {
|
|
23
|
-
// target: 'http://127.0.0.1:8082'
|
|
24
|
-
// },
|
|
25
|
-
'/rs/db': {
|
|
26
|
-
target: 'http://192.168.2.79:8081/ldapModule'
|
|
27
|
-
// target: 'http://127.0.0.1:8089'
|
|
28
|
-
},
|
|
29
|
-
'/rs/logic': {
|
|
30
|
-
target: 'http://127.0.0.1:8025/'
|
|
31
|
-
},
|
|
32
|
-
'/rs': {
|
|
33
|
-
target: 'http://127.0.0.1:8025/'
|
|
34
|
-
// target: 'http://127.0.0.1:8021/MobileReadMeter'
|
|
35
|
-
// target: 'http://127.0.0.1:8025/MobileReadMeter'
|
|
36
|
-
// target: 'http://127.0.0.1:8088'
|
|
37
|
-
// // target: 'http://125.71.238.50:8088/product'
|
|
38
|
-
},
|
|
39
|
-
'/AndroidRest/rs': {
|
|
40
|
-
pathRewrite: {
|
|
41
|
-
'/AndroidRest/rs': '/rs'
|
|
42
|
-
},
|
|
43
|
-
target: 'http://127.0.0.1:8021/MobileReadMeter'
|
|
44
|
-
},
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
var devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
48
|
-
publicPath: config.output.publicPath,
|
|
49
|
-
stats: {
|
|
50
|
-
colors: true,
|
|
51
|
-
chunks: false
|
|
52
|
-
}
|
|
53
|
-
})
|
|
54
|
-
|
|
55
|
-
var hotMiddleware = require('webpack-hot-middleware')(compiler)
|
|
56
|
-
// force page reload when html-webpack-plugin template changes
|
|
57
|
-
compiler.plugin('compilation', function (compilation) {
|
|
58
|
-
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
|
|
59
|
-
hotMiddleware.publish({ action: 'reload' })
|
|
60
|
-
cb()
|
|
61
|
-
})
|
|
62
|
-
})
|
|
63
|
-
|
|
64
|
-
// proxy api requests
|
|
65
|
-
Object.keys(proxyTable).forEach(function (context) {
|
|
66
|
-
var options = proxyTable[context]
|
|
67
|
-
if (typeof options === 'string') {
|
|
68
|
-
options = { target: options }
|
|
69
|
-
}
|
|
70
|
-
app.use(proxyMiddleware(context, options))
|
|
71
|
-
})
|
|
72
|
-
|
|
73
|
-
// handle fallback for HTML5 history API
|
|
74
|
-
app.use(require('connect-history-api-fallback')())
|
|
75
|
-
// app.use(function (req, res, next) {
|
|
76
|
-
// res.header('Access-Control-Allow-Origin', '*')
|
|
77
|
-
// res.header('Access-Control-Allow-Headers', 'X-Requested-With')
|
|
78
|
-
// res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
|
|
79
|
-
// res.header('X-Powered-By', '3,2,1')
|
|
80
|
-
// res.header('Access-Control-Allow-Credentials', 'true')
|
|
81
|
-
// res.header('Content-Type', 'application/json;charset=utf-8')
|
|
82
|
-
// next()
|
|
83
|
-
// })
|
|
84
|
-
|
|
85
|
-
// serve webpack bundle output
|
|
86
|
-
app.use(devMiddleware)
|
|
87
|
-
|
|
88
|
-
// enable hot-reload and state-preserving
|
|
89
|
-
// compilation error display
|
|
90
|
-
app.use(hotMiddleware)
|
|
91
|
-
|
|
92
|
-
// serve pure static assets
|
|
93
|
-
app.use('/static', express.static('./static'))
|
|
94
|
-
|
|
95
|
-
// app.all('/images/*', function (req, res) {
|
|
96
|
-
// proxy.web(req, res, {
|
|
97
|
-
// // target: 'http://192.168.50.202:8081'
|
|
98
|
-
// target: 'http://127.0.0.1:8088'
|
|
99
|
-
// })
|
|
100
|
-
// })
|
|
101
|
-
// app.all('/rs/user/*', function (req, res) {
|
|
102
|
-
// proxy.web(req, res, {
|
|
103
|
-
// // target: 'http://192.168.50.202:8081'
|
|
104
|
-
// target: 'http://127.0.0.1:8088'
|
|
105
|
-
// })
|
|
106
|
-
// })
|
|
107
|
-
// app.all('/rs/db/*', function (req, res) {
|
|
108
|
-
// proxy.web(req, res, {
|
|
109
|
-
// // target: 'http://192.168.50.202:8081'
|
|
110
|
-
// target: 'http://127.0.0.1:8088'
|
|
111
|
-
// })
|
|
112
|
-
// })
|
|
113
|
-
//
|
|
114
|
-
// app.all('/excel/*', function (req, res) {
|
|
115
|
-
// proxy.web(req, res, {
|
|
116
|
-
// target: 'http://127.0.0.1:8082'
|
|
117
|
-
// })
|
|
118
|
-
// })
|
|
119
|
-
|
|
120
|
-
// app.all('/rs/*', function (req, res) {
|
|
121
|
-
// proxy.web(req, res, {
|
|
122
|
-
// target: 'http://127.0.0.1:8888/product'
|
|
123
|
-
// })
|
|
124
|
-
// })
|
|
125
|
-
|
|
126
|
-
module.exports = app.listen(8081, function (err) {
|
|
127
|
-
if (err) {
|
|
128
|
-
console.log(err)
|
|
129
|
-
return
|
|
130
|
-
}
|
|
131
|
-
console.log('Listening at http://localhost:8081')
|
|
132
|
-
})
|
|
1
|
+
var express = require('express')
|
|
2
|
+
var webpack = require('webpack')
|
|
3
|
+
var config = require('./webpack.dev.conf')
|
|
4
|
+
var proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
+
var httpProxy = require('http-proxy')
|
|
6
|
+
|
|
7
|
+
var app = express()
|
|
8
|
+
var compiler = webpack(config)
|
|
9
|
+
var proxy = httpProxy.createProxyServer()
|
|
10
|
+
|
|
11
|
+
// Define HTTP proxies to your custom API backend
|
|
12
|
+
// https://github.com/chimurai/http-proxy-middleware
|
|
13
|
+
var proxyTable = {
|
|
14
|
+
// '/images': {
|
|
15
|
+
// target: 'http://192.168.50.202:8081'
|
|
16
|
+
// // target: 'http://127.0.0.1:8088'
|
|
17
|
+
// },
|
|
18
|
+
// '/rs/user': {
|
|
19
|
+
// target: 'http://192.168.50.202:8081'
|
|
20
|
+
// // target: 'http://127.0.0.1:8088'
|
|
21
|
+
// },
|
|
22
|
+
// '/excel': {
|
|
23
|
+
// target: 'http://127.0.0.1:8082'
|
|
24
|
+
// },
|
|
25
|
+
'/rs/db': {
|
|
26
|
+
target: 'http://192.168.2.79:8081/ldapModule'
|
|
27
|
+
// target: 'http://127.0.0.1:8089'
|
|
28
|
+
},
|
|
29
|
+
'/rs/logic': {
|
|
30
|
+
target: 'http://127.0.0.1:8025/'
|
|
31
|
+
},
|
|
32
|
+
'/rs': {
|
|
33
|
+
target: 'http://127.0.0.1:8025/'
|
|
34
|
+
// target: 'http://127.0.0.1:8021/MobileReadMeter'
|
|
35
|
+
// target: 'http://127.0.0.1:8025/MobileReadMeter'
|
|
36
|
+
// target: 'http://127.0.0.1:8088'
|
|
37
|
+
// // target: 'http://125.71.238.50:8088/product'
|
|
38
|
+
},
|
|
39
|
+
'/AndroidRest/rs': {
|
|
40
|
+
pathRewrite: {
|
|
41
|
+
'/AndroidRest/rs': '/rs'
|
|
42
|
+
},
|
|
43
|
+
target: 'http://127.0.0.1:8021/MobileReadMeter'
|
|
44
|
+
},
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
var devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
48
|
+
publicPath: config.output.publicPath,
|
|
49
|
+
stats: {
|
|
50
|
+
colors: true,
|
|
51
|
+
chunks: false
|
|
52
|
+
}
|
|
53
|
+
})
|
|
54
|
+
|
|
55
|
+
var hotMiddleware = require('webpack-hot-middleware')(compiler)
|
|
56
|
+
// force page reload when html-webpack-plugin template changes
|
|
57
|
+
compiler.plugin('compilation', function (compilation) {
|
|
58
|
+
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
|
|
59
|
+
hotMiddleware.publish({ action: 'reload' })
|
|
60
|
+
cb()
|
|
61
|
+
})
|
|
62
|
+
})
|
|
63
|
+
|
|
64
|
+
// proxy api requests
|
|
65
|
+
Object.keys(proxyTable).forEach(function (context) {
|
|
66
|
+
var options = proxyTable[context]
|
|
67
|
+
if (typeof options === 'string') {
|
|
68
|
+
options = { target: options }
|
|
69
|
+
}
|
|
70
|
+
app.use(proxyMiddleware(context, options))
|
|
71
|
+
})
|
|
72
|
+
|
|
73
|
+
// handle fallback for HTML5 history API
|
|
74
|
+
app.use(require('connect-history-api-fallback')())
|
|
75
|
+
// app.use(function (req, res, next) {
|
|
76
|
+
// res.header('Access-Control-Allow-Origin', '*')
|
|
77
|
+
// res.header('Access-Control-Allow-Headers', 'X-Requested-With')
|
|
78
|
+
// res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
|
|
79
|
+
// res.header('X-Powered-By', '3,2,1')
|
|
80
|
+
// res.header('Access-Control-Allow-Credentials', 'true')
|
|
81
|
+
// res.header('Content-Type', 'application/json;charset=utf-8')
|
|
82
|
+
// next()
|
|
83
|
+
// })
|
|
84
|
+
|
|
85
|
+
// serve webpack bundle output
|
|
86
|
+
app.use(devMiddleware)
|
|
87
|
+
|
|
88
|
+
// enable hot-reload and state-preserving
|
|
89
|
+
// compilation error display
|
|
90
|
+
app.use(hotMiddleware)
|
|
91
|
+
|
|
92
|
+
// serve pure static assets
|
|
93
|
+
app.use('/static', express.static('./static'))
|
|
94
|
+
|
|
95
|
+
// app.all('/images/*', function (req, res) {
|
|
96
|
+
// proxy.web(req, res, {
|
|
97
|
+
// // target: 'http://192.168.50.202:8081'
|
|
98
|
+
// target: 'http://127.0.0.1:8088'
|
|
99
|
+
// })
|
|
100
|
+
// })
|
|
101
|
+
// app.all('/rs/user/*', function (req, res) {
|
|
102
|
+
// proxy.web(req, res, {
|
|
103
|
+
// // target: 'http://192.168.50.202:8081'
|
|
104
|
+
// target: 'http://127.0.0.1:8088'
|
|
105
|
+
// })
|
|
106
|
+
// })
|
|
107
|
+
// app.all('/rs/db/*', function (req, res) {
|
|
108
|
+
// proxy.web(req, res, {
|
|
109
|
+
// // target: 'http://192.168.50.202:8081'
|
|
110
|
+
// target: 'http://127.0.0.1:8088'
|
|
111
|
+
// })
|
|
112
|
+
// })
|
|
113
|
+
//
|
|
114
|
+
// app.all('/excel/*', function (req, res) {
|
|
115
|
+
// proxy.web(req, res, {
|
|
116
|
+
// target: 'http://127.0.0.1:8082'
|
|
117
|
+
// })
|
|
118
|
+
// })
|
|
119
|
+
|
|
120
|
+
// app.all('/rs/*', function (req, res) {
|
|
121
|
+
// proxy.web(req, res, {
|
|
122
|
+
// target: 'http://127.0.0.1:8888/product'
|
|
123
|
+
// })
|
|
124
|
+
// })
|
|
125
|
+
|
|
126
|
+
module.exports = app.listen(8081, function (err) {
|
|
127
|
+
if (err) {
|
|
128
|
+
console.log(err)
|
|
129
|
+
return
|
|
130
|
+
}
|
|
131
|
+
console.log('Listening at http://localhost:8081')
|
|
132
|
+
})
|
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
var path = require('path')
|
|
2
|
-
var cssLoaders = require('./css-loaders')
|
|
3
|
-
var projectRoot = path.resolve(__dirname, '../')
|
|
4
|
-
|
|
5
|
-
module.exports = {
|
|
6
|
-
entry: {
|
|
7
|
-
app: './src/main.js'
|
|
8
|
-
},
|
|
9
|
-
output: {
|
|
10
|
-
path: path.resolve(__dirname, '../dist/static'),
|
|
11
|
-
publicPath: 'static/',
|
|
12
|
-
filename: '[name].js'
|
|
13
|
-
},
|
|
14
|
-
resolve: {
|
|
15
|
-
extensions: ['', '.js', '.vue'],
|
|
16
|
-
fallback: [path.join(__dirname, '../node_modules')],
|
|
17
|
-
alias: {
|
|
18
|
-
'src': path.resolve(__dirname, '../src')
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
resolveLoader: {
|
|
22
|
-
fallback: [path.join(__dirname, '../node_modules')]
|
|
23
|
-
},
|
|
24
|
-
module: {
|
|
25
|
-
loaders: [
|
|
26
|
-
{
|
|
27
|
-
test: /\.vue$/,
|
|
28
|
-
loader: 'vue'
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
test: /\.js$/,
|
|
32
|
-
loader: 'babel',
|
|
33
|
-
include: [
|
|
34
|
-
`${projectRoot}\\src`,
|
|
35
|
-
`${projectRoot}\\build`,
|
|
36
|
-
`${projectRoot}\\examples`,
|
|
37
|
-
`${projectRoot}\\test`,
|
|
38
|
-
`${projectRoot}\\node_modules\\vue-client\\src`,
|
|
39
|
-
`${projectRoot}\\node_modules\\system-phone\\src`,
|
|
40
|
-
`${projectRoot}\\node_modules\\vue-strap\\src`
|
|
41
|
-
]
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
test: /\.json$/,
|
|
45
|
-
loader: 'json'
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
test: /\.html$/,
|
|
49
|
-
loader: 'vue-html'
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
test: /\.less$/,
|
|
53
|
-
loader: 'style!css!less'
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
test: /\.(png|jpg|gif|svg|woff2?|eot|ttf)(\?.*)?$/,
|
|
57
|
-
loader: 'url',
|
|
58
|
-
query: {
|
|
59
|
-
limit: 10000,
|
|
60
|
-
name: '[name].[ext]?[hash:7]'
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
]
|
|
64
|
-
},
|
|
65
|
-
vue: {
|
|
66
|
-
loaders: cssLoaders({
|
|
67
|
-
sourceMap: false,
|
|
68
|
-
extract: false
|
|
69
|
-
})
|
|
70
|
-
},
|
|
71
|
-
plugins: [],
|
|
72
|
-
eslint: {
|
|
73
|
-
formatter: require('eslint-friendly-formatter')
|
|
74
|
-
}
|
|
75
|
-
}
|
|
1
|
+
var path = require('path')
|
|
2
|
+
var cssLoaders = require('./css-loaders')
|
|
3
|
+
var projectRoot = path.resolve(__dirname, '../')
|
|
4
|
+
|
|
5
|
+
module.exports = {
|
|
6
|
+
entry: {
|
|
7
|
+
app: './src/main.js'
|
|
8
|
+
},
|
|
9
|
+
output: {
|
|
10
|
+
path: path.resolve(__dirname, '../dist/static'),
|
|
11
|
+
publicPath: 'static/',
|
|
12
|
+
filename: '[name].js'
|
|
13
|
+
},
|
|
14
|
+
resolve: {
|
|
15
|
+
extensions: ['', '.js', '.vue'],
|
|
16
|
+
fallback: [path.join(__dirname, '../node_modules')],
|
|
17
|
+
alias: {
|
|
18
|
+
'src': path.resolve(__dirname, '../src')
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
resolveLoader: {
|
|
22
|
+
fallback: [path.join(__dirname, '../node_modules')]
|
|
23
|
+
},
|
|
24
|
+
module: {
|
|
25
|
+
loaders: [
|
|
26
|
+
{
|
|
27
|
+
test: /\.vue$/,
|
|
28
|
+
loader: 'vue'
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
test: /\.js$/,
|
|
32
|
+
loader: 'babel',
|
|
33
|
+
include: [
|
|
34
|
+
`${projectRoot}\\src`,
|
|
35
|
+
`${projectRoot}\\build`,
|
|
36
|
+
`${projectRoot}\\examples`,
|
|
37
|
+
`${projectRoot}\\test`,
|
|
38
|
+
`${projectRoot}\\node_modules\\vue-client\\src`,
|
|
39
|
+
`${projectRoot}\\node_modules\\system-phone\\src`,
|
|
40
|
+
`${projectRoot}\\node_modules\\vue-strap\\src`
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
test: /\.json$/,
|
|
45
|
+
loader: 'json'
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
test: /\.html$/,
|
|
49
|
+
loader: 'vue-html'
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
test: /\.less$/,
|
|
53
|
+
loader: 'style!css!less'
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
test: /\.(png|jpg|gif|svg|woff2?|eot|ttf)(\?.*)?$/,
|
|
57
|
+
loader: 'url',
|
|
58
|
+
query: {
|
|
59
|
+
limit: 10000,
|
|
60
|
+
name: '[name].[ext]?[hash:7]'
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
vue: {
|
|
66
|
+
loaders: cssLoaders({
|
|
67
|
+
sourceMap: false,
|
|
68
|
+
extract: false
|
|
69
|
+
})
|
|
70
|
+
},
|
|
71
|
+
plugins: [],
|
|
72
|
+
eslint: {
|
|
73
|
+
formatter: require('eslint-friendly-formatter')
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
#
|
|
2
|
+
# There is insufficient memory for the Java Runtime Environment to continue.
|
|
3
|
+
# Native memory allocation (malloc) failed to allocate 1048576 bytes for AllocateHeap
|
|
4
|
+
# Possible reasons:
|
|
5
|
+
# The system is out of physical RAM or swap space
|
|
6
|
+
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
|
7
|
+
# Possible solutions:
|
|
8
|
+
# Reduce memory load on the system
|
|
9
|
+
# Increase physical memory or swap space
|
|
10
|
+
# Check if swap backing store is full
|
|
11
|
+
# Decrease Java heap size (-Xmx/-Xms)
|
|
12
|
+
# Decrease number of Java threads
|
|
13
|
+
# Decrease Java thread stack sizes (-Xss)
|
|
14
|
+
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
|
15
|
+
# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
|
|
16
|
+
# placed in the first 4GB address space. The Java Heap base address is the
|
|
17
|
+
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
|
18
|
+
# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
|
|
19
|
+
# This output file may be truncated or incomplete.
|
|
20
|
+
#
|
|
21
|
+
# Out of Memory Error (allocation.cpp:44), pid=13284, tid=43476
|
|
22
|
+
#
|
|
23
|
+
# JRE version: (17.0.3+7) (build )
|
|
24
|
+
# Java VM: OpenJDK 64-Bit Server VM (17.0.3+7-b469.32, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
|
|
25
|
+
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
|
26
|
+
#
|
|
27
|
+
|
|
28
|
+
--------------- S U M M A R Y ------------
|
|
29
|
+
|
|
30
|
+
Command Line: git4idea.http.GitAskPassApp Username for 'http://192.168.50.67:32573':
|
|
31
|
+
|
|
32
|
+
Host: 12th Gen Intel(R) Core(TM) i5-12500H, 16 cores, 15G, Windows 11 , 64 bit Build 22621 (10.0.22621.3374)
|
|
33
|
+
Time: Wed Apr 24 17:36:56 2024 Windows 11 , 64 bit Build 22621 (10.0.22621.3374) elapsed time: 0.010069 seconds (0d 0h 0m 0s)
|
|
34
|
+
|
|
35
|
+
--------------- T H R E A D ---------------
|
|
36
|
+
|
|
37
|
+
Current thread (0x000002036aedd400): JavaThread "Unknown thread" [_thread_in_vm, id=43476, stack(0x00000092ee000000,0x00000092ee100000)]
|
|
38
|
+
|
|
39
|
+
Stack: [0x00000092ee000000,0x00000092ee100000]
|
|
40
|
+
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
|
41
|
+
V [jvm.dll+0x681f8a]
|
|
42
|
+
V [jvm.dll+0x83e374]
|
|
43
|
+
V [jvm.dll+0x83fb1e]
|
|
44
|
+
V [jvm.dll+0x840183]
|
|
45
|
+
V [jvm.dll+0x2492a5]
|
|
46
|
+
V [jvm.dll+0xa64cf]
|
|
47
|
+
V [jvm.dll+0x2dad64]
|
|
48
|
+
V [jvm.dll+0x80fc2c]
|
|
49
|
+
V [jvm.dll+0x36df61]
|
|
50
|
+
V [jvm.dll+0x7ef17c]
|
|
51
|
+
V [jvm.dll+0x3f10ef]
|
|
52
|
+
V [jvm.dll+0x3f2c31]
|
|
53
|
+
C [jli.dll+0x526b]
|
|
54
|
+
C [ucrtbase.dll+0x29333]
|
|
55
|
+
C [KERNEL32.DLL+0x1257d]
|
|
56
|
+
C [ntdll.dll+0x5aa48]
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
--------------- P R O C E S S ---------------
|
|
60
|
+
|
|
61
|
+
Threads class SMR info:
|
|
62
|
+
_java_thread_list=0x00007ff8eab86f18, length=0, elements={
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
Java Threads: ( => current thread )
|
|
66
|
+
|
|
67
|
+
Other Threads:
|
|
68
|
+
|
|
69
|
+
=>0x000002036aedd400 (exited) JavaThread "Unknown thread" [_thread_in_vm, id=43476, stack(0x00000092ee000000,0x00000092ee100000)]
|
|
70
|
+
|
|
71
|
+
Threads with active compile tasks:
|
|
72
|
+
|
|
73
|
+
VM state: not at safepoint (not fully initialized)
|
|
74
|
+
|
|
75
|
+
VM Mutex/Monitor currently owned by a thread: None
|
|
76
|
+
|
|
77
|
+
Heap address: 0x0000000000000000, size: 0 MB, Compressed Oops mode: 32-bit
|
|
78
|
+
|
|
79
|
+
CDS archive(s) mapped at: [0x0000000000000000-0x0000000000000000-0x0000000000000000), size 0, SharedBaseAddress: 0x0000000800000000, ArchiveRelocationMode: 0.
|
|
80
|
+
Narrow klass base: 0x0000000000000000, Narrow klass shift: 0, Narrow klass range: 0x0
|
|
81
|
+
|
|
82
|
+
GC Precious Log:
|
|
83
|
+
<Empty>
|
|
84
|
+
|
|
85
|
+
GC Heap History (0 events):
|
|
86
|
+
No events
|
|
87
|
+
|
|
88
|
+
Deoptimization events (0 events):
|
|
89
|
+
No events
|
|
90
|
+
|
|
91
|
+
Classes unloaded (0 events):
|
|
92
|
+
No events
|
|
93
|
+
|
|
94
|
+
Classes redefined (0 events):
|
|
95
|
+
No events
|
|
96
|
+
|
|
97
|
+
Internal exceptions (0 events):
|
|
98
|
+
No events
|
|
99
|
+
|
|
100
|
+
VM Operations (0 events):
|
|
101
|
+
No events
|
|
102
|
+
|
|
103
|
+
Events (1 events):
|
|
104
|
+
Event: 0.007 Loaded shared library C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin\java.dll
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
Dynamic libraries:
|
|
108
|
+
0x00007ff628d40000 - 0x00007ff628d4a000 C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin\java.exe
|
|
109
|
+
0x00007ff9974b0000 - 0x00007ff9976c6000 C:\WINDOWS\SYSTEM32\ntdll.dll
|
|
110
|
+
0x00007ff995e70000 - 0x00007ff995f34000 C:\WINDOWS\System32\KERNEL32.DLL
|
|
111
|
+
0x00007ff994920000 - 0x00007ff994cc7000 C:\WINDOWS\System32\KERNELBASE.dll
|
|
112
|
+
0x00007ff98da80000 - 0x00007ff98db17000 C:\WINDOWS\SYSTEM32\apphelp.dll
|
|
113
|
+
0x00007ff995000000 - 0x00007ff995111000 C:\WINDOWS\System32\ucrtbase.dll
|
|
114
|
+
0x00007ff908170000 - 0x00007ff908187000 C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin\jli.dll
|
|
115
|
+
0x00007ff981aa0000 - 0x00007ff981abb000 C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin\VCRUNTIME140.dll
|
|
116
|
+
0x00007ff995cc0000 - 0x00007ff995e6e000 C:\WINDOWS\System32\USER32.dll
|
|
117
|
+
0x00007ff9948f0000 - 0x00007ff994916000 C:\WINDOWS\System32\win32u.dll
|
|
118
|
+
0x00007ff97a560000 - 0x00007ff97a7f3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3235_none_270f74e173860f98\COMCTL32.dll
|
|
119
|
+
0x00007ff996db0000 - 0x00007ff996dd9000 C:\WINDOWS\System32\GDI32.dll
|
|
120
|
+
0x00007ff9947d0000 - 0x00007ff9948e9000 C:\WINDOWS\System32\gdi32full.dll
|
|
121
|
+
0x00007ff9962e0000 - 0x00007ff996387000 C:\WINDOWS\System32\msvcrt.dll
|
|
122
|
+
0x00007ff994f60000 - 0x00007ff994ffa000 C:\WINDOWS\System32\msvcp_win.dll
|
|
123
|
+
0x00007ff996d70000 - 0x00007ff996da1000 C:\WINDOWS\System32\IMM32.DLL
|
|
124
|
+
0x00007ff98c7b0000 - 0x00007ff98c7bc000 C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin\vcruntime140_1.dll
|
|
125
|
+
0x00007ff960540000 - 0x00007ff9605cd000 C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin\msvcp140.dll
|
|
126
|
+
0x00007ff8ea050000 - 0x00007ff8eacb8000 C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin\server\jvm.dll
|
|
127
|
+
0x00007ff996390000 - 0x00007ff996442000 C:\WINDOWS\System32\ADVAPI32.dll
|
|
128
|
+
0x00007ff996cc0000 - 0x00007ff996d68000 C:\WINDOWS\System32\sechost.dll
|
|
129
|
+
0x00007ff994f30000 - 0x00007ff994f58000 C:\WINDOWS\System32\bcrypt.dll
|
|
130
|
+
0x00007ff995ba0000 - 0x00007ff995cb5000 C:\WINDOWS\System32\RPCRT4.dll
|
|
131
|
+
0x00007ff996450000 - 0x00007ff996458000 C:\WINDOWS\System32\PSAPI.DLL
|
|
132
|
+
0x00007ff96b000000 - 0x00007ff96b009000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
|
|
133
|
+
0x00007ff981fe0000 - 0x00007ff981fea000 C:\WINDOWS\SYSTEM32\VERSION.dll
|
|
134
|
+
0x00007ff997010000 - 0x00007ff997081000 C:\WINDOWS\System32\WS2_32.dll
|
|
135
|
+
0x00007ff989020000 - 0x00007ff989054000 C:\WINDOWS\SYSTEM32\WINMM.dll
|
|
136
|
+
0x00007ff993900000 - 0x00007ff993918000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
|
|
137
|
+
0x00007ff95c220000 - 0x00007ff95c22a000 C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin\jimage.dll
|
|
138
|
+
0x00007ff991e40000 - 0x00007ff992073000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
|
|
139
|
+
0x00007ff995f40000 - 0x00007ff9962c8000 C:\WINDOWS\System32\combase.dll
|
|
140
|
+
0x00007ff997390000 - 0x00007ff997467000 C:\WINDOWS\System32\OLEAUT32.dll
|
|
141
|
+
0x00007ff97a280000 - 0x00007ff97a2b2000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
|
|
142
|
+
0x00007ff994e40000 - 0x00007ff994eb9000 C:\WINDOWS\System32\bcryptPrimitives.dll
|
|
143
|
+
0x00007ff8fa4d0000 - 0x00007ff8fa4f5000 C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin\java.dll
|
|
144
|
+
|
|
145
|
+
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
|
146
|
+
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.3235_none_270f74e173860f98;C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\jbr\bin\server
|
|
147
|
+
|
|
148
|
+
VM Arguments:
|
|
149
|
+
java_command: git4idea.http.GitAskPassApp Username for 'http://192.168.50.67:32573':
|
|
150
|
+
java_class_path (initial): C:/Program Files/JetBrains/IntelliJ IDEA 2022.2/plugins/git4idea/lib/git4idea-rt.jar;C:/Program Files/JetBrains/IntelliJ IDEA 2022.2/lib/externalProcess-rt.jar;C:/Program Files/JetBrains/IntelliJ IDEA 2022.2/lib/app.jar;C:/Program Files/JetBrains/IntelliJ IDEA 2022.2/lib/3rd-party-rt.jar
|
|
151
|
+
Launcher Type: SUN_STANDARD
|
|
152
|
+
|
|
153
|
+
[Global flags]
|
|
154
|
+
intx CICompilerCount = 12 {product} {ergonomic}
|
|
155
|
+
uint ConcGCThreads = 3 {product} {ergonomic}
|
|
156
|
+
uint G1ConcRefinementThreads = 13 {product} {ergonomic}
|
|
157
|
+
size_t G1HeapRegionSize = 2097152 {product} {ergonomic}
|
|
158
|
+
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
|
|
159
|
+
size_t InitialHeapSize = 264241152 {product} {ergonomic}
|
|
160
|
+
size_t MarkStackSize = 4194304 {product} {ergonomic}
|
|
161
|
+
size_t MaxHeapSize = 4223664128 {product} {ergonomic}
|
|
162
|
+
size_t MinHeapDeltaBytes = 2097152 {product} {ergonomic}
|
|
163
|
+
size_t MinHeapSize = 8388608 {product} {ergonomic}
|
|
164
|
+
uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic}
|
|
165
|
+
uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
|
|
166
|
+
uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
|
|
167
|
+
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
|
|
168
|
+
bool SegmentedCodeCache = true {product} {ergonomic}
|
|
169
|
+
size_t SoftMaxHeapSize = 4223664128 {manageable} {ergonomic}
|
|
170
|
+
bool UseCompressedClassPointers = true {product lp64_product} {ergonomic}
|
|
171
|
+
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
|
172
|
+
bool UseG1GC = true {product} {ergonomic}
|
|
173
|
+
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
|
174
|
+
|
|
175
|
+
Logging:
|
|
176
|
+
Log output configuration:
|
|
177
|
+
#0: stdout all=warning uptime,level,tags
|
|
178
|
+
#1: stderr all=off uptime,level,tags
|
|
179
|
+
|
|
180
|
+
Environment Variables:
|
|
181
|
+
JAVA_HOME=D:\work\jdk
|
|
182
|
+
CLASSPATH= .;D:\work\jdk\lib\dt.jar;D:\work\jdk\lib\tools.jar;
|
|
183
|
+
PATH=C:/Program Files/Git/mingw64/libexec/git-core;C:/Program Files/Git/mingw64/libexec/git-core;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\k\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;D:\work\jdk\bin;D:\work\jdk\jre\bin;D:\work\;C:\Users\k\AppData\Roaming\nvm;C:\Program Files\nodejs;D:\Bandizip;D:\soft\Bandizip;C:\Program Files\OpenVPN\bin;C:\Program Files\Git\cmd;C:\Users\k\AppData\Local\Microsoft\WindowsApps;C:\Users\k\AppData\Roaming\npm;C:\Users\k\AppData\Roaming\nvm;C:\Program Files\nodejs;C:\Users\k\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\k\AppData\Local\Programs\EmEditor;C:\Program Files\JetBrains\IntelliJ IDEA 2022.2\bin
|
|
184
|
+
USERNAME=k
|
|
185
|
+
DISPLAY=:0.0
|
|
186
|
+
LC_ALL=en_US.UTF-8
|
|
187
|
+
OS=Windows_NT
|
|
188
|
+
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 154 Stepping 3, GenuineIntel
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
--------------- S Y S T E M ---------------
|
|
193
|
+
|
|
194
|
+
OS:
|
|
195
|
+
Windows 11 , 64 bit Build 22621 (10.0.22621.3374)
|
|
196
|
+
OS uptime: 1 days 1:26 hours
|
|
197
|
+
|
|
198
|
+
CPU: total 16 (initial active 16) (8 cores per cpu, 2 threads per core) family 6 model 154 stepping 3 microcode 0x41b, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, sha, fma, vzeroupper, clflush, clflushopt, clwb
|
|
199
|
+
|
|
200
|
+
Memory: 4k page, system-wide physical 16109M (504M free)
|
|
201
|
+
TotalPageFile size 51272M (AvailPageFile size 5M)
|
|
202
|
+
current process WorkingSet (physical memory assigned to process): 11M, peak: 11M
|
|
203
|
+
current process commit charge ("private bytes"): 13M, peak: 14M
|
|
204
|
+
|
|
205
|
+
vm_info: OpenJDK 64-Bit Server VM (17.0.3+7-b469.32) for windows-amd64 JRE (17.0.3+7-b469.32), built on 2022-07-19 by "builduser" with MS VC++ 16.10 / 16.11 (VS2019)
|
|
206
|
+
|
|
207
|
+
END.
|