码迷,mamicode.com
首页 >  
搜索关键字:permgen space    ( 18346个结果
Word Break/Word Segment
Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.For exampl...
分类:其他好文   时间:2014-07-01 23:43:03    阅读次数:293
java.lang.OutOfMemoryError: PermGen space with weblogic
Error info:java.lang.OutOfMemoryError: PermGen space at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLo...
分类:编程语言   时间:2014-07-01 22:57:18    阅读次数:319
【转】vim - tab变空格
vim中将tab自动转换成空格在vim中,有时需要将tab转换成space。使用ret命令(replace tab)。[range]ret[ab]! [new-tabstop]举例:将第一行到文件尾的tab转换成space,每个tab用4个space替代。:set expandtab:%ret! 4...
分类:其他好文   时间:2014-07-01 20:23:15    阅读次数:458
超出文本截取替换为省略号
今天做了一个如下图的模块其中,标题以及介绍这两块都需要做超出某个宽度就截取一行或两行文字,后面用省略号代替。由于是做的手机页面,用JS来开销太大,只能从CSS入手。一行的很好解决。如下就OK了。white-space:nowrap;overflow:hidden;text-overflow:elli...
分类:其他好文   时间:2014-07-01 13:12:09    阅读次数:171
"fcitx按ctrl+space没反应"解决方法
如果是KDM、GDM、LightDM,打开~/.xprofile。如果是startx、Slim,打开~/.xinitrc。(没有就新建一个)export GTK_IM_MODULE=fcitxexport QT_IM_MODULE=fcitxexport XMODIFIERS="@im=fcitx"...
分类:其他好文   时间:2014-07-01 12:59:02    阅读次数:586
Leetcode:Merge Sorted Array 归并排序
Sorted Array:Given two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size that is gre...
分类:其他好文   时间:2014-07-01 12:51:53    阅读次数:202
Linked List Cycle
题目 Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using extra space? 方法 /** * Definition for singly-linked list. * class ListNode { ...
分类:其他好文   时间:2014-07-01 11:31:40    阅读次数:178
Linked List Cycle II
题目 Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Follow up: Can you solve it without using extra space? 方法 public ListNode de...
分类:其他好文   时间:2014-07-01 11:30:58    阅读次数:200
linux下移植指定的二进制程序脚本
一个程序所依赖的库文件可以由:ldd命令路径来显示例ldd/bin/cat输出详解第一行输出为库入口,非库文件whichls|grep-valias|grep-o‘[^[:space:]]*‘脚本中调试方法declare–iDebuglevel=1Debuglevel={0|1}[$Debuglevel–eq1]&&echo…$…….移植脚本如下所示#!/bin/bash#..
分类:系统相关   时间:2014-07-01 06:06:30    阅读次数:383
LeetCode——Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space for another array, you must do this in place with...
分类:其他好文   时间:2014-06-30 17:22:13    阅读次数:196
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!