码迷,mamicode.com
首页 >  
搜索关键字:distribution point sccm    ( 8211个结果
Java Comparator
1 Arrays.sort(points, new comparator());2 3 public static class comparator implements Comparator {4 public int compare(Point p1, Point p2) {5 ...
分类:编程语言   时间:2014-05-05 23:32:10    阅读次数:444
浮点数在内存中的表示
1. 浮点数的二进制格式. 浮点数的二进制格式如下, 分为 3 个部分, 即 sign (符号位), exponent (指数位), 以及 significand (有效数位). 如下图所示: single-precision floating point(单精度浮点数), 4 字节, 共 32 ....
分类:其他好文   时间:2014-05-05 22:41:15    阅读次数:509
Linux内核,文件系统移植过程中出现的一些问题与解决办法
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
Windows Server 2012 R2 WSUS-1:部署环境概述
从今天开始,我将开始撰写一个新的系列文章,从WSUS的规划部署到运维和排错,这个系列会涉及到WSUS的方方面面。这个系列的介绍将以WindowsServer2012R2中的WSUS为基矗目前WSUS更新服务器在企业中应用还是比较广泛的,不管是单独使用,还是和SCCM整合使用,都为企业客户端安装各..
分类:Windows程序   时间:2014-05-04 17:23:37    阅读次数:563
写个关于使用cocostudio Armature实现动画自由切换的小demo
这是一个关于使用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函数导致崩溃
在程序中使用:findContours(grayImage, contours, hierarchy, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, Point(0, 0) );后导致程序崩溃,将该语句屏蔽后,程序并没有问题。同样打开的另外一个工程使用该语句没有问题。将没有问题的语句拷贝到该工程下,同样出错。解决方案:在配置属性->常规->MFC的使用中,将在...
分类:其他好文   时间:2014-05-04 09:05:41    阅读次数:488
YouTrack Changing Database Location for EXE Distribution(windows service)
If you have installed YouTrack from EXE Distribution, then the best way to change the database location is by specifying it via JVM property.Stop curr...
分类:数据库   时间:2014-05-03 23:30:08    阅读次数:505
Zxing图片拉伸解决 Android 二维码扫描
二维码扫描 Android Zxing图片拉伸解决 Zxing是google提供的二维码扫描工程 默认是横屏的 转换成竖屏后图片出现拉伸 这里提供解决办法: Zxing 修改 CameraConfigurationManager.java文件的 void initFromCameraParameters(Camera camera)方法 在 Log.d(TAG, "Screen resolution: " + screenResolution);这句之后增加 Point scree...
分类:移动开发   时间:2014-05-03 17:23:16    阅读次数:559
SICP 习题 (1.36)解题总结
SICP 习题 1.36 要求我们修改fixed-point函数,使它能够打印出计算中产生的近似值序列,使用练习1.22展示的newline和display方法。而后通过找出变换x => log (1000)/log(x)的不动点的方式确定x^x=1000的一个根(书中还提示你使用Scheme的基本过程log,用于计算自然对数值)。然后比较一下使用平均阻尼和不用平均阻尼的计算步数。要注意的是不能使...
分类:其他好文   时间:2014-05-03 17:04:04    阅读次数:288
Cocos2d-x Render-NewCulling
.cpp layout->setBackGroundImageScale9Enabled(true); layout->setBackGroundImage("green_edit.png"); layout->setPosition(Point(0,0)); addChild(layout); ...
分类:其他好文   时间:2014-05-03 16:30:56    阅读次数:322
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!