1.
信号量机制的缺陷问题:在上面的生产者消费者实例中,信号量的工作机制如下(我们以生产者的代码为例):1 down(&empty);2
down(&mutex);3 enter_item(item);4 up(&mutex);5
up(&full);如果交换1号和2号语句,变成:1 down(&m...
分类:
其他好文 时间:
2014-06-06 22:36:54
阅读次数:
336
变宽度布局1-2-1 等比例变宽总宽度设置width: 85%;min-width:
650px; (关于IE6的min-width支持,可用)content 设置width: 66%;float: left;side 设置width:
33%;float: right;增加clear 空divHT...
分类:
Web程序 时间:
2014-06-06 16:48:54
阅读次数:
306
Another great feature of comfort jestmankiet.
This ensures that they are secured in the package. The bag can be rolled up,
without the need for roll c...
分类:
其他好文 时间:
2014-06-06 09:59:04
阅读次数:
196
运行bin/jmeter.bat后,先来了解几个术语:
1、线程组:测试里每个任务都要线程去处理,所有我们后来的任务必须在线程组下面创建。可以在“测试计划->添加->线程组”来建立它,然后在线程组面板里有几个输入栏:线程数、Ramp-Up
Period(in seconds)、循环次数,其中Ram....
分类:
其他好文 时间:
2014-06-05 19:21:13
阅读次数:
330
题目链接 You are given an n x n 2D matrix representing
an image. Rotate the image by 90 degrees (clockwise). Follow up: Could you do
this in-place? ...
分类:
其他好文 时间:
2014-06-05 16:56:29
阅读次数:
228
1、创建文件夹mkdir
与win7的dir查看文件夹2、删除文件夹rmdir3、显示文件夹里的文件ls -l 区别于ls -al (有一些隐藏文件)4、清屏clear与win7的
cls5、删除某个文件:rm -f text.txtrpmdebls 显示文件名称、属性等cp 复制文件或目录rm 删...
分类:
系统相关 时间:
2014-06-05 12:45:40
阅读次数:
305
1. CSS 样式兼容:1)
对Box解析的不一样: height:160px!important; height:200px; padding:5px;2)
float闭合 添加一个新的div子元素 clear:both 父元素样式 overflow:auto;zoom:1; after伪类添加....
分类:
其他好文 时间:
2014-06-04 16:39:58
阅读次数:
372
百度编辑器本身是没有为上传图片添加水印的功能,想要在上传的时候添加图片水印,也很简单。以 ueditor 1.2.6 为例,打开php目录下面的imageUp.php文件,查找“$info = $up->getFileInfo();”,在这句代码的下面加入以下代码:
/* 添加水印 start */
$water_img = "watermark.png";
//水印文件...
分类:
其他好文 时间:
2014-06-02 12:20:28
阅读次数:
248
Given a linked list, determine if it has a
cycle in it.Follow up:Can you solve it without using extra
space?求链表是否有环的问题,要考虑链表为空的情况,定义一个快指针和一个慢指针,如果快指针和...
分类:
其他好文 时间:
2014-06-02 08:05:16
阅读次数:
255
Given a linked list, return the node where the
cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it
without using extra space?借用博...
分类:
其他好文 时间:
2014-06-02 07:32:33
阅读次数:
291