1、adb shelldumpsys gfxinfoCaches:Current memoryusage / total memory usage (bytes): TextureCache 2182188 /25165824 LayerCache 6553600 /16777216 RenderBufferCache 0/ 20971...
分类:
移动开发 时间:
2014-11-27 10:41:52
阅读次数:
407
PowerDesigner16.5 生成SQL脚本执行出错,collate chinese_prc_ci_as点DataBase-edit current dbms —— 左边Script - Objects - Column - Add ,左边 Value输入框 把一下代码粘贴进去,保存即可。如果...
分类:
数据库 时间:
2014-11-26 22:17:15
阅读次数:
268
CSS3从CSS2.1发展而来,CSS3包括了多个模块,W3官网列举了这些模块当前的进展:http://www.w3.org/Style/CSS/current-work关于各模块成熟度的发展流程如下:(从不稳定->稳定)WD WorkingDraftLC Last Call annou...
分类:
Web程序 时间:
2014-11-26 22:15:46
阅读次数:
214
ES从1.2.1升级到1.4.0升级步骤,基本上是按照官网的叙述来完成的,链接是:http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/setup-upgrade.html#_1_0_and_later,参考的内容...
分类:
其他好文 时间:
2014-11-26 20:32:15
阅读次数:
610
在WCF中调用Server.MapPath 获取服务发布目录路径 在WCF中调用Server.MapPath 获取服务发布目录路径 在WCF中想使用Server.Map获取当前服务发布目录的绝对路径。可是在调试时却发现: "System.Web.HttpContext.Current.Server....
分类:
Web程序 时间:
2014-11-26 18:07:28
阅读次数:
127
对于谷歌Chrome32位版本,使用如下链接: wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb 对于64位版本可以使用如下链接下载: wget https://dl.google.com/linux/direct/goog...
分类:
其他好文 时间:
2014-11-26 11:42:01
阅读次数:
158
有时候上传的产品与多级分类比较多,在后台添加文本属性如Name,Number等需要顾客自定义的内容就比较费神了。现在只需将以下代码保存为insert_attributes.php,变量$options_id_array,$current_category_id修改为实际的值,上传到网站根目录运行即可...
分类:
其他好文 时间:
2014-11-26 10:59:49
阅读次数:
163
****************************************交换机型号:H3C S3100V2*****************************************
1. 恢复出厂设置命令: reset saved-configuration (后面重启时注意选择Y/N)
2. 查看当前设置命令: display current-configurat...
分类:
其他好文 时间:
2014-11-25 23:45:49
阅读次数:
217
安装完xcode6.1后,将其改名为Xcode6.1.app,再移动个位置,启动模拟器,问题来了:Unable to boot device in current state: Creating解决办法:You will need to delete this device from your si...
分类:
其他好文 时间:
2014-11-25 23:10:46
阅读次数:
196
从C和指针这本书中学到的优化插入函数写法:
#include
typedef struct Node{
int value;
struct Node*link;
}Node;
int sll_insert(Node **linkp,int new_value){
Node *current=*linkp;
while(current!=NULL&¤t->value<ne...
分类:
其他好文 时间:
2014-11-25 18:32:18
阅读次数:
132