码迷,mamicode.com
首页 >  
搜索关键字:space reclamation    ( 18275个结果
div中文字超出时自动换行
在开发中很容易遇到div中文字超出的问题,在此总结以下方法: white-space 属性设置如何处理元素内的空白。这个属性声明建立布局过程中如何处理元素中的空白符。所有浏览器都支持 white-space 属性。 注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属....
分类:其他好文   时间:2014-08-22 10:36:45    阅读次数:226
Oracle11.2.0.4 RAC GI ORA-15003: diskgroup "XXXX" already mounted in another lock name space
安装GI,在执行root.sh时报错:Disk Group CRSDG creation failed with the following message:ORA-15018: diskgroup cannot be createdORA-15017: diskgroup "CRSDG" cann...
分类:数据库   时间:2014-08-22 01:34:15    阅读次数:656
[LeetCode] Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:其他好文   时间:2014-08-22 00:14:05    阅读次数:172
解决 :Linux服务器上tomcat为java分配的内存不足:PermGen space
在linux 下启动tomcat 的时候 由于项目多,出现 内存不足:PermGen space 而启动不了; 解决方案: 修改TOMCAT_HOME/bin/catalina.sh 在“echo "Using CATALINA_BASE: $CATALINA_BASE"”上面加入以下行: JAVA_O...
分类:编程语言   时间:2014-08-21 19:46:55    阅读次数:214
(转)文本溢出省略号……
p { overflow: hidden; white-space: normal; height: 3em; text-overflow:ellipsis; }除了css属性,通过js实现(通过从后向前逐个删除末尾字符,直至元素的高度小于父元素高度)$(".figcaption").each(fu...
分类:其他好文   时间:2014-08-21 16:45:34    阅读次数:183
UTF-8 AND UTF-8 without BOM(遇到了这个问题 郁闷了会儿)
两者的区别:Unicode规范中有一个BOM的概念。BOM——Byte Order Mark,就是字节序标记。在这里找到一段关于BOM的说明:在UCS 编码中有一个叫做"ZERO WIDTH NO-BREAK SPACE"的字符,它的编码是FEFF。而FFFE在UCS中是不存在的字符,所以不应该出现...
分类:其他好文   时间:2014-08-21 16:41:14    阅读次数:177
RS-232协议和RS-485协议
RS232 RS232是一种异步传输标准接口。通常 RS-232 接口以9个引脚 (DB-9) 或是25个引脚 (DB-25) 的型态出现 。RS232最常用的连接方式是三根线:一条发送线、一条接收线及一条地线。 电平信号:逻辑1(MARK)=-3V~-15V,逻辑0(SPACE)=+3~+15V 传输距离:RS-232-C标准规定,驱动器允许有2500pF的电容负载,通信距离将受此电容...
分类:其他好文   时间:2014-08-21 11:32:24    阅读次数:130
SQL函数
1.ASCII 返回与指定的字符对应的十进制数; SQL> select ascii('A') A,ascii('a') a,ascii('0') zero,ascii(' ') space from dual; A A ZERO SPACE --------- --------- ----...
分类:数据库   时间:2014-08-21 11:17:53    阅读次数:242
Merge 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 greater or equal...
分类:其他好文   时间:2014-08-20 22:28:12    阅读次数:244
【Leetcode】Sort List
Sort a linked list inO(nlogn) time using constant space complexity.1st ( 7 tries)/** * Definition for singly-linked list. * struct ListNode { * in...
分类:其他好文   时间:2014-08-20 14:03:02    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!