码迷,mamicode.com
首页 >  
搜索关键字:no space left on device    ( 37186个结果
打造IE6的position:fixed整理篇
fixed真的是一个很好的属性。特别是做弹层的时候。可惜的是“国内主流浏览器”IE6大大不支持。 一般的我们都会通过CSS中的表达式来解决这个问题。 .fixed { position:absolute; left:expression(eval(document.documentElement.scrollLeft)); top:expression(eval(document.doc...
分类:其他好文   时间:2014-07-22 23:03:15    阅读次数:318
Leetcode | Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space.Some hints:Could negative integers be palindromes? (ie, -1)If you are thinki...
分类:其他好文   时间:2014-05-01 19:48:19    阅读次数:344
《linux 内核完全剖析》 笔记 CODE_SPACE 宏定义分析
在memory.c里面,遇到一个宏定义,如下: #define CODE_SPACE(addr) ((((addr)+4095)&~4095) start_code + current->end_code) 看的第一眼,不知道,第二眼,还是不知道,纠结了半天还是不知道。 睡了一晚,今天早上再看,嘿嘿,居然看懂了。。。 这个宏定义用于判断给定的addr线...
分类:系统相关   时间:2014-05-01 17:54:09    阅读次数:516
ios7 自定义UINavigationBar UIBarButtonItem 10px的偏移纠正的两种解决方案
方案一:利用UINavigationBar 自带的布局item(Fixed space Bar Button Item)来适配ios7. 其实就是在原来返回按钮的位置上在多加一个占位的Item 为UINavigationBar 写一个分类。UINavigationItem+correct_offset.h #import @interface UINavigationIte...
分类:移动开发   时间:2014-05-01 17:29:39    阅读次数:525
Visulalization Voronoi in OpenSceneGraph
Abstract. In mathematics a Voronoi diagram is a way of dividing space into a number of regions. A set of points, called seeds, sites, or generators is...
分类:其他好文   时间:2014-05-01 09:46:54    阅读次数:493
hdu 1233 还是畅通工程
简单最小生成树,继续我的kruskal#include#include#include#includeusing namespace std;const int MAX=1000000;struct node{ int left,right,cost;}road[MAX];bool cmp(n...
分类:其他好文   时间:2014-05-01 09:28:42    阅读次数:333
【复习】css中的position
好久不写CSS代码 感觉忘的差不多了,代码就是要多敲才行的。就行武林中的武者一样,每天都要勤加练习才可。 正好写写博客,就当复习复习。 position  主要是用来 元素的定位方式 static :  无特殊定位,对象遵循HTML定位规则 absolute :  将对象从文档流中拖出,使用left,right,top,bottom等属性进行绝对定位。而其层叠通过z-index属性定义。此...
分类:Web程序   时间:2014-04-29 13:45:20    阅读次数:354
Android Text文本设置字体大小
可以指定单位: setTextSize(int unit, int size) TypedValue.COMPLEX_UNIT_PX : Pixels TypedValue.COMPLEX_UNIT_SP : Scaled Pixels TypedValue.COMPLEX_UNIT_DIP : Device Independent Pixels mText.setTextSize(...
分类:移动开发   时间:2014-04-29 13:22:20    阅读次数:345
ios真机调试错误解决:Installation of apps is prohibited by a policy on the device
该问题的出现原因是手机中的访问权限被关闭了,打开方法如下: 设置->通用->访问限制->安装应用程序...
分类:移动开发   时间:2014-04-29 13:16:21    阅读次数:759
Wind River Intelligent Device Platform XT 2.0.1
2692407267@qq.com,更多内容请关注http://user.qzone.qq.com/2692407267 Wind River Intelligent Device Platform XT 2.0.1,增加了对quark和galileo的支持...
分类:Windows程序   时间:2014-04-29 13:11:22    阅读次数:508
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!