阿弥陀佛
发布时间:2014-01-15 14:20:50
# Add the remote, call it "upstream": git remote add upstream https://github.com/whoever/whatever.git # Fetch all the branches of that remote into remote-tracking branches,# such as upstream/master: git fetch upstream # Make sure that you're on your master branch: git checkout master # Rewr.........【阅读全文】
发布时间:2013-12-04 22:51:43
UIManager .setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");......【阅读全文】
发布时间:2013-11-22 10:43:31
本文结合 HAProxy 的代码,分析了按位或(bitwise-OR)和逻辑或(logical-OR)的性能比较。......【阅读全文】
发布时间:2013-11-13 20:41:53
fork系统调用,fork的pid如果为0 说明为子进程,子进程通过copy on write的方法完成对变量的任何修改。父进程通过wait(NULL)的方法等待子进程的结束再继续进行。父进程还是原程序,如果子进程sleep,并不会影响父进程,如果不调用wait,父进程执行完,程序就结束了。.........【阅读全文】
发布时间:2013-08-30 09:50:12
在做HA的时候需要为服务器设计虚拟IP,也就是一个主机对应多个IP地址?刚听起来好神奇,原来这样也是可能的看了下面的这个链接 自己配了一下http://hi.baidu.com/pbottle/item/7175d29702a0a0bd83d29533在eth0处引用别名,设置完子网掩码即可ifconfig eth0:0 166.111.69.100 netmask 255.255.255.0 upifconfig查看此.........【阅读全文】