from: https://jyx.jyu.fi/bitstream/handle/123456789/52275/1/URN%3ANBN%3Afi%3Ajyu-201612125051.pdf 相关文献汇总如下: S1 Eliseev and Gurina (2016) Algorithms fo ...
分类:
Web程序 时间:
2018-09-11 16:07:38
阅读次数:
299
一、抢占优先级和响应优先级 STM32 的中断向量具有两个属性,一个为抢占属性,另一个为响应属性,其属性编号 越小,表明它的优先级别越高。 抢占,是指打断其他中断的属性,即因为具有这个属性会出现嵌套中断(在执行中断 服务函数A 的过程中被中断B 打断,执行完中断服务函数B 再继续执行中断服务函数 A ...
分类:
其他好文 时间:
2018-09-03 15:00:26
阅读次数:
264
Effective TensorFlow Table of Contents ================= 1. "TensorFlow Basics" 2. "Understanding static and dynamic shapes" 3. "Scopes and when to us ...
分类:
其他好文 时间:
2018-09-02 20:31:21
阅读次数:
194
[toc] 问题详情 1. CentOS中出现Device eth0 does not seem to be present 解决方法 0x01 地址:http://blog.51cto.com/wolfword/1304000 ...
分类:
其他好文 时间:
2018-08-23 21:00:58
阅读次数:
137
近些年,区块链技术飞速发展,引领了互联网领域一次新的技术浪潮,这种新型技术被认为是继蒸汽机、电力、互联网之后,下一代颠覆性的核心技术;并成为最近两年的热门投资方向,如著名投资人索罗斯在2017年年底的时候,把Facebook的股票全部卖掉,投资了一家用区块链发行股票公司Overstock。全球各大互 ...
分类:
其他好文 时间:
2018-08-15 18:35:46
阅读次数:
216
Spring框架4大原则: 使用POJO进行轻量级和最小侵入式开发 POJO(Plain Ordinary Java Object)简单的Java对象,实际就是普通JavaBeans,是为了避免和EJB混淆所创造的简称。 2. 通过控制反转IoC、依赖注入DI和基于接口编程实现降低耦合度 3. 通过 ...
分类:
编程语言 时间:
2018-08-15 13:06:15
阅读次数:
200
#include #include //Real capacity is CircularQueueMaxSize -1 #define CircularQueueMaxSize 1000 typedef int ElementType; struct CircularQueue { Element... ...
分类:
其他好文 时间:
2018-08-05 22:38:17
阅读次数:
205
protected void RemoveEmpty(DataTable dt) { List<DataRow> removelist = new List<DataRow>(); for (int i = 0; i < dt.Rows.Count; i++) { bool IsNull = tru ...
分类:
其他好文 时间:
2018-08-01 12:10:33
阅读次数:
194
Teemo's dream Teemo decides to use his money to conquer the universe. It is known that there are m planets that humans can reach at present. They are ...
分类:
其他好文 时间:
2018-07-31 21:56:30
阅读次数:
144
今天测试在发给我一段报错日志后,根据日志定位到从ConcurrentHashMap 的缓存中get的时候,ConcurrentHashMap的底层抛出了空指针,当时感觉很奇怪为什么在get的时候产生空指针了呢? 模拟代码: 这个地方出现空指针,难道是传入的null 所以出现了空指针了,事实证明确实传 ...
分类:
其他好文 时间:
2018-07-20 00:15:58
阅读次数:
175