在需要的请求中注入注解 @CrossOrigin(origins = {"http://172.12.0.123:8080", "https://h5.sample.com"}, maxAge = 3600) ...
分类:
编程语言 时间:
2021-01-08 10:38:27
阅读次数:
0
将本地 tag 标签推送到远程: git push origin v0.1.0 当分支名与 tag 标签名相同时, 会出现无法推送指定标签的问题: error: src refspec v0.1.0 matches more than one. 尝试使用以下命令: git push origin r ...
分类:
其他好文 时间:
2021-01-07 11:55:33
阅读次数:
0
Find a Corresponding Node of a Binary Tree in a Clone of That Tree (M) 题目 Given two binary trees original and cloned and given a reference to a node t ...
分类:
其他好文 时间:
2021-01-06 11:39:40
阅读次数:
0
本文选取并翻译自:https://saywebsolutions.com/blog/git-github-error-fatal-couldnt-find-remote-ref-master 如果出现该错误提示,可能是因为使用了旧命令: git pull origin master master现在 ...
分类:
其他好文 时间:
2021-01-04 11:08:12
阅读次数:
0
从远程仓库下载到本地 git clone 仓库地址 本地修改的文件添加上传队列 git add * 上传队列中的文件提交到本地仓库 git commit -m '提交的说明' 将本地仓库的内容推送到远程仓库 git push origin master 拉取远程仓库内容到本地,更新代码 git pu ...
分类:
其他好文 时间:
2020-12-31 12:46:06
阅读次数:
0
一、简介 1、postMessage()方法允许来自不同源的脚本采用异步方式进行有限的通信,可以实现跨文本档、多窗口、跨域消息传递 2、postMessage(data,origin)方法接受两个参数: (1)data:要传递的数据,html5规范中提到该参数可以是JavaScript的任意基本类型 ...
分类:
其他好文 时间:
2020-12-31 12:30:47
阅读次数:
0
Windows下使用spyder训练SSD TensorFlow,并进行客流检测 背景 之前的尝试中, "用yolo v3训练自己的模型并进行客流检测" 。得到的结果其实已经很好,增加训练样本和训练周期,最后也取得了如下的效果,但是实际在视频中检测时候,抖动现象还是比较严重的。 尝试使用另一种实时检 ...
分类:
其他好文 时间:
2020-12-25 11:58:25
阅读次数:
0
1.在本地新建一文件夹用来存放项目代码 (eg:xny) 2.进入该文件,右键选择 git bush here,打开命令窗后,输入初始化命令:git init 3.命令行:git remote add origin 后面是项目所在远程仓库地址(不是远程分支名称,而是仓库地址) 4.拉取远程分支到本地 ...
分类:
其他好文 时间:
2020-12-23 12:13:26
阅读次数:
0
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>overla ...
分类:
其他好文 时间:
2020-12-16 11:41:34
阅读次数:
3
今天闲来无事,学习Zookeeper,下载了Zookeeper的最新版本3.5。启动以后显示: ZooKeeper JMX enabled by default Using config: /opt/zookeeper-3.5.4-beta/bin/../conf/zoo.cfg Starting ...
分类:
其他好文 时间:
2020-12-15 12:55:12
阅读次数:
9