<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
..
分类:
Web程序 时间:
2014-10-17 19:04:05
阅读次数:
278
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=UTF-8">
<title>UntitledDocument</title>
<styletype="text/css"&..
分类:
Web程序 时间:
2014-10-17 19:00:57
阅读次数:
236
<html>
<head>
<scriptsrc="jquery-1.7.1.min.js"></script>
<scripttype="text/javascript">
$(document).ready(function(){
vart1=setTimeout("$(‘#a‘).css(‘color‘,‘#0099FF‘);",2000)
vart2=setTimeout("$(‘#b‘).css(‘color‘,‘#0099FF‘)",30..
分类:
移动开发 时间:
2014-10-17 18:59:36
阅读次数:
171
我们知道git有工作区,暂存区和分支:1.编辑了git库中的文件后,没有add,相当于写入了工作区,也即创建了新的分支我们可以用gitcheckout--filename来撤销新创建了的分支2.如果修改了文件并且gitaddfilename了,那就相当于创建了新分支,并把HEAD指向了这个新分支,这个时候可..
分类:
其他好文 时间:
2014-10-17 18:56:00
阅读次数:
182
[was@dmgr ita-scripts]$ vi java_analys.sh
PID=$1 ; ps -mp $PID -o THREAD,tid,time | awk -F " " '{print $2" "$8}' | grep -v CPU | grep -v "-" | sort -nr | head -1 | awk -F " " '{print $2}' | xargs ...
分类:
编程语言 时间:
2014-10-17 18:47:37
阅读次数:
181
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus?">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="...
分类:
Web程序 时间:
2014-10-17 17:03:09
阅读次数:
146
在linux内核中用的非常多的一种链表是:双向链表。内核中对所用的进程的管理就是通过双向链表来实现的。所以对链表的操作非常的常用也非常的重要,因此内核通过提供一个通用的方法来帮助我们方便的对双链表实现各种操作。structlist_head{structlist_head*next,*prev;}0,对双向..
分类:
系统相关 时间:
2014-10-17 15:43:47
阅读次数:
269
在linux内核中经常会看到这几个结构体:structlist_head;structhlist_head;structhlist_node;在linux内核源代码中对这三个结构体的定义如下:structlist_head{structlist_head*prev;structlist_head*next;}structhlist_node{structhlist_node**prev;structhlist_node*next;}str..
分类:
系统相关 时间:
2014-10-17 12:12:41
阅读次数:
314
--linux命令:1、cd切换目录cd../切换到上级目录2、ls显示文件列表3、sh运行sh文件./***.sh也可以运行sh文件4、ps-efa|grepweblogic--查进程显示结果:用户名用户id进程id明细信息5、kill-9进程id--杀进程6、tail-f***.**查看日志文件7、nohupshstartWebLogic.sh&带日志启..
分类:
系统相关 时间:
2014-10-17 12:11:01
阅读次数:
218
题意:自行脑补
思路:网络流,建模显然,若满流则可以
代码:#include
#include
#include
#include
#include
#include
using namespace std;
#define INF 0x3f3f3f3f
queue q;
struct Solver {
int head[200], next[6010], end[...
分类:
其他好文 时间:
2014-10-17 12:08:28
阅读次数:
169