Giter VIP home page Giter VIP logo

zq2599 / blog_demos Goto Github PK

View Code? Open in Web Editor NEW
4.4K 4.4K 1.8K 242.09 MB

CSDN博客专家程序员欣宸的github,这里有六百多篇原创文章的详细分类和汇总,以及对应的源码,内容涉及Java、Docker、Kubernetes、DevOPS等方面

License: Apache License 2.0

Java 88.34% Shell 3.28% Dockerfile 0.49% Scala 0.01% Go 7.80% Makefile 0.04% FreeMarker 0.03%
docker docker-java docker-jib flink java jenkins kubernetes kubernetes-java kubernetes-jenkins-maven spring spring-cloud spring-cloud-kubernetes springboot

blog_demos's Introduction

blog_demos's People

Contributors

dependabot[bot] avatar zq2599 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

blog_demos's Issues

请教关于wati-for-it功能的问题

你好!
在docker-compose.yml配置文件中,使用wait-for-it.sh功能测试依赖服务的端口是否正常,以此来判定是否该启动本容器,这个方案很好。
但是这只适合与依赖只有一个的情况,如果有多个依赖该怎么做呢?command命令里能执行多个wait-for-it.sh脚本吗?
谢谢!

请教关于docker-compose中的wait-for-it脚本功能问题

你好!
在docker-compose.yml配置文件中,使用wait-for-it.sh功能测试依赖服务的端口是否正常,以此来判定是否该启动本容器,这个方案很好。
但是这只适合与依赖只有一个的情况,如果有多个依赖该怎么做呢?command命令里能执行多个wait-for-it.sh脚本吗?
谢谢!

关于configmap

请教两个问题:

  1. configmap使用时,必须通过bootstrap文件吗?application文件不行吗?
  2. serviceaccount可以不定义吗?不用https协议,还是说必须要用serviceaccount来访问api呢?

GenderDetectService 报错

com.bolingcavalry.grabpush.camera.PreviewCameraWithGenderAge
17:26:22.576 [main] INFO com.bolingcavalry.grabpush.camera.AbstractCameraApplication - 初始化完成,耗时[3396]毫秒,帧率[30.0],图像宽度[1280],图像高度[720]
17:26:24.468 [main] ERROR com.bolingcavalry.grabpush.camera.AbstractCameraApplication - execute action error
java.lang.RuntimeException: OpenCV(4.5.3) D:\a\javacpp-presets\javacpp-presets\opencv\cppbuild\windows-x86_64\opencv-4.5.3\modules\dnn\src\layers\fully_connected_layer.cpp:91: error: (-215:Assertion failed) !bias || (blobs.size() == 2 && (size_t)numOutput == blobs[1].total()) in function 'cv::dnn::FullyConnectedLayerImpl::FullyConnectedLayerImpl'

at org.bytedeco.opencv.opencv_dnn.Net.forward(Native Method)
at com.bolingcavalry.grabpush.extend.GenderDetectService.convert(GenderDetectService.java:146)
at com.bolingcavalry.grabpush.camera.PreviewCameraWithGenderAge.output(PreviewCameraWithGenderAge.java:47)
at com.bolingcavalry.grabpush.camera.AbstractCameraApplication.grabAndOutput(AbstractCameraApplication.java:170)
at com.bolingcavalry.grabpush.camera.AbstractCameraApplication.action(AbstractCameraApplication.java:234)
at com.bolingcavalry.grabpush.camera.PreviewCameraWithGenderAge.main(PreviewCameraWithGenderAge.java:82)

[ WARN:0] global D:\a\javacpp-presets\javacpp-presets\opencv\cppbuild\windows-x86_64\opencv-4.5.3\modules\videoio\src\cap_msmf.cpp (438) `anonymous-namespace'::SourceReaderCB::~SourceReaderCB terminating async callback

Process finished with exit code 0

yolo-demo

使用 javacv-tutorials/yolo-demo 改造使用 readNetFromONNX 加载 *.onnx训练文件,无法识别出结果。
onnx文件由 yolov5 训练后的 pt 文件转换而来,想问下该demo是否适配。

访问web-service报错

spring-cloud-kubernetes的服务发现和轮询实战(含熔断)这一章里,根据github里的代码部署了相关资源之后,
访问account-service返回:account-service-76d4576979-lslxg, 2021-05-16 21:19:34
访问web-service的account返回:Fallback, 2021-05-16 21:27:16。

环境:k8sv1.21
web-service部署文件:
apiVersion: v1
kind: Service
metadata:
name: web-service
spec:
type: NodePort
ports:
- name: server
nodePort: 32002
port: 8080
targetPort: 8080
selector:
app: web-service
'___
apiVersion: apps/v1
kind: Deployment
metadata:
name: web-service
labels:
app: web-service
spec:
replicas: 1
selector:
matchLabels:
app: web-service
template:
metadata:
name: web-service
labels:
app: web-service
spec:
restartPolicy: Always
containers:
- name: web-service
image: docker.io/azui007/spring-cloud-k8s-web-service
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
name: server
account-service部署文件:
apiVersion: v1
kind: Service
metadata:
name: account-service
spec:
type: NodePort
ports:
- name: server
nodePort: 32001
port: 8080
targetPort: 8080

selector:
app: account-service
'___
apiVersion: apps/v1
kind: Deployment
metadata:
name: account-service
labels:
app: account-service
spec:
replicas: 1
selector:
matchLabels:
app: account-service
template:
metadata:
name: account-service
labels:
app: account-service
spec:
restartPolicy: Always
containers:
- name: account-service
image: docker.io/azui007/spring-cloud-k8s-account-service
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
name: server

执行code-generator时,generating clientset出错

./src/k8s.io/code-generator/generate-groups.sh all 8s_customize_controller/pkg/client k8s_customize_controller/pkg/apis bolingcavalry:v1
Generating deepcopy funcs
Generating clientset for bolingcavalry:v1 at 8s_customize_controller/pkg/client/clientset
panic: runtime error: index out of range [1] with length 0

goroutine 48 [running]:
golang.org/x/tools/internal/imports.(*ModuleResolver).scanDirForPackage(0xc0066b16e0, 0xc0066a1ff0, 0x10, 0x4, 0xc006a748a0, 0x26, 0x0, 0x0, 0x0, 0x0, ...)
/root/go/pkg/mod/golang.org/x/[email protected]/internal/imports/mod.go:346 +0x990
golang.org/x/tools/internal/imports.(*ModuleResolver).scan.func1(0xc0066a1ff0, 0x10, 0x4, 0xc006a748a0, 0x26)
/root/go/pkg/mod/golang.org/x/[email protected]/internal/imports/mod.go:263 +0x73e
golang.org/x/tools/internal/gopathwalk.(*walker).walk(0xc0066b7f40, 0xc006a748a0, 0x2f, 0x0, 0xc006a748a0, 0x2f)
/root/go/pkg/mod/golang.org/x/[email protected]/internal/gopathwalk/walk.go:175 +0xf3
golang.org/x/tools/internal/fastwalk.(*walker).onDirEnt(0xc0067df4d0, 0xc006829f50, 0x26, 0xc006a52e60, 0x8, 0x0, 0x0, 0x0)
/root/go/pkg/mod/golang.org/x/[email protected]/internal/fastwalk/fastwalk.go:168 +0xbb
golang.org/x/tools/internal/fastwalk.readDir(0xc006829f50, 0x26, 0xc006719e50, 0x0, 0x0)
/root/go/pkg/mod/golang.org/x/[email protected]/internal/fastwalk/fastwalk_unix.go:68 +0x228
golang.org/x/tools/internal/fastwalk.(*walker).walk(0xc0067df4d0, 0xc006829f50, 0x26, 0x1, 0x1, 0x0)
/root/go/pkg/mod/golang.org/x/[email protected]/internal/fastwalk/fastwalk.go:195 +0x6a
golang.org/x/tools/internal/fastwalk.(*walker).doWork(0xc0067df4d0, 0xc006856040)
/root/go/pkg/mod/golang.org/x/[email protected]/internal/fastwalk/fastwalk.go:134 +0x175
created by golang.org/x/tools/internal/fastwalk.Walk
/root/go/pkg/mod/golang.org/x/[email protected]/internal/fastwalk/fastwalk.go:81 +0x248

Internal error occurred: failed calling webhook "webhook.cert-manager.io": Post https://cert-manager-webhook.cert-manager.svc:443/validate?timeout=10s: context deadline exceeded

参考您的文章:https://xinchen.blog.csdn.net/article/details/113922328
在make deploy步骤出现如下错误,请问各位大神有碰到过吗
mutatingwebhookconfiguration.admissionregistration.k8s.io/tomcatweb-mutating-webhook-configuration created
validatingwebhookconfiguration.admissionregistration.k8s.io/tomcatweb-validating-webhook-configuration created
Error from server (InternalError): error when creating "STDIN": Internal error occurred: failed calling webhook "webhook.cert-manager.io": Post https://cert-manager-webhook.cert-manager.svc:443/validate?timeout=10s: context deadline exceeded
Error from server (InternalError): error when creating "STDIN": Internal error occurred: failed calling webhook "webhook.cert-manager.io": Post https://cert-manager-webhook.cert-manager.svc:443/validate?timeout=10s: context deadline exceeded
make: *** [deploy] Error

通过websocket获取的实时H264裸流byte[]能够转推流到其他rtmp地址吗

通过摄像头获取的实时inpustream可以给javacv推流到rmtp地址。通过websocket获取的实时H264裸流byte[]能够转推流到其他rtmp地址吗?
我试过能把本地mp4文件推流成功,摄像头转流成功。但是实时获取的字节数组没有成功。

image
实时获取的byte数组每次不一样长,抓取frame的时候有时候会报错。

RecordCameraSaveMp4WithAudio 运行报错

Connected to the target VM, address: '127.0.0.1:55855', transport: 'socket'
Exception in thread "main" java.lang.UnsatisfiedLinkError: no jniopenblas_nolapack in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1863)
at java.lang.Runtime.loadLibrary0(Runtime.java:843)
at java.lang.System.loadLibrary(System.java:1134)
at org.bytedeco.javacpp.Loader.loadLibrary(Loader.java:1738)
at org.bytedeco.javacpp.Loader.load(Loader.java:1345)
at org.bytedeco.javacpp.Loader.load(Loader.java:1157)
at org.bytedeco.javacpp.Loader.load(Loader.java:1133)
at org.bytedeco.openblas.global.openblas_nolapack.(openblas_nolapack.java:12)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at org.bytedeco.javacpp.Loader.load(Loader.java:1212)
at org.bytedeco.javacpp.Loader.load(Loader.java:1157)
at org.bytedeco.javacpp.Loader.load(Loader.java:1149)
at org.bytedeco.javacv.OpenCVFrameConverter.(OpenCVFrameConverter.java:43)
at com.bolingcavalry.grabpush.camera.AbstractCameraApplication.(AbstractCameraApplication.java:57)
at com.bolingcavalry.grabpush.camera.RecordCameraSaveMp4WithAudio.(RecordCameraSaveMp4WithAudio.java:22)
at com.bolingcavalry.grabpush.camera.RecordCameraSaveMp4WithAudio.main(RecordCameraSaveMp4WithAudio.java:88)
Caused by: java.lang.UnsatisfiedLinkError: Could not find jniopenblas_nolapack in class, module, and library paths.
at org.bytedeco.javacpp.Loader.loadLibrary(Loader.java:1705)
... 13 more
Disconnected from the target VM, address: '127.0.0.1:55855', transport: 'socket'

Process finished with exit code 1

very good

👍🏻 博客很多都是要学习的东西,太猛了

rbac 配置bug

// +kubebuilder:rbac:groups=core,resources=services,verbs=get;list;watch;create;update;patch;delete
这里应该用// +kubebuilder:rbac:groups="",resources=services,verbs=get;list;watch;create;update;patch;delete
services组是core 应该用”“空字符串就好了。不然做成镜像部署到k8s中会一直报错。提示没有权限
7bdd550a4150a2d40afa2aa6b7a1562

runtime.Unknown 怎么转成对应的类型

您好,请问runtime.Unknown这个应该如何转换成对应的资源对象,比如Pod、PodList之类的。runtime.Decode要怎么用?谢谢。
runtime.Decode(unstructured.UnstructuredJSONScheme, event.RequestObject.Raw) 这种方式用起来不方便。

springcloudk8sdiscovery报错无法生成deployment

service能起来,但是没有deployment起不来。
环境:minikube,mac,jdk8
参考网址:https://blog.csdn.net/boling_cavalry/article/details/91351411
报错信息如下:
......
[INFO] Creating a Deployment from kubernetes.yml namespace default name springcloudk8sdiscovery
[ERROR] Failed to create Deployment from kubernetes.yml. io.fabric8.kubernetes.client.KubernetesClientException: Failure executing: POST at: https://192.168.64.2:8443/apis/extensions/v1beta1/namespaces/default/deployments. Message: the server could not find the requested resource. Received status: Status(apiVersion=v1, code=404, details=StatusDetails(causes=[], group=null, kind=null, name=null, retryAfterSeconds=null, uid=null, additionalProperties={}), kind=Status, message=the server could not find the requested resource, metadata=ListMeta(resourceVersion=null, selfLink=null, additionalProperties={}), reason=NotFound, status=Failure, additionalProperties={})..

k8s_customize_controller: non-bool klog.V(5) (type klog.Verbose) used as if condition**

When execute command as follow:
[root@iZj6cfxig0kxb27f497ztzZ src]# cd $GOPATH/src \

&& go get -u k8s.io/apimachinery/pkg/apis/meta/v1
&& go get -u k8s.io/code-generator/...
&& cd $GOPATH/src/k8s.io/code-generator
&& ./generate-groups.sh all
k8s_customize_controller/pkg/client
k8s_customize_controller/pkg/apis
bolingcavalry:v1

Errors occurs, were there any tips to help?

# k8s.io/code-generator/cmd/conversion-gen/generators
k8s.io/code-generator/cmd/conversion-gen/generators/conversion.go:641:2: non-bool klog.V(5) (type klog.Verbose) used as if condition

Java版人脸跟踪 运行十几秒报错,项目停掉

您好
博客地址 https://xinchen.blog.csdn.net/article/details/122678517
本地main运行,发生内存泄漏
`#

A fatal error has been detected by the Java Runtime Environment:

EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffa07a5b22d, pid=14332, tid=0x0000000000000a1c

JRE version: Java(TM) SE Runtime Environment (8.0_221-b11) (build 1.8.0_221-b11)

Java VM: Java HotSpot(TM) 64-Bit Server VM (25.221-b11 mixed mode windows-amd64 compressed oops)

Problematic frame:

C [opencv_core453.dll+0x12b22d]

Failed to write core dump. Minidumps are not enabled by default on client versions of Windows

If you would like to submit a bug report, please visit:

http://bugreport.java.com/bugreport/crash.jsp

The crash happened outside the Java Virtual Machine in native code.

See problematic frame for where to report the bug.

--------------- T H R E A D ---------------

Current thread (0x0000000002b26000): JavaThread "main" [_thread_in_native, id=2588, stack(0x0000000002a10000,0x0000000002b10000)]

siginfo: ExceptionCode=0xc0000005, writing address 0x00000000026e8014

Registers:
RAX=0x00000000ffffffff, RBX=0x00000000566bc6a0, RCX=0x00000000026e8000, RDX=0x0000000000000002
RSP=0x0000000002b0e800, RBP=0x0000000002b0e9d9, RSI=0x0000000000000000, RDI=0x0000000000000002
R8 =0x0000000002b0e990, R9 =0x0000000000000002, R10=0x00000000000002d0, R11=0x0000000000000018
R12=0x00007ff9e0c50000, R13=0x000000005494ab18, R14=0x0000000000000018, R15=0x0000000000000000
RIP=0x00007ffa07a5b22d, EFLAGS=0x0000000000010206

Top of Stack: (sp=0x0000000002b0e800)
0x0000000002b0e800: 000000000000027f 000000076bb15760
0x0000000002b0e810: 0000000000000001 00007ffa00001fa0
0x0000000002b0e820: 0000000002b0e990 00007ffa07a59269
0x0000000002b0e830: 000000000000079b 00000000566bc6a0
0x0000000002b0e840: 00000000c971b610 00000000c8820000
0x0000000002b0e850: 00000000007b0000 0000000000000398
0x0000000002b0e860: 00000000000003ff 000000000000079b
0x0000000002b0e870: 0000000000000018 00000000566bc6a0
0x0000000002b0e880: 00000000c5949500 00000000c971f640
0x0000000002b0e890: 0000000000000000 0000000000000000
0x0000000002b0e8a0: 000000000000079b 00007ffa64cae430
0x0000000002b0e8b0: 00000000007b0000 0000000002b0e919
0x0000000002b0e8c0: 00000000c971b600 00000000c971b610
0x0000000002b0e8d0: 0000000000000398 0000000002d108da
0x0000000002b0e8e0: 000000076bb15798 cafebabecafebabe
0x0000000002b0e8f0: 0000000000000000 00000000000003ff

Instructions: (pc=0x00007ffa07a5b22d)
0x00007ffa07a5b20d: cc cc cc 48 89 5c 24 10 56 48 83 ec 20 48 8b d9
0x00007ffa07a5b21d: 33 f6 48 8b 49 38 48 85 c9 74 4a b8 ff ff ff ff
0x00007ffa07a5b22d: f0 0f c1 41 14 83 f8 01 75 3b 48 89 7c 24 30 48
0x00007ffa07a5b23d: 8b 7b 38 48 85 ff 74 28 48 89 73 38 48 8b 47 08

Register to memory mapping:

RAX=0x00000000ffffffff is an unknown value
RBX=0x00000000566bc6a0 is an unknown value
RCX=0x00000000026e8000 is an unknown value
RDX=0x0000000000000002 is an unknown value
RSP=0x0000000002b0e800 is pointing into the stack for thread: 0x0000000002b26000
RBP=0x0000000002b0e9d9 is pointing into the stack for thread: 0x0000000002b26000
RSI=0x0000000000000000 is an unknown value
RDI=0x0000000000000002 is an unknown value
R8 =0x0000000002b0e990 is pointing into the stack for thread: 0x0000000002b26000
R9 =0x0000000000000002 is an unknown value
R10=0x00000000000002d0 is an unknown value
R11=0x0000000000000018 is an unknown value
R12=0x00007ff9e0c50000 is an unknown value
R13=0x000000005494ab18 is pointing into metadata
R14=0x0000000000000018 is an unknown value
R15=0x0000000000000000 is an unknown value

Stack: [0x0000000002a10000,0x0000000002b10000], sp=0x0000000002b0e800, free space=1018k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [opencv_core453.dll+0x12b22d]
C [opencv_core453.dll+0x129269]
C [opencv_core453.dll+0x1294b3]
C [opencv_core453.dll+0x17b101]
C [opencv_imgproc453.dll+0x86558]
C [opencv_imgproc453.dll+0x917d9]
C [opencv_imgproc453.dll+0x5e17a]
C [jniopencv_imgproc.dll+0x206f3]
C 0x0000000002d31df0

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j org.bytedeco.opencv.global.opencv_imgproc.cvtColor(Lorg/bytedeco/opencv/opencv_core/Mat;Lorg/bytedeco/opencv/opencv_core/Mat;I)V+0
j com.momo.common.Util.buildJavacvBGR2OpenCVRGBA(Lorg/bytedeco/opencv/opencv_core/Mat;Lorg/bytedeco/opencv/opencv_core/Mat;)Lorg/opencv/core/Mat;+3
j com.momo.xinchen.extend.CamShiftDetectService.convert(Lorg/bytedeco/javacv/Frame;)Lorg/bytedeco/javacv/Frame;+266
j com.momo.xinchen.camera.PreviewCameraWithCamShift.output(Lorg/bytedeco/javacv/Frame;)V+5
j com.momo.xinchen.camera.AbstractCameraApplication.grabAndOutput(I)V+134
j com.momo.xinchen.camera.AbstractCameraApplication.action(I)V+6
j com.momo.xinchen.camera.PreviewCameraWithCamShift.main([Ljava/lang/String;)V+35
v ~StubRoutines::call_stub

--------------- P R O C E S S ---------------

Java Threads: ( => current thread )
0x00000000201fc800 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=14848, stack(0x000000007fd10000,0x000000007fe10000)]
0x000000001f11a000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=9096, stack(0x000000007f220000,0x000000007f320000)]
0x000000001f11b800 JavaThread "AWT-Shutdown" [_thread_blocked, id=3724, stack(0x000000007f120000,0x000000007f220000)]
0x000000001f11c000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=4220, stack(0x0000000059f50000,0x000000005a050000)]
0x000000001f11a800 JavaThread "JavaCPP Deallocator" daemon [_thread_blocked, id=8712, stack(0x0000000023490000,0x0000000023590000)]
0x000000001fd36000 JavaThread "Service Thread" daemon [_thread_blocked, id=24768, stack(0x0000000020c90000,0x0000000020d90000)]
0x000000001fca7800 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=18808, stack(0x0000000020b90000,0x0000000020c90000)]
0x000000001fc76800 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=3952, stack(0x0000000020a90000,0x0000000020b90000)]
0x000000001fc75800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=19292, stack(0x0000000020990000,0x0000000020a90000)]
0x000000001fbfe800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=8780, stack(0x0000000020890000,0x0000000020990000)]
0x000000001db5c000 JavaThread "JDWP Command Reader" daemon [_thread_in_native, id=22212, stack(0x000000001efc0000,0x000000001f0c0000)]
0x000000001db58800 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=3188, stack(0x000000001eec0000,0x000000001efc0000)]
0x000000001db55000 JavaThread "JDWP Transport Listener: dt_socket" daemon [_thread_blocked, id=18448, stack(0x000000001edc0000,0x000000001eec0000)]
0x000000001db2b800 JavaThread "Attach Listener" daemon [_thread_blocked, id=8956, stack(0x000000001ecc0000,0x000000001edc0000)]
0x000000001db2a800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=24480, stack(0x000000001ebc0000,0x000000001ecc0000)]
0x000000001c75d800 JavaThread "Finalizer" daemon [_thread_blocked, id=4332, stack(0x000000001ea60000,0x000000001eb60000)]
0x000000001c74f800 JavaThread "Reference Handler" daemon [_thread_blocked, id=16608, stack(0x000000001e960000,0x000000001ea60000)]
=>0x0000000002b26000 JavaThread "main" [_thread_in_native, id=2588, stack(0x0000000002a10000,0x0000000002b10000)]

Other Threads:
0x000000001d9d2800 VMThread [stack: 0x000000001e860000,0x000000001e960000] [id=21032]
0x000000001fdf6000 WatcherThread [stack: 0x0000000020d90000,0x0000000020e90000] [id=6988]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

heap address: 0x00000006c2000000, size: 4064 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
Compressed class space size: 1073741824 Address: 0x00000007c0000000

Heap:
PSYoungGen total 90112K, used 13407K [0x000000076b580000, 0x0000000772500000, 0x00000007c0000000)
eden space 86528K, 11% used [0x000000076b580000,0x000000076bf52c10,0x0000000770a00000)
from space 3584K, 93% used [0x0000000772180000,0x00000007724c53b8,0x0000000772500000)
to space 4096K, 0% used [0x0000000771d00000,0x0000000771d00000,0x0000000772100000)
ParOldGen total 173568K, used 9281K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 5% used [0x00000006c2000000,0x00000006c29104b0,0x00000006cc980000)
Metaspace used 20687K, capacity 20962K, committed 21120K, reserved 1069056K
class space used 1827K, capacity 1909K, committed 1920K, reserved 1048576K

Card table byte_map: [0x00000000120d0000,0x00000000128d0000] byte_map_base: 0x000000000eac0000

Marking Bits: (ParMarkBitMap*) 0x0000000058815ce0
Begin Bits: [0x0000000013620000, 0x00000000175a0000)
End Bits: [0x00000000175a0000, 0x000000001b520000)

Polling page: 0x00000000009c0000

CodeCache: size=245760Kb used=7374Kb max_used=7493Kb free=238385Kb
bounds [0x0000000002d10000, 0x0000000003480000, 0x0000000011d10000]
total_blobs=2730 nmethods=1416 adapters=1235
compilation: enabled

Compilation events (10 events):
Event: 28.701 Thread 0x000000001fca7800 1537 1 sun.java2d.SurfaceDataProxy::isValid (5 bytes)
Event: 28.701 Thread 0x000000001fca7800 nmethod 1537 0x0000000002e66390 code [0x0000000002e664e0, 0x0000000002e665f0]
Event: 28.721 Thread 0x000000001fca7800 1538 3 org.bytedeco.javacv.OpenCVFrameConverter::getMatDepth (85 bytes)
Event: 28.721 Thread 0x000000001fca7800 nmethod 1538 0x0000000002e65f90 code [0x0000000002e66100, 0x0000000002e662f0]
Event: 28.721 Thread 0x000000001fca7800 1539 3 org.bytedeco.javacpp.Pointer:: (105 bytes)
Event: 28.722 Thread 0x000000001fca7800 nmethod 1539 0x0000000002e65310 code [0x0000000002e654c0, 0x0000000002e65d88]
Event: 28.725 Thread 0x000000001fca7800 1540 3 java.lang.Math::floor (5 bytes)
Event: 28.725 Thread 0x000000001fca7800 nmethod 1540 0x0000000002e64ed0 code [0x0000000002e65060, 0x0000000002e65248]
Event: 28.725 Thread 0x000000001fca7800 1541 3 java.lang.StrictMath::floor (12 bytes)
Event: 28.725 Thread 0x000000001fca7800 nmethod 1541 0x0000000002e64b10 code [0x0000000002e64ca0, 0x0000000002e64e28]

GC Heap History (10 events):
Event: 4.007 GC heap before
{Heap before GC invocations=16 (full 0):
PSYoungGen total 102400K, used 98976K [0x000000076b580000, 0x0000000772b00000, 0x00000007c0000000)
eden space 98816K, 100% used [0x000000076b580000,0x0000000771600000,0x0000000771600000)
from space 3584K, 4% used [0x0000000772400000,0x0000000772428000,0x0000000772780000)
to space 3584K, 0% used [0x0000000772780000,0x0000000772780000,0x0000000772b00000)
ParOldGen total 173568K, used 2356K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 1% used [0x00000006c2000000,0x00000006c224d148,0x00000006cc980000)
Metaspace used 10789K, capacity 11000K, committed 11264K, reserved 1060864K
class space used 687K, capacity 725K, committed 768K, reserved 1048576K
Event: 4.008 GC heap after
Heap after GC invocations=16 (full 0):
PSYoungGen total 96768K, used 160K [0x000000076b580000, 0x0000000772800000, 0x00000007c0000000)
eden space 96256K, 0% used [0x000000076b580000,0x000000076b580000,0x0000000771380000)
from space 512K, 31% used [0x0000000772780000,0x00000007727a8000,0x0000000772800000)
to space 3584K, 0% used [0x0000000772100000,0x0000000772100000,0x0000000772480000)
ParOldGen total 173568K, used 2372K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 1% used [0x00000006c2000000,0x00000006c2251148,0x00000006cc980000)
Metaspace used 10789K, capacity 11000K, committed 11264K, reserved 1060864K
class space used 687K, capacity 725K, committed 768K, reserved 1048576K
}
Event: 4.137 GC heap before
{Heap before GC invocations=17 (full 0):
PSYoungGen total 96768K, used 96416K [0x000000076b580000, 0x0000000772800000, 0x00000007c0000000)
eden space 96256K, 100% used [0x000000076b580000,0x0000000771380000,0x0000000771380000)
from space 512K, 31% used [0x0000000772780000,0x00000007727a8000,0x0000000772800000)
to space 3584K, 0% used [0x0000000772100000,0x0000000772100000,0x0000000772480000)
ParOldGen total 173568K, used 2372K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 1% used [0x00000006c2000000,0x00000006c2251148,0x00000006cc980000)
Metaspace used 10789K, capacity 11000K, committed 11264K, reserved 1060864K
class space used 687K, capacity 725K, committed 768K, reserved 1048576K
Event: 4.138 GC heap after
Heap after GC invocations=17 (full 0):
PSYoungGen total 97280K, used 160K [0x000000076b580000, 0x0000000772800000, 0x00000007c0000000)
eden space 93696K, 0% used [0x000000076b580000,0x000000076b580000,0x0000000771100000)
from space 3584K, 4% used [0x0000000772100000,0x0000000772128000,0x0000000772480000)
to space 3584K, 0% used [0x0000000772480000,0x0000000772480000,0x0000000772800000)
ParOldGen total 173568K, used 2436K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 1% used [0x00000006c2000000,0x00000006c2261148,0x00000006cc980000)
Metaspace used 10789K, capacity 11000K, committed 11264K, reserved 1060864K
class space used 687K, capacity 725K, committed 768K, reserved 1048576K
}
Event: 5.509 GC heap before
{Heap before GC invocations=18 (full 0):
PSYoungGen total 97280K, used 93856K [0x000000076b580000, 0x0000000772800000, 0x00000007c0000000)
eden space 93696K, 100% used [0x000000076b580000,0x0000000771100000,0x0000000771100000)
from space 3584K, 4% used [0x0000000772100000,0x0000000772128000,0x0000000772480000)
to space 3584K, 0% used [0x0000000772480000,0x0000000772480000,0x0000000772800000)
ParOldGen total 173568K, used 2436K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 1% used [0x00000006c2000000,0x00000006c2261148,0x00000006cc980000)
Metaspace used 13538K, capacity 13694K, committed 13952K, reserved 1062912K
class space used 1019K, capacity 1046K, committed 1152K, reserved 1048576K
Event: 5.511 GC heap after
Heap after GC invocations=18 (full 0):
PSYoungGen total 93184K, used 1664K [0x000000076b580000, 0x0000000772680000, 0x00000007c0000000)
eden space 91136K, 0% used [0x000000076b580000,0x000000076b580000,0x0000000770e80000)
from space 2048K, 81% used [0x0000000772480000,0x0000000772620000,0x0000000772680000)
to space 3584K, 0% used [0x0000000771f80000,0x0000000771f80000,0x0000000772300000)
ParOldGen total 173568K, used 2460K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 1% used [0x00000006c2000000,0x00000006c2267148,0x00000006cc980000)
Metaspace used 13538K, capacity 13694K, committed 13952K, reserved 1062912K
class space used 1019K, capacity 1046K, committed 1152K, reserved 1048576K
}
Event: 21.414 GC heap before
{Heap before GC invocations=19 (full 0):
PSYoungGen total 93184K, used 92800K [0x000000076b580000, 0x0000000772680000, 0x00000007c0000000)
eden space 91136K, 100% used [0x000000076b580000,0x0000000770e80000,0x0000000770e80000)
from space 2048K, 81% used [0x0000000772480000,0x0000000772620000,0x0000000772680000)
to space 3584K, 0% used [0x0000000771f80000,0x0000000771f80000,0x0000000772300000)
ParOldGen total 173568K, used 2460K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 1% used [0x00000006c2000000,0x00000006c2267148,0x00000006cc980000)
Metaspace used 19522K, capacity 19760K, committed 20096K, reserved 1067008K
class space used 1729K, capacity 1810K, committed 1920K, reserved 1048576K
Event: 21.416 GC heap after
Heap after GC invocations=19 (full 0):
PSYoungGen total 90624K, used 1638K [0x000000076b580000, 0x0000000772500000, 0x00000007c0000000)
eden space 88576K, 0% used [0x000000076b580000,0x000000076b580000,0x0000000770c00000)
from space 2048K, 79% used [0x0000000771f80000,0x0000000772119910,0x0000000772180000)
to space 3584K, 0% used [0x0000000772180000,0x0000000772180000,0x0000000772500000)
ParOldGen total 173568K, used 2828K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 1% used [0x00000006c2000000,0x00000006c22c3148,0x00000006cc980000)
Metaspace used 19522K, capacity 19760K, committed 20096K, reserved 1067008K
class space used 1729K, capacity 1810K, committed 1920K, reserved 1048576K
}
Event: 24.468 GC heap before
{Heap before GC invocations=20 (full 0):
PSYoungGen total 90624K, used 89949K [0x000000076b580000, 0x0000000772500000, 0x00000007c0000000)
eden space 88576K, 99% used [0x000000076b580000,0x0000000770bbde80,0x0000000770c00000)
from space 2048K, 79% used [0x0000000771f80000,0x0000000772119910,0x0000000772180000)
to space 3584K, 0% used [0x0000000772180000,0x0000000772180000,0x0000000772500000)
ParOldGen total 173568K, used 2828K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 1% used [0x00000006c2000000,0x00000006c22c3148,0x00000006cc980000)
Metaspace used 20473K, capacity 20738K, committed 21120K, reserved 1069056K
class space used 1813K, capacity 1877K, committed 1920K, reserved 1048576K
Event: 24.470 GC heap after
Heap after GC invocations=20 (full 0):
PSYoungGen total 90112K, used 3348K [0x000000076b580000, 0x0000000772500000, 0x00000007c0000000)
eden space 86528K, 0% used [0x000000076b580000,0x000000076b580000,0x0000000770a00000)
from space 3584K, 93% used [0x0000000772180000,0x00000007724c53b8,0x0000000772500000)
to space 4096K, 0% used [0x0000000771d00000,0x0000000771d00000,0x0000000772100000)
ParOldGen total 173568K, used 9281K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
object space 173568K, 5% used [0x00000006c2000000,0x00000006c29104b0,0x00000006cc980000)
Metaspace used 20473K, capacity 20738K, committed 21120K, reserved 1069056K
class space used 1813K, capacity 1877K, committed 1920K, reserved 1048576K
}

Deoptimization events (10 events):
Event: 20.757 Thread 0x0000000002b26000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003374e30 method=java.util.HashMap.hash(Ljava/lang/Object;)I @ 1
Event: 20.759 Thread 0x0000000002b26000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000337f1ec method=java.util.HashMap.hash(Ljava/lang/Object;)I @ 1
Event: 20.819 Thread 0x00000000201fc800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000318ce00 method=java.lang.ThreadLocal.get()Ljava/lang/Object; @ 11
Event: 20.823 Thread 0x000000001f11a000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000032b2ea8 method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 203
Event: 20.823 Thread 0x000000001f11a000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000032b2ea8 method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 203
Event: 20.823 Thread 0x000000001f11a000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000032b2ea8 method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 203
Event: 20.904 Thread 0x0000000002b26000 Uncommon trap: reason=range_check action=make_not_entrant pc=0x000000000330f9f0 method=org.bytedeco.javacpp.Loader.loadLibrary(Ljava/lang/Class;[Ljava/net/URL;Ljava/lang/String;[Ljava/lang/String;)Ljava/lang/String; @ 86
Event: 23.892 Thread 0x0000000002b26000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000031a0e70 method=sun.misc.URLClassPath$FileLoader.getResource(Ljava/lang/String;Z)Lsun/misc/Resource; @ 139
Event: 24.418 Thread 0x0000000002b26000 Uncommon trap: reason=range_check action=make_not_entrant pc=0x0000000002fed804 method=java.util.zip.ZipUtils.get16([BI)I @ 10
Event: 24.461 Thread 0x0000000002b26000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000030f5aec method=org.bytedeco.javacv.Java2DFrameConverter.flipCopyWithGamma(Ljava/nio/ByteBuffer;IILjava/nio/ByteBuffer;IIZDZI)V @ 46

Classes redefined (0 events):
No events

Internal exceptions (10 events):
Event: 20.638 Thread 0x0000000002b26000 Exception <a 'java/io/FileNotFoundException'> (0x000000076efd19e0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u221\13320\hotspot\src\share\vm\prims\jni.cpp, line 710]
Event: 20.664 Thread 0x0000000002b26000 Exception <a 'java/lang/NoSuchFieldError': method resolution failed> (0x000000076f15d9d8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u221\13320\hotspot\src\share\vm\prims\methodHandles.cpp, line 1167]
Event: 20.666 Thread 0x0000000002b26000 Exception <a 'java/lang/NoSuchFieldError': method resolution failed> (0x000000076f16be08) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u221\13320\hotspot\src\share\vm\prims\methodHandles.cpp, line 1167]
Event: 20.700 Thread 0x0000000002b26000 Exception <a 'java/io/FileNotFoundException'> (0x000000076f356dd8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u221\13320\hotspot\src\share\vm\prims\jni.cpp, line 710]
Event: 20.754 Thread 0x0000000002b26000 Implicit null exception at 0x0000000002f36ad9 to 0x0000000002f36fd1
Event: 20.754 Thread 0x0000000002b26000 Implicit null exception at 0x0000000002e6e256 to 0x0000000002e6e6f9
Event: 20.757 Thread 0x0000000002b26000 Implicit null exception at 0x0000000002f488d4 to 0x0000000002f48b6d
Event: 20.757 Thread 0x0000000002b26000 Implicit null exception at 0x0000000003374d98 to 0x0000000003374e26
Event: 20.759 Thread 0x0000000002b26000 Implicit null exception at 0x000000000337f16f to 0x000000000337f1dd
Event: 20.819 Thread 0x00000000201fc800 Implicit null exception at 0x000000000318cca1 to 0x000000000318cde1

Events (10 events):
Event: 24.491 Thread 0x0000000002b26000 DEOPT PACKING pc=0x0000000002f387c9 sp=0x0000000002b0dab0
Event: 24.491 Thread 0x0000000002b26000 DEOPT UNPACKING pc=0x0000000002d57890 sp=0x0000000002b0d800 mode 1
Event: 24.491 Thread 0x0000000002b26000 DEOPT PACKING pc=0x0000000002f1bf84 sp=0x0000000002b0db30
Event: 24.491 Thread 0x0000000002b26000 DEOPT UNPACKING pc=0x0000000002d57890 sp=0x0000000002b0d950 mode 1
Event: 24.491 Thread 0x0000000002b26000 DEOPT PACKING pc=0x0000000002f1bd1c sp=0x0000000002b0dcc0
Event: 24.491 Thread 0x0000000002b26000 DEOPT UNPACKING pc=0x0000000002d57890 sp=0x0000000002b0dae0 mode 1
Event: 24.491 loading class java/lang/StrictMath
Event: 24.492 loading class java/lang/StrictMath done
Event: 24.504 Thread 0x0000000002b26000 DEOPT PACKING pc=0x0000000002eacef2 sp=0x0000000002b0ec80
Event: 24.504 Thread 0x0000000002b26000 DEOPT UNPACKING pc=0x0000000002d57890 sp=0x0000000002b0ea40 mode 0

Dynamic libraries:
0x00007ff690eb0000 - 0x00007ff690ee7000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\bin\java.exe
0x00007ffa64c90000 - 0x00007ffa64e88000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffa62ea0000 - 0x00007ffa62f5f000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007ffa626d0000 - 0x00007ffa629c6000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007ffa5f760000 - 0x00007ffa5f7f1000 C:\WINDOWS\SYSTEM32\apphelp.dll
0x00007ffa15050000 - 0x00007ffa154e6000 C:\WINDOWS\SYSTEM32\AcLayers.DLL
0x00007ffa64b00000 - 0x00007ffa64b9e000 C:\WINDOWS\System32\msvcrt.dll
0x00007ffa63700000 - 0x00007ffa6389d000 C:\WINDOWS\System32\USER32.dll
0x00007ffa62590000 - 0x00007ffa625b2000 C:\WINDOWS\System32\win32u.dll
0x00007ffa62fa0000 - 0x00007ffa62fcc000 C:\WINDOWS\System32\GDI32.dll
0x00007ffa62470000 - 0x00007ffa62585000 C:\WINDOWS\System32\gdi32full.dll
0x00007ffa62630000 - 0x00007ffa626cd000 C:\WINDOWS\System32\msvcp_win.dll
0x00007ffa62370000 - 0x00007ffa62470000 C:\WINDOWS\System32\ucrtbase.dll
0x00007ffa63f90000 - 0x00007ffa646d4000 C:\WINDOWS\System32\SHELL32.dll
0x00007ffa63a60000 - 0x00007ffa63ab5000 C:\WINDOWS\System32\SHLWAPI.dll
0x00007ffa647c0000 - 0x00007ffa6486f000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007ffa648d0000 - 0x00007ffa6496c000 C:\WINDOWS\System32\sechost.dll
0x00007ffa63180000 - 0x00007ffa632a6000 C:\WINDOWS\System32\RPCRT4.dll
0x0000000000740000 - 0x0000000000743000 C:\WINDOWS\SYSTEM32\sfc.dll
0x00007ffa47130000 - 0x00007ffa471c8000 C:\WINDOWS\SYSTEM32\WINSPOOL.DRV
0x00007ffa3cd40000 - 0x00007ffa3cd52000 C:\WINDOWS\SYSTEM32\sfc_os.DLL
0x00007ffa62f60000 - 0x00007ffa62f90000 C:\WINDOWS\System32\IMM32.DLL
0x00007ffa4d920000 - 0x00007ffa4dbba000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1110_none_60b5254171f9507e\COMCTL32.dll
0x000000005a140000 - 0x000000005a14d000 C:\Program Files (x86)\360\360Safe\safemon\SafeWrapper.dll
0x00007ffa49720000 - 0x00007ffa497cc000 C:\Program Files (x86)\360\360Safe\safemon\libzdtp64.dll
0x00007ffa61f00000 - 0x00007ffa61f0a000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00000000588a0000 - 0x0000000058972000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\msvcr100.dll
0x0000000057ff0000 - 0x0000000058895000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\server\jvm.dll
0x00007ffa62f90000 - 0x00007ffa62f98000 C:\WINDOWS\System32\PSAPI.DLL
0x00007ffa5b320000 - 0x00007ffa5b329000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007ffa4c270000 - 0x00007ffa4c297000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffa639e0000 - 0x00007ffa63a4b000 C:\WINDOWS\System32\WS2_32.dll
0x00007ffa5c820000 - 0x00007ffa5c82f000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\verify.dll
0x00007ffa51e20000 - 0x00007ffa51e49000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\java.dll
0x00007ffa45a70000 - 0x00007ffa45aa5000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\jdwp.dll
0x00007ffa5b700000 - 0x00007ffa5b708000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\npt.dll
0x00007ffa4de60000 - 0x00007ffa4de83000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\instrument.dll
0x00007ffa5b100000 - 0x00007ffa5b116000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\zip.dll
0x00007ffa602b0000 - 0x00007ffa60a43000 C:\WINDOWS\SYSTEM32\windows.storage.dll
0x00007ffa632b0000 - 0x00007ffa63604000 C:\WINDOWS\System32\combase.dll
0x00007ffa61d60000 - 0x00007ffa61d8e000 C:\WINDOWS\SYSTEM32\Wldp.dll
0x00007ffa64970000 - 0x00007ffa64a1d000 C:\WINDOWS\System32\SHCORE.dll
0x00007ffa622b0000 - 0x00007ffa622cf000 C:\WINDOWS\SYSTEM32\profapi.dll
0x00007ffa5b0f0000 - 0x00007ffa5b0f9000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\dt_socket.dll
0x00007ffa61ac0000 - 0x00007ffa61b2a000 C:\WINDOWS\system32\mswsock.dll
0x00007ff9e4960000 - 0x00007ff9e7a4c000 D:\move\dynamic_face\lib\opencv_java453.dll
0x00007ffa638b0000 - 0x00007ffa639da000 C:\WINDOWS\System32\ole32.dll
0x00007ffa63630000 - 0x00007ffa636fd000 C:\WINDOWS\System32\OLEAUT32.dll
0x00007ffa4a860000 - 0x00007ffa4aa1c000 C:\WINDOWS\SYSTEM32\MFPlat.DLL
0x00007ffa4d7e0000 - 0x00007ffa4d864000 C:\WINDOWS\SYSTEM32\MF.dll
0x00007ffa43200000 - 0x00007ffa4330a000 C:\WINDOWS\SYSTEM32\MFReadWrite.dll
0x00007ffa62a60000 - 0x00007ffa62aae000 C:\WINDOWS\System32\cfgmgr32.dll
0x00007ffa18130000 - 0x00007ffa185be000 C:\WINDOWS\SYSTEM32\MFCORE.DLL
0x00007ffa62ab0000 - 0x00007ffa62c0e000 C:\WINDOWS\System32\CRYPT32.dll
0x00007ffa62cc0000 - 0x00007ffa62ce7000 C:\WINDOWS\System32\bcrypt.dll
0x00007ffa618d0000 - 0x00007ffa6191b000 C:\WINDOWS\SYSTEM32\powrprof.dll
0x00007ffa5db80000 - 0x00007ffa5db89000 C:\WINDOWS\SYSTEM32\ksuser.dll
0x00007ffa60b50000 - 0x00007ffa60b62000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
0x00007ffa61cb0000 - 0x00007ffa61cbc000 C:\WINDOWS\SYSTEM32\CRYPTBASE.DLL
0x00007ffa629d0000 - 0x00007ffa62a52000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ffa4d760000 - 0x00007ffa4d794000 C:\WINDOWS\SYSTEM32\RTWorkQ.DLL
0x00007ffa61740000 - 0x00007ffa61752000 C:\WINDOWS\SYSTEM32\UMPDC.dll
0x0000000022220000 - 0x0000000022223000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-locale-l1-1-0.dll
0x00007ffa51580000 - 0x00007ffa5159a000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\net.dll
0x00007ffa50b20000 - 0x00007ffa50d0c000 C:\WINDOWS\SYSTEM32\urlmon.dll
0x00007ffa51020000 - 0x00007ffa512d1000 C:\WINDOWS\SYSTEM32\iertutil.dll
0x00007ffa52750000 - 0x00007ffa52778000 C:\WINDOWS\SYSTEM32\srvcli.dll
0x00007ffa617a0000 - 0x00007ffa617ac000 C:\WINDOWS\SYSTEM32\netutils.dll
0x00007ffa4d6d0000 - 0x00007ffa4d6e2000 D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\bin\nio.dll
0x0000000022230000 - 0x0000000022234000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-string-l1-1-0.dll
0x0000000022240000 - 0x0000000022244000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-stdio-l1-1-0.dll
0x0000000022250000 - 0x0000000022255000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-math-l1-1-0.dll
0x0000000022260000 - 0x0000000022263000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-heap-l1-1-0.dll
0x0000000022270000 - 0x0000000022274000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-runtime-l1-1-0.dll
0x0000000022280000 - 0x0000000022284000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-convert-l1-1-0.dll
0x0000000022290000 - 0x0000000022293000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-environment-l1-1-0.dll
0x00000000222a0000 - 0x00000000222a3000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-time-l1-1-0.dll
0x00000000222b0000 - 0x00000000222b3000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-filesystem-l1-1-0.dll
0x00000000222c0000 - 0x00000000222c3000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-utility-l1-1-0.dll
0x00000000222d0000 - 0x00000000222d5000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-multibyte-l1-1-0.dll
0x00000000222e0000 - 0x00000000222e3000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-conio-l1-1-0.dll
0x00000000222f0000 - 0x0000000022300000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-private-l1-1-0.dll
0x0000000022470000 - 0x0000000022473000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-crt-process-l1-1-0.dll
0x0000000022480000 - 0x0000000022483000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-console-l1-2-0.dll
0x0000000022440000 - 0x0000000022443000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-string-l1-1-0.dll
0x0000000022450000 - 0x0000000022453000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-errorhandling-l1-1-0.dll
0x0000000022460000 - 0x0000000022463000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-timezone-l1-1-0.dll
0x0000000022300000 - 0x0000000022304000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-file-l1-1-0.dll
0x0000000022310000 - 0x0000000022313000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-namedpipe-l1-1-0.dll
0x0000000022320000 - 0x0000000022323000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-handle-l1-1-0.dll
0x0000000022330000 - 0x0000000022333000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-file-l2-1-0.dll
0x0000000022340000 - 0x0000000022343000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-heap-l1-1-0.dll
0x0000000022350000 - 0x0000000022353000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-libraryloader-l1-1-0.dll
0x0000000022360000 - 0x0000000022363000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-synch-l1-1-0.dll
0x0000000022370000 - 0x0000000022373000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-processthreads-l1-1-0.dll
0x0000000022380000 - 0x0000000022383000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-processenvironment-l1-1-0.dll
0x0000000022390000 - 0x0000000022393000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-datetime-l1-1-0.dll
0x00000000223a0000 - 0x00000000223a3000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-localization-l1-2-0.dll
0x00000000223b0000 - 0x00000000223b3000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-sysinfo-l1-1-0.dll
0x00000000223c0000 - 0x00000000223c3000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-synch-l1-2-0.dll
0x00000000223d0000 - 0x00000000223d3000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-console-l1-1-0.dll
0x00000000223e0000 - 0x00000000223e3000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-debug-l1-1-0.dll
0x00000000223f0000 - 0x00000000223f3000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-rtlsupport-l1-1-0.dll
0x0000000022400000 - 0x0000000022403000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-processthreads-l1-1-1.dll
0x0000000022410000 - 0x0000000022413000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-file-l1-2-0.dll
0x0000000022420000 - 0x0000000022423000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-profile-l1-1-0.dll
0x0000000022430000 - 0x0000000022433000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-memory-l1-1-0.dll
0x0000000023460000 - 0x0000000023463000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-util-l1-1-0.dll
0x0000000023470000 - 0x0000000023473000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\api-ms-win-core-interlocked-l1-1-0.dll
0x00007ffa2f2d0000 - 0x00007ffa2f3d0000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\ucrtbase.dll
0x00007ffa45500000 - 0x00007ffa4551b000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\vcruntime140.dll
0x00007ffa592c0000 - 0x00007ffa592cc000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\vcruntime140_1.dll
0x00007ffa365c0000 - 0x00007ffa3664d000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\msvcp140.dll
0x00007ffa532f0000 - 0x00007ffa532f9000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\msvcp140_1.dll
0x00007ffa431b0000 - 0x00007ffa431fe000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\concrt140.dll
0x00007ffa44010000 - 0x00007ffa44041000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\vcomp140.dll
0x00007ffa4f7a0000 - 0x00007ffa4f7ae000 C:\Users\Ȯޱ.javacpp\cache\javacpp-1.5.6-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jnijavacpp.dll
0x00007ff9f7190000 - 0x00007ff9f8e0f000 C:\Users\Ȯޱ.javacpp\cache\openblas-0.3.17-1.5.6-windows-x86_64.jar\org\bytedeco\openblas\windows-x86_64\libopenblas_nolapack.dll
0x00007ffa3d930000 - 0x00007ffa3d98c000 C:\Users\Ȯޱ.javacpp\cache\openblas-0.3.17-1.5.6-windows-x86_64.jar\org\bytedeco\openblas\windows-x86_64\jniopenblas_nolapack.dll
0x00007ff9e2ce0000 - 0x00007ff9e495f000 C:\Users\Ȯޱ.javacpp\cache\openblas-0.3.17-1.5.6-windows-x86_64.jar\org\bytedeco\openblas\windows-x86_64\libopenblas.dll
0x00007ff9e1390000 - 0x00007ff9e2741000 C:\Users\Ȯޱ.javacpp\cache\openblas-0.3.17-1.5.6-windows-x86_64.jar\org\bytedeco\openblas\windows-x86_64\jniopenblas.dll
0x00007ffa07930000 - 0x00007ffa07dba000 C:\Users\Ȯޱ.javacpp\cache\opencv-4.5.3-1.5.6-windows-x86_64.jar\org\bytedeco\opencv\windows-x86_64\opencv_core453.dll
0x00007ff9e0c50000 - 0x00007ff9e1387000 C:\Users\Ȯޱ.javacpp\cache\opencv-4.5.3-1.5.6-windows-x86_64.jar\org\bytedeco\opencv\windows-x86_64\opencv_imgproc453.dll
0x00007ffa12200000 - 0x00007ffa12492000 C:\Users\Ȯޱ.javacpp\cache\opencv-4.5.3-1.5.6-windows-x86_64.jar\org\bytedeco\opencv\windows-x86_64\jniopencv_core.dll
0x00007ffa11cd0000 - 0x00007ffa11fb6000 C:\Users\Ȯޱ.javacpp\cache\ffmpeg-4.4-1.5.6-windows-x86_64-gpl.jar\org\bytedeco\ffmpeg\windows-x86_64-gpl\avutil-56.dll
0x00007ffa28ee0000 - 0x00007ffa28ff9000 C:\Users\Ȯޱ.javacpp\cache\ffmpeg-4.4-1.5.6-windows-x86_64-gpl.jar\org\bytedeco\ffmpeg\windows-x86_64-gpl\jniavutil.dll
0x00007ffa17bf0000 - 0x00007ffa17d13000 C:\Users\Ȯޱ.javacpp\cache\opencv-4.5.3-1.5.6-windows-x86_64.jar\org\bytedeco\opencv\windows-x86_64\jniopencv_imgproc.dll
0x00007ff9f6d60000 - 0x00007ff9f7186000 C:\Users\Ȯޱ.javacpp\cache\opencv-4.5.3-1.5.6-windows-x86_64.jar\org\bytedeco\opencv\windows-x86_64\opencv_imgcodecs453.dll

VM Arguments:
jvm_args: -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:63883,suspend=y,server=n -Djava.library.path=D:\move\dynamic_face\lib -Dmodel.file.path=D:\move\dynamic_face\model\haarcascade_frontalface_alt.xml -javaagent:C:\Users\Ȯޱ\AppData\Local\JetBrains\IntelliJIdea2020.1\captureAgent\debugger-agent.jar=file:/C:/Users/%E7%8A%AC%E8%96%87/AppData/Local/Temp/capture.props -Dfile.encoding=UTF-8
java_command: com.momo.xinchen.camera.PreviewCameraWithCamShift
java_class_path (initial): D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\charsets.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\deploy.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\access-bridge-64.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\cldrdata.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\dnsns.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\jaccess.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\jfxrt.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\localedata.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\nashorn.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\sunec.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\sunjce_provider.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\sunmscapi.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\sunpkcs11.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\ext\zipfs.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\javaws.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\jce.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\jfr.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\jfxswt.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\jsse.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\management-agent.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\plugin.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\resources.jar;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\jre\lib\rt.jar;D:\MOMO\workspace\coding\MOMO\authority\momo-cloud-services\Hadoop\javacv\target\classes;D:\MOMO\soft_install\360\repo\org\springframework\boot\spring-boot-starter-web\2.6.13\spring-boot-starter-web-2.6.13.jar;D:\MOMO\soft_install\360\repo\org\springframework\boot\spring-boot-starter\2.6.13\spring-boot-starter-2.6.13.jar;D:\MOMO\soft_install\360\repo\org\springframework\boot\spring-boot\2.6.13\spring-boot-2.6.13.jar;D:\MOMO\soft_install\360\repo\org\springframework\boot\spring-boot-a
Launcher Type: SUN_STANDARD

Environment Variables:
JAVA_HOME=D:\MOMO\soft_install\java1.8\jdk1.8.0_221
CLASSPATH=.;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\lib;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\lib\tools.jar
PATH=D:\MOMO\soft_install\360\Python\Scripts;D:\MOMO\soft_install\360\Python;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0;C:\WINDOWS\System32\OpenSSH;D:\MOMO\soft_install\360\Git\cmd;D:\MOMO\soft_install\java1.8\jdk1.8.0_221\bin;D:\MOMO\soft_install\apache-maven-3.6.3\bin;D:\MOMO\soft_install\360\nodejs;D:\MOMO\soft_install\360\nodejs\node_global;D:\MOMO\soft_install\360\Linux\Xftp 7;D:\MOMO\soft_install\360\Linux\Xshell 7;D:\MOMO\soft_install\360\neo4j-community-5.6.0\bin\bin;D:\MOMO\soft_install\360\TortoiseGit\bin;D:\MOMO\soft_install\360\Python312\Scripts;D:\MOMO\soft_install\360\Python312;C:\Users\Ȯޱ\AppData\Local\Microsoft\WindowsApps;C:\Users\Ȯޱ\AppData\Roaming\npm
USERNAME=Ȯޱ
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 165 Stepping 2, GenuineIntel

--------------- S Y S T E M ---------------

OS: Windows 10.0 , 64 bit Build 19041 (10.0.19041.2913)

CPU:total 8 (initial active 8) (4 cores per cpu, 2 threads per core) family 6 model 165 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx

Memory: 4k page, physical 16642356k(7779472k free), swap 24244532k(2464560k free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (25.221-b11) for windows-amd64 JRE (1.8.0_221-b11), built on Jul 4 2019 04:39:29 by "java_re" with MS VC++ 10.0 (VS2010)

time: Fri Oct 20 16:45:35 2023
timezone: ֐¹ú±ꗼʱ¼䍊elapsed time: 29 seconds (0d 0h 0m 29s)

`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.