码迷,mamicode.com
首页 >  
搜索关键字:permgen space    ( 18346个结果
查看表空间使用的两条常用SQL
1. 查看表空间大小: SELECT tablespace_name, SUM(bytes)/1024/1024 total FROM DBA_FREE_SPACE GROUP BY tablespace_name ORDER BY 2 DESC; SQL> SELECT tablespace_name, SUM(bytes)/1024/1024 || 'MB' total FRO...
分类:数据库   时间:2014-12-08 10:49:28    阅读次数:276
ASLR(Address space layout randomization)地址空间布局随机化
ASLR: Address space layout  randomization:地址空间布局随机化,是参与保护缓冲区溢出问题的一个计算机安全技术。是为了防止攻击者在内存中能够可靠地对跳转到特定利用函数。ASLR包括随机排列程序的关键数据区域的位置,包括可执行的部分、堆、栈及共享库的位置。 历史: 在1997年,Memco软件公司实现了一个有限的堆栈随机化作为SeOS访问控制产品的一部...
分类:其他好文   时间:2014-12-08 00:55:02    阅读次数:438
正则表达式
元字符:.:匹配任意单个字符[]:匹配指定范围内的任意单个字符[^]: [:digit:]数字 [:lower:] 小写字母 [:upper:]大写字母 [:punct:]标点符号,[:space;]空白字符 [:alpha:]所有字母 [:alnum;]所有数字和字母\或\b: 锚定词尾,其前面的...
分类:其他好文   时间:2014-12-07 22:55:18    阅读次数:283
leetcode. Sort List
Sort a linked list inO(nlogn) time using constant space complexity.时间复杂度为O(nlbn)的排序一般选择归并排序或快速排序,而且链表的归并不需要重新分配空间,也只需要常量的空间。一下是链表的归并排序实现: 1 ListNode *...
分类:其他好文   时间:2014-12-06 16:40:11    阅读次数:168
【Leetcode】【Easy】Length of Last Word
Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last word doe...
分类:其他好文   时间:2014-12-05 23:59:22    阅读次数:322
武汉科技大学ACM :1007: A+B for Input-Output Practice (VII)
Problem DescriptionYour task is to Calculate a + b.InputThe input will consist of a series of pairs of integers a and b, separated by a space, one pai...
分类:其他好文   时间:2014-12-05 21:13:59    阅读次数:150
【leetcode】 Unique Path ||(easy)
Follow up for "Unique Paths":Now consider if some obstacles are added to the grids. How many unique paths would there be?An obstacle and empty space i...
分类:其他好文   时间:2014-12-05 17:18:34    阅读次数:121
Gradle错误:Could not create the Java Virtual Machine
Error occurred during initialization of VM Could not reserver enough space for object heap Error:Could not create the Java VIrtual Machine Error:A fatal exception has occurred. Program will exit....
分类:编程语言   时间:2014-12-05 15:34:20    阅读次数:430
linux内存
在Linux的世界中,从大的方面来讲,有两块内存,一块叫做内存空间,Kernel Space,另一块叫做用户空间,即User Space。它们是相互独立的,Kernel对它们的管理方式也完全不同驱动模块和内核本身运行在Kernel Space当中一 linux内存模型Linux内存管理系统主要解决以...
分类:系统相关   时间:2014-12-05 09:12:23    阅读次数:470
去除字符串首部和尾部的空格
思路:记下第一个非空字符的位置temp1,记下头部空格的个数space_count_head以及尾部空格的个数space_count_tail。空格总数length_new=space_count_head+space_count_tail;将以temp1为起始位置,长度为length_new的字符...
分类:其他好文   时间:2014-12-05 00:28:01    阅读次数:259
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!