BOOLEAN MmIsAddressValid( _In_PVOID
VirtualAddress);ParametersVirtualAddress[in]A pointer to the nonpaged virtual
address to check. The caller must e....
分类:
其他好文 时间:
2014-05-09 11:51:40
阅读次数:
535
public class SyncMetadataJob:SPJobDefinition {
private const string JobName = @"Metadata Sync Job"; private int counter = 0;
...
分类:
其他好文 时间:
2014-05-08 22:30:30
阅读次数:
319
// test.cpp : Defines the entry point for the
console application.//#include "stdafx.h"#include #include #include
"winioctl.h"#define IOCTL_STORAGE_QU...
分类:
其他好文 时间:
2014-05-05 10:52:44
阅读次数:
370
public class DbfReader { private string _path;
private OleDbConnection _connection; public DbfReader(string dbfPath) { _path =
dbfPath; Check...
分类:
数据库 时间:
2014-05-05 10:41:06
阅读次数:
994
这两道题,大同小异。
我都是用BFS,在遍历的过程,判断结构是否相同/对称,值是否相同。下面是AC代码: 1 /** 2 * Given a binary tree, check
whether it is a mirror of itself (ie, symmetric aroun...
分类:
其他好文 时间:
2014-05-05 09:48:26
阅读次数:
401
【关闭SublimeText自动更新】 1、找到Preferences ->
Settings-User(设置用户) 2、在最后一个花括号结尾(“}”)前添加一句:”update_check":false,结果如图所示:
分类:
其他好文 时间:
2014-05-04 20:18:37
阅读次数:
313
1.bootm地址和load address一样 此种情况下,bootm不会对uImage
header后的zImage进行memory move的动作,而会直接go到entry point开始执行。因此此时的entry point必须设置为load
address + 0x40。如果ker...
分类:
系统相关 时间:
2014-05-04 20:14:20
阅读次数:
501
Post-Recovery Test Run Options Screen When you
clear the Add another recovery operation check box in the Recovery Operation
screen and click next, the...
分类:
其他好文 时间:
2014-05-04 19:37:19
阅读次数:
571
这是一个关于使用cocostudio实现动画自由切换的小demo
auto sprite =Sprite::create("background.png");
sprite->setAnchorPoint(Point(0,0));
this->addChild(sprite);
ArmatureDataManager::getInstance()->addArmatureFi...
分类:
其他好文 时间:
2014-05-04 09:17:46
阅读次数:
344
在程序中使用:findContours(grayImage, contours, hierarchy, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, Point(0, 0) );后导致程序崩溃,将该语句屏蔽后,程序并没有问题。同样打开的另外一个工程使用该语句没有问题。将没有问题的语句拷贝到该工程下,同样出错。解决方案:在配置属性->常规->MFC的使用中,将在...
分类:
其他好文 时间:
2014-05-04 09:05:41
阅读次数:
488