module cordic_core( input wire clk, input wire reset_n, output wire ready_out, input wire [19:0] PosX_in, /...
分类:
编程语言 时间:
2014-10-17 15:21:35
阅读次数:
263
git reset --hard :1.替换引用的指向.引用指向新的提交ID;2.替换暂存区.替换后,暂存区的内容和引用指向的文件夹树一致;3.替换工作区.替换后,工作区的内容变得和暂存区一致,也和HEAD所指向的文件夹树内容同样.git reset --soft :1.替换引用的指向.引用指向新的...
分类:
其他好文 时间:
2014-10-17 11:41:48
阅读次数:
158
//cssParser.h#include using namespace std;struct MyAttribute{MyAttribute* next;string m_strName;string m_strValue;MyAttribute(){ReSet();}void ReSet(){...
分类:
Web程序 时间:
2014-10-16 21:40:13
阅读次数:
326
#include #include #include using namespace std;class Node {public: vector adj; bool visited; Node() : visited(false) {}};void reset_nodes(vec...
分类:
其他好文 时间:
2014-10-16 13:06:32
阅读次数:
171
1.Advantages and disanvantages of Peer Programming advantagesThe code are constantly validated by two people, reducing the possibility of indivudual ....
分类:
其他好文 时间:
2014-10-16 02:36:31
阅读次数:
190
一共关系到cache_peer/always_direct/never_direct/hierarchy_stoplist/prefer_direct等配置项。squid的使用指南上,关于always_direct和never_direct这么写到:Squid checks allalways_di...
分类:
系统相关 时间:
2014-10-15 00:15:29
阅读次数:
392
Unabletoreadworkbenchstate.WorkbenchUIlayoutwillbereset.XMLdocumentstructuresmuststartandendwithinthesameentity.错误提示是说:不能找到正式的工作台,工作台UI的布局将被重排!上次卡住了,然...
分类:
系统相关 时间:
2014-10-14 18:12:09
阅读次数:
208
1. git branch -l 查看本地branch
2. git reset --hard 回滚所有改动
3. git status 查看本地改动
4. git pull 更新代码
5. git commit -a 提交代码
6. git push 提交到服务器
7. git fetch origin xxxxxx 把服务器拉下某个branch
8. git checko...
分类:
其他好文 时间:
2014-10-13 23:41:17
阅读次数:
189
定义和用法在重置表单时调用的处理器。语法form.onreset说明Form 对象的 onreset 属性指定了一个事件句柄函数。当用户单击了表单中的 Reset 按钮而提交一个重置时,就会调用这个事件句柄函数。注意,这个句柄不会作为 Form.reset() 方法响应而被调用。如果 onreset...
分类:
其他好文 时间:
2014-10-13 02:34:08
阅读次数:
280
使用apxs安装apache模块
-——by石锅拌饭
1.缘由
前几天迁移系统,发现配置了fastcgi的一个脚本下载文件总是提示类似Connection reset by peer:FastCGI错误,后来发现应该是下载文件时间超过了fastcgi指定的idle-timeout导致的,默认这个时间是30秒,文件太大就容易超时。为了解决这个问题,于是把...
分类:
Web程序 时间:
2014-10-13 02:24:49
阅读次数:
208