其他-周排行
1.label中增加 \n2.设置white-space样式.el-table .cell { white-space: pre-line;}3.效果图 ...
分类:其他 时间:2018-12-06 10:37:30 收藏:0 阅读:1834
1 @echo off 2 rem CMD:"color --help" 3 :: setting color:back white,content blue 4 color f9 5 6 ::old string and replace string 7 set old_str=ip 8 set ... ...
分类:其他 时间:2018-12-23 15:10:19 收藏:0 阅读:897
启动使用ionic serve启动服务器之后只要一刷新界面就会导致服务器关闭,报的错误如下: events.js:136 throw er; // Unhandled ‘error’ event ^ Error: read ECONNRESET at _errnoException (util.js ...
分类:其他 时间:2018-12-26 23:31:35 收藏:0 阅读:1573
先贴个比较搞笑的错误 这个错误字面上意思是说, Specified version of key is not available,指定版本的key不可用,我就奇了怪了我哪里指定key了,找度娘帮忙,找到一个貌似解释还可以的答案:https://stackoverflow.com/questions ...
分类:其他 时间:2019-01-03 17:14:30 收藏:0 阅读:2077
1、查询topic,进入kafka目录: bin/kafka-topics.sh --list --zookeeper localhost:2181 2、查询topic内容: bin/kafka-console-consumer.sh --bootstrap-server localhost:909 ...
分类:其他 时间:2019-01-10 00:59:25 收藏:0 阅读:2549
服务器改了密码,试过密码多次后出现: ssh_exchange_identification: read: Connection reset by peer 可以通过ssh -v查看连接时详情 OpenSSH_6.6.1, OpenSSL 1.0.1k-fips 8 Jan 2015 debug1: ...
分类:其他 时间:2019-01-14 11:20:17 收藏:0 阅读:405
背景: 由于在日常情况下,我们的多实例要动态添加人员的场景,有没有这样的api呢?新的flowable有这样的功能。 具体实现 xml 具体实现 说明: ...
分类:其他 时间:2019-01-24 18:20:28 收藏:0 阅读:1269
sbt是一款类似于maven的构建工具 安装sbt curl https://bintray.com/sbt/rpm/rpm bintray sbt rpm.repo mv bintray sbt rpm.repo /etc/yum.repos.d/ yum install sbt y 配置其使用国 ...
分类:其他 时间:2019-01-28 15:59:11 收藏:0 阅读:447
not a valid identifier不是有效的标识符 因为在/usr的“/”多加了一个空格,导致JAVA_Home 无法识别 ...
分类:其他 时间:2019-01-28 22:52:22 收藏:0 阅读:2007
结果:最终跑通了项目并且实现了虚拟驱动器的文件传输功能,添加了中文支持 反思总结:先查看官方文档的Q&A,找找有没有类似的错误,然后如果有错误日志或者现成的解决方案,直接尝试用解决方案或者搜索错误日志的方式,更加容易搜索到解决方案。 jdk mysql 都是用的yum的方式安装的,教程里提到的和我的 ...
分类:其他 时间:2019-01-30 19:38:07 收藏:0 阅读:3996
前提背景: 生产环境上,服务器网络突然断链,ssh连接失败。 问题初步定位: 查找内核日志,得到网卡异常信息 Jan 24 11:52:43 localhost kernel: ixgbe 0000:84:00.0: eth0: RXDCTL.ENABLE on Rx queue 14 not cl ...
分类:其他 时间:2019-02-03 13:41:21 收藏:0 阅读:2015
问题: 连接Docker启动的mysql出现:ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be loaded C:\mysqldata>mysql -h 127.0.0.1 -P 13306 -ur ...
分类:其他 时间:2019-02-14 10:04:27 收藏:0 阅读:1564
1.cv2.Sobel(src, ddepth, dx, dy, ksize) 进行sobel算子计算 参数说明:src表示当前图片,ddepth表示图片深度,这里使用cv2.CV_64F使得结果可以是负值, dx表示x轴方向,dy表示y轴方向, ksize表示移动方框的大小 2.cv2.conve ...
分类:其他 时间:2019-02-18 17:35:44 收藏:0 阅读:6396
The linux kernel gathers samples using ‘perf’ performance monitor without affecting the latencies. These include getting interrupt times. If interrupt ...
分类:其他 时间:2019-02-18 20:06:52 收藏:0 阅读:2055
a= np.array([9, 12, 88, 14, 25])list_a = a.tolist() list_a_max_list = max(list_a) #返回最大值max_index = list_a.index(max(list_a)) # 返回最大值的索引print(list_a_m ...
分类:其他 时间:2019-02-28 21:32:21 收藏:0 阅读:1078
问题:在maven项目中,install dao层之后,在interface调用显示failed to collect dependencies; 解决办法: 1.检查依赖信息是否正确,不确定删除后重新引入。 2.从parent开始先install 再install dao,在install int ...
分类:其他 时间:2019-03-01 22:31:03 收藏:0 阅读:3667
背景: 在jupyter notebook to_excle: 运行将dataframe保存为excel文件 时报错openpyxl read_excel: 运行读取excel文件 时报错xlrd 已安装pandas,numpy,pytz,matplotlib,cycler等等包的情况下 解决: " ...
分类:其他 时间:2019-03-02 12:28:55 收藏:0 阅读:2255
如何删除GitHub或者GitLab 上的文件夹 如何删除GitHub或者GitLab 上的文件夹 如何删除GitHub或者GitLab 上的文件夹 如何删除GitHub或者GitLab 上的文件夹 需求分析 假设小明有一天不小心把本地仓库的一个文件夹A推送到了远程GIT服务器(例如:github, ...
分类:其他 时间:2019-03-05 18:32:49 收藏:0 阅读:713
版权声明:本文为博主原创文章,欢迎转载,并请注明出处。联系方式:460356155@qq.com 在模型训练时加上: ...
分类:其他 时间:2019-03-05 19:10:37 收藏:0 阅读:8042
今天遇到了一个问题,比较尴尬. 我写了一个接口,参数用@RequestParam接收,是一个List<String>.用postman可以正常的调用. 但是其他组的开发用feignClient就无法调通,报400. 苦思冥想不清楚问题原因.后来想到应该是请求头的原因. 假如Content-Type ...
分类:其他 时间:2019-03-07 22:00:22 收藏:0 阅读:3558
112112212312412583372
上一页1667435下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!