码迷,mamicode.com
首页 >  
搜索关键字:allocation tracker    ( 677个结果
各文件系统对单个文件大小的限制
原文出处:http://blog.itpub.net/10113559/viewspace-630012/A.FAT16(最大分区2GB,最大文件2GB ,最大容量)在说明FAT16文件系统之前,我们必须清楚FAT是什么?FAT(File Allocation Table)是“文件分配表”的意思。顾...
分类:其他好文   时间:2015-11-12 23:23:03    阅读次数:350
FastDFS迁移步骤
1.在新的机器上安装FastDFS 2.将新的storage接到老的tracker机器上,用来同步数据(/usr/local/fastdfs/bin/fdfs_storaged) 数据同步完成后,需要将新的storage连接到新的tracker中 1.停止storage进程 2.修改storage配...
分类:其他好文   时间:2015-11-10 13:56:23    阅读次数:1571
jmap命令
一、jmap -heap PIDusing parallel threads in the new generation. ##新生代采用的是并行线程处理方式using thread-local object allocation.Concurrent Mark-Sweep GC ##同步并行垃圾回...
分类:其他好文   时间:2015-10-31 00:21:09    阅读次数:182
C语言中malloc函数的简介
malloc函数(1)解释malloc函数作用 malloc的全称是memory allocation,中文叫动态内存分配。 malloc函数是想系统申请分配指定size个字节的内存空间。malloc的返回类型是void*类型。void*表示为确定类型的指针。C/C++规定void*类型可以强制.....
分类:编程语言   时间:2015-10-26 20:28:22    阅读次数:204
面向对象第四次作业参考代码
第一题:数组#include const int MAXSIZE = 20; class List{ public: List() { arr = new int[MAXSIZE]; //Allocation the space length = 0; //the length of current array cout<<...
分类:其他好文   时间:2015-10-25 12:19:25    阅读次数:175
git整理纷乱的历史合并记录
https://github.com/Epix37/Hearthstone-Deck-Tracker以上面版本库的master分支为例父节点1SHA-1: a21142968282ae49720cf30a0f18290b2ce74b3a* remove hotkey from config if a...
分类:其他好文   时间:2015-10-25 06:15:43    阅读次数:412
[C++] 2D Array's memory allocation
2D Array's memory allocation
分类:编程语言   时间:2015-10-24 21:57:09    阅读次数:190
malloc和new的区别
1. malloc()函数 1.1 malloc的全称是memory allocation,中文叫动态内存分配。 原型:extern void *malloc(unsigned int num_bytes); 说明:分配长度为num_bytes字节的内存块。如果分配成功则返回指向被...
分类:其他好文   时间:2015-10-23 13:40:31    阅读次数:200
内存分析工具 MAT 的使用
一、内存泄露Dump导出方法1.1、android项目下的内存泄露记录方法1.1.1 内存泄漏的排查方法Dalvik Debug Monitor Server (DDMS)是ADT插件的一部分,其中有两项功能可用于内存检查:·heap查看堆的分配情况·allocation tracker跟踪内存分配...
分类:其他好文   时间:2015-10-22 16:59:44    阅读次数:307
github上如何合并别人的pull request
https://github.com/Epix37/Hearthstone-Deck-Tracker/issues/1391I fetch the code from your repository,loop the following stepsstep1: create a branch on ...
分类:其他好文   时间:2015-10-19 23:59:45    阅读次数:429
677条   上一页 1 ... 43 44 45 46 47 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!