if (m_url.indexOf("wss://") >= 0) { QSslConfiguration sslConfiguration = m_pWebSocket->sslConfiguration(); sslConfiguration.setPeerVerifyMode(QSslSock ...
分类:
Web程序 时间:
2021-06-11 17:35:06
阅读次数:
0
create temporary table temp_t like t1; alter table temp_t add index(b); insert into temp_t select * from t2 where b>=1 and b<=2000; select * from t1 j ...
分类:
其他好文 时间:
2021-06-10 18:34:39
阅读次数:
0
图像加法 你可以使用函数cv2.add() 将两幅图像进行加法运算,当然也可以直接使 用numpy,res=img1+img。两幅图像的大小,类型必须一致,或者第二个 图像可以使一个简单的标量值。 import numpy as np import cv2 from matplotlib impor ...
分类:
编程语言 时间:
2021-06-10 18:30:52
阅读次数:
0
k8s证书浅析 来源:https://zhuanlan.zhihu.com/p/123858320 建K8S集群 kubeadm 会生成的很多证书 [root@k8s-master01 ~]# cd /etc/kubernetes/pki [root@k8s-master01 pki]# tree ...
分类:
其他好文 时间:
2021-06-10 18:23:04
阅读次数:
0
nginx中文文档:http://www.nginx.cn/doc/index.html 1.到官网下载nginx的压缩包: https://nginx.org/ 2.解压到相应的目录,比如我是e盘 然后修改目录名字为nginx,进入nginx目录 双击nginx.exe 来启动nginx 注意:启 ...
分类:
其他好文 时间:
2021-06-10 18:14:55
阅读次数:
0
目录解释 /bin:bin是Binary的缩写, 这个目录存放着最经常使用的命令。 /boot:这里存放的是启动Linux时使用的一些核心文件,包括一些连接文件以及镜像文 件。 /dev:dev是Device(设备)的缩写, 存放的是Linux的外部设备,在Linux中访问设备的方 式和访问文件的方 ...
分类:
系统相关 时间:
2021-06-10 17:42:28
阅读次数:
0
这是一个VUEX的修改值的流程,先通过组键使用——请求后台提交到Mutatlons然后通过state修改 首先要通过命令下载vuex,或通过新建目录时就一起安装一个。 示例: 在store,index下新建一个值为dnum:0 然后在需要使用修改dnum值的页面引用 home页面 $store 是在 ...
分类:
其他好文 时间:
2021-06-08 23:26:57
阅读次数:
0
import turtle from random import * from math import * turtle.seth(90) def tree(n,l): turtle.down() turtle.pencolor('#410200') turtle.pensize(n*3) turt ...
分类:
其他好文 时间:
2021-06-08 23:16:21
阅读次数:
0
if (!-d $request_filename){ set $rule_0 1$rule_0; } if (!-f $request_filename){ set $rule_0 2$rule_0; } if ($rule_0 = "21"){ rewrite ^/(.*)$ /index.ph ...
分类:
其他好文 时间:
2021-06-08 22:57:09
阅读次数:
0
问题如下: 解决 position: relative; z-index: 1; ...
分类:
移动开发 时间:
2021-06-08 22:50:54
阅读次数:
0