码迷,mamicode.com
首页 >  
搜索关键字:check point google chrome    ( 43033个结果
《你必须知道的495个C语言问题》笔记--结构、联合和枚举
1.如何向接受结构参数的函数传入常量值? c99标准中引入“复合字面量”(compound literals),它的一种形式就可以允许结构常量。例如,向假定的plotpoint函数 传入一个坐标对常量。 plotpoint((struct point){1,2});与制定初始式结合,也可以用成员名称确定成员值: plotpoint((struct point){.x=1, .y=2}); ...
分类:编程语言   时间:2014-07-22 23:04:35    阅读次数:363
《Pro Android Graphics》读书笔记之第二节
Android Digital Video: Formats, Concepts and Optimization       Android Digital Video Formats: MPEG4 H.264 and WebM VP8    H.263 支持老显示器 MPEG4 SP   supported for commercial video(支持商业视频) 3GP Google在...
分类:移动开发   时间:2014-07-22 23:01:15    阅读次数:381
google-glog配置使用笔记
首先下载glog-0.3.3.tar.gz,解压,直接打开VS工程,我用了动态库, 新建win32 console test 把src\windows包含进来,../Debug/libglog.lib链接进来,这样就ok了。 新建main.cpp: #define GLOG_NO_ABBREVIATED_SEVERITIES #include #include using...
分类:其他好文   时间:2014-07-22 22:59:35    阅读次数:1075
PaaS平台– Google App Engine的开源实现AppScale环境搭建
搭建环境介绍:硬件平台:HP Z800 工作站  内存:24GB      硬盘:1TB虚拟化环境:XenServer 6.2.0VM1:Ubuntu 12.04 amd64 server | IP:192.168.137.50VM2:Ubuntu 12.04 amd64 server | IP:192.168.137.51VM3:Ubuntu 12.04 amd64 server | IP:19...
分类:移动开发   时间:2014-07-22 22:59:34    阅读次数:461
二分图匹配
HDU  2063  求一个二分图的最大匹配。 完全的裸题。贴代码。 #include #include #include #include #include using namespace std; vector G[1005]; bool check[1005]; int mac[1005]; int n; void add_edge(int from,int to) { G[f...
分类:其他好文   时间:2014-05-02 20:57:04    阅读次数:359
积累的VC编程小技巧之工具提示
1.用鼠标移动基于对话框的无标题栏程序的简单方法void CVCTestDlg::OnLButtonDown(UINT nFlags, CPoint point){//一句话解决问题SendMessage(WM_SYSCOMMAND,0xF012,0);CDialog::OnLButtonDown(...
分类:其他好文   时间:2014-05-02 18:10:14    阅读次数:375
积累的VC编程小技巧之对话框
1.用鼠标移动基于对话框的无标题栏程序的简单方法void CVCTestDlg::OnLButtonDown(UINT nFlags, CPoint point){//一句话解决问题SendMessage(WM_SYSCOMMAND,0xF012,0);CDialog::OnLButtonDown(...
分类:其他好文   时间:2014-05-02 13:15:37    阅读次数:282
android开发环境搭建遇到的问题
①解决安卓SDK更新dl-ssl.google.com无法连接进入C:\Windows\System32\drivers\etc下,用记事本打开host文件://74.125.237.1 dl-ssl.google.com74.125.23.190 dl-ssl.google.com②eclipse...
分类:移动开发   时间:2014-05-02 12:15:03    阅读次数:343
Eclipse中使用Ant打Android包报错解决方案 – Perhaps JAVA_HOME does not point to the JDK
问题描述: 在Eclipse中运行ant批量打包工具出错,日志信息如下: D:\Android\android-sdk-windows\tools\ant\build.xml:601: The following error occurred while executing this line: D:\Android\android-sdk-windows\tools\ant\bui...
分类:移动开发   时间:2014-04-30 22:48:39    阅读次数:359
[TroubleShooting] The remote copy of database xx has not been rolled forward to a point in time
Steps: 1. backup database DBmirror on SQL1 2. backup database log 3. copy db and log backup files to SQL2 4. restore db with norecovery 5. restore log with norecovery 6. create endpoints on both...
分类:数据库   时间:2014-04-30 22:15:38    阅读次数:414
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!