待修正 “A timing exception is needed when the logic behaves in a way that is not timed correctly by default.” 前面谈时序约束的时候,略去了Path specific exceptions。'Pat...
分类:
其他好文 时间:
2015-08-14 13:24:34
阅读次数:
196
zip解压:
unzip xxx.zip
jar解压:
unzip xxx.jar
rpm安装:
rpm -ivh xxx.rpm没权限:
“Cannot find bin/catalina.sh
The file is absent or does not have execute permission
This file is needed to run this progr...
分类:
其他好文 时间:
2015-08-12 11:32:57
阅读次数:
118
Modifying namespace in XML document programmaticallyI needed to validate an XML document with a given XSD document. Seems easy enough… so let’s have a...
分类:
其他好文 时间:
2015-08-11 09:58:34
阅读次数:
154
gcc4.6以后对于ld自动加上了as-needed选项。所以编译选项应该变成: g++?-Wl,--no-as-needed?-std=c++11?-pthread?a.cpp 这样就没有问题了!
分类:
编程语言 时间:
2015-08-08 23:06:37
阅读次数:
330
(1) 依赖包的安装Linux下安装Oracle,除了系统配置参数,我觉得依赖包的安装是另一个比较琐碎的操作。本次安装碰到了几个包的问题:(a) rpm -Uvh gcc-4*提示:02. error: Failed dependencies: 03. cloog-ppl >= 0.15 is needed by gcc-4.4.7-4.el6.x86_6404. cpp = 4.4....
分类:
数据库 时间:
2015-08-02 23:26:29
阅读次数:
311
表单 //ng-submit Starting: Recommendation: {{funding.needed}} Fund my startup!
分类:
Web程序 时间:
2015-08-02 21:33:09
阅读次数:
116
第一步: 安装基本系统
$ sudo pacman -S --needed dkms qt virtualbox virtualbox-guest-iso
$ sudo gpasswd -a `whoami` vboxusers
$ sudo systemctl enable dkms
$ sudo vim /etc/modules-load.d/virtualbox.conf
vb...
分类:
系统相关 时间:
2015-07-28 08:00:49
阅读次数:
317
首先,进行非均匀量化,H,S,V三通道分别量化为16,4,4级,返回一个向量。量化依据如下表:function vec = getHsvHist(Image)[M,N,O] = size(Image);if O~= 3 error('3 components are needed for hi...
分类:
其他好文 时间:
2015-07-27 14:52:40
阅读次数:
610
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ofs...
分类:
其他好文 时间:
2015-07-26 15:25:58
阅读次数:
128
参考:algorithm LRU, how many bits needed for implement this algorithm?问题:在cpu缓存中使用的LRU替换算法需要多少位呢?解决方法:
对于n路相连的缓存来说,LRU每个缓存块需要的位数为log2(n),那么每个set需要的位数就为n*log2(n)。(原文:Assuming you mean a 4-way set-associa...
分类:
编程语言 时间:
2015-07-23 17:57:11
阅读次数:
505