问题描述: Tomcat启动,提示异常,服务自动释放! 问题解决: 01、人工解压到制定的目录webapps/yhs-web/ 02、或者重新打包,部署! ...
分类:
其他好文 时间:
2018-10-03 22:37:42
阅读次数:
239
使用LeakCanary检测内存泄露 翻译 原文:https://academy.realm.io/cn/posts/droidcon-ricau-memory-leaks-leakcanary/ GitHub:https://github.com/square/leakcanary Nov 18 ... ...
分类:
其他好文 时间:
2018-10-01 16:11:04
阅读次数:
175
1、MNIST数据集简介 首先通过下面两行代码获取到TensorFlow内置的MNIST数据集: MNIST数据集共有55000(mnist.train.num_examples)张用于训练的数据,对应的有55000个标签;共有10000(mnist.test.num_examples)张用于测试的 ...
分类:
其他好文 时间:
2018-10-01 16:10:18
阅读次数:
162
启动spring boot项目的时候遇到了报错: 仔细分析后发现 : A child container failed during start 从来都不是问题的根本原因! 而本问题的根本原因是: java.util.zip.ZipException: invalid LOC header (bad ...
分类:
编程语言 时间:
2018-09-28 14:40:25
阅读次数:
315
一 客户端/服务器架构 1.硬件C/S架构(打印机) 2.软件C/S架构 互联网中处处是C/S架构 如黄色网站是服务端,你的浏览器是客户端(B/S架构也是C/S架构的一种) 腾讯作为服务端为你提供视频,你得下个腾讯视频客户端才能看它的视频) C/S架构与socket的关系: 我们学习socket就是 ...
分类:
编程语言 时间:
2018-09-27 10:35:47
阅读次数:
168
Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least one duplicate number must exist. ...
分类:
其他好文 时间:
2018-09-27 01:57:09
阅读次数:
135
时钟周期vs机器周期 Clock cycle The speed of a computer processor, or CPU, is determined by the clock cycle, which is the amount of time between two pulses of ...
分类:
其他好文 时间:
2018-09-24 22:18:03
阅读次数:
221
Heavy Light Decomposition & Tarjan Description Given a simple connected graph. It is guaranteed that any set of points in a simple cycle includes a co ...
分类:
其他好文 时间:
2018-09-24 12:46:01
阅读次数:
186
# 触发器 create or replace trigger tr_tmp before insert on emp for each row begin select empno_seq.nextval into :new.empno from dual; end insert into emp ...
分类:
数据库 时间:
2018-09-22 18:24:56
阅读次数:
205
The "Hamilton cycle problem" is to find a simple cycle that contains every vertex in a graph. Such a cycle is called a "Hamiltonian cycle". In this pr ...
分类:
其他好文 时间:
2018-09-22 14:45:43
阅读次数:
196