文章目录 1、使用windbg中的umdh检查 1.1、 工具下载 1.2、环境配置 1.3、利用工具umdh(user-mode dump heap)分析 1.4、利用umdh创建heap快照 2、使用windbg中的htrace检查 2.1、准备工作 2.2、快照 2.3 、执行操作,比较差异 ...
分类:
数据库 时间:
2021-02-03 10:58:43
阅读次数:
0
二维码是越来越流行了,很多地方都有可能是使用到。如果是静态的二维码还是比较好处理的,通过在线工具就可以直接生成一张二维码图片,比如:草料二维码。但有的时候是需要动态生成的(根据动态数据生成),这个使用在线就工具就无法实现了。最好是能在代码中直接生成一个二维码图片,这里我就介绍下使用QRCoder类库 ...
分类:
其他好文 时间:
2021-02-03 10:57:23
阅读次数:
0
Blazor 极简登录模型 (适用Server Side和WASM Client) 不少介绍Blazor网站包括微软自己的文档网站,对Blazor采用的认证/授权机制有详细的介绍,但是往往给出的是Identity Server的例子。搜索引擎可以找到的如: https://chrissainty.c ...
分类:
其他好文 时间:
2021-02-03 10:41:02
阅读次数:
0
gitlab环境搭建,卸载,汉化 环境搭建 安装依赖软件 yum -y install policycoreutils openssh-server openssh-clients postfix 设置postfix开机自启,并启动,postfix支持gitlab发信功能 systemctl ena ...
分类:
其他好文 时间:
2021-02-03 10:36:52
阅读次数:
0
Windows常用快捷键 Ctrl+c 复制 Ctrl+v 粘贴 Ctrl+a 全选 Ctrl+x 剪切 Ctrl+z 撤销 Ctrl+s 保存 Alt+F4 关闭窗口(Mac里的Alt键是option) Windows+r 运行键(Mac里的Windows键是command) 任务管理键 Ctrl ...
System.Windows.Forms.ColorDialog colorDialog = new System.Windows.Forms.ColorDialog(); //允许使用该对话框的自定义颜色 colorDialog.AllowFullOpen = true; colorDialog. ...
[root@Server-qnrsyp system]# wget --no-check-certificate https://dl.grafana.com/oss/release/grafana_7.3.7_amd64.deb --2021-02-02 00:21:25-- https://dl ...
分类:
其他好文 时间:
2021-02-02 11:34:53
阅读次数:
0
说明 maxscale 配置没有问题,但是就是不好使。 报错如下: warning: [mariadbmon] The current master server 'server1' is no longer valid because it has been down over 5 (failco ...
分类:
数据库 时间:
2021-02-02 11:13:27
阅读次数:
0
基于layui的锁屏功能 //锁屏 function lockPage() { layer.open({ title: false, type: 1, content: $("#lock-box"), closeBtn: 0, shade: 0.9 }); }; $("#SP").on("click ...
分类:
Web程序 时间:
2021-02-02 11:01:20
阅读次数:
0
import socketfrom threading import Threadserver = socket.socket(socket.AF_INET,socket.SOCK_STREAM)server.bind(('127.0.0.1',8080))server.listen(5)# def ...
分类:
其他好文 时间:
2021-02-02 10:39:57
阅读次数:
0