Queuing:提交太多了,OJ无法在第一时间给所有提交以评判结果,后面提交的程序将暂时处于排队状态等待OJ的评判。不过这个过程一般不会很长。Compiling:您提交的代码正在被编译。Running:您的程序正在OJ上运行。Judging:OJ正在检查您程序的输出是否正确。Accepted(AC)...
分类:
其他好文 时间:
2014-10-15 10:55:35
阅读次数:
240
在大型网站中对数据库往往都是做主从设计的,要是根据设计模式读写都只是进行再主库上面,那么从服务器往往是智能起了备份的作用,有时候备份端口了适当时候手工添加就好,但是要是网站做了读写分离,不及时发现那就是灾难性的了:(一般出现从库跟不上可以暂时先把读也切换到主..
分类:
数据库 时间:
2014-10-14 20:54:20
阅读次数:
232
http://www.ivankuznetsov.com/2010/02/no-space-left-on-device-running-out-of-inodes.html No space left on device – running out of Inodes One of our development servers went down today. Problems sta...
分类:
系统相关 时间:
2014-10-14 19:05:29
阅读次数:
267
正常安装完zabbix后,登录后zabbix监控报错zabbix server is not running: the information displayed may not be current, 下面的几种情况都有可能引起这个错误, 1. selinux是否关闭。一定要关闭这个,开启sel...
分类:
其他好文 时间:
2014-10-14 13:47:49
阅读次数:
265
最近写学习android编程的的时候,每次保存.java文件的时候,总会跳出如下错误解决:
分类:
移动开发 时间:
2014-10-13 23:06:37
阅读次数:
257
python检测linux下运行的进程#-*-coding:utf8-*-
importsubprocess
importsys
status_ok=0
status_critical=2
defc(d_name):
cmd=‘ps-ef|grep%s|grep-v"grep"‘%d_name
p=subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE)
ifp.wait()==0:
val=p.stdout.read()
ifd_name..
分类:
编程语言 时间:
2014-10-13 21:12:07
阅读次数:
244
- all features were running on sitecollection level and at site levelBut here is the solution, i do not why it worked but it did work.Although you can...
分类:
其他好文 时间:
2014-10-13 14:17:39
阅读次数:
196
=====================services.xml This service is to get the running Axis version ...
分类:
编程语言 时间:
2014-10-12 20:16:58
阅读次数:
206
* mysql启动报错时 重启时 /etc/init.d/mysqld restart Stopping mysqld: [ OK ] Another MySQL daemon already running with the same unix socket. Starting mysqld: [...
分类:
数据库 时间:
2014-10-12 12:21:37
阅读次数:
234
在java 中退出程序,经常会使用System.exit(1) 或 System.exit(0)。查看System.exit()方法的源码,如下 1 /** 2 * Terminates the currently running Java Virtual Machine. The 3...
分类:
编程语言 时间:
2014-10-11 11:52:15
阅读次数:
260