设置方法:我的电脑->属性->高级->环境变量->系统变量中添加以下环境变量:JAVA_HOME值为:安装JDK的目录, 我的为C:\Program Files\Java\jdk1.8.0_05(安装时候有路径选择,复制下来即可)CLASSPATH值为:.;%JAVA_HOME%\lib\tools...
分类:
移动开发 时间:
2014-08-06 21:55:42
阅读次数:
371
case描述: innodb中,父表和子表通过foreign constraint进行关联, 因为在更新数据时需要check 外键constraint,如果父表被大量的子表reference, 那么在open的时候,需要open所有的child table和所有的foreign const...
分类:
数据库 时间:
2014-08-06 18:38:21
阅读次数:
298
select控件选项1,获取select选中的value值 $("#selectID").val();2,获取select选中的text的值$("#selectID").find("option:selected").text()3,设置select的第几项为当前选中项$("#selectID")....
分类:
Web程序 时间:
2014-08-06 18:28:24
阅读次数:
208
constrains装饰用于对字段进行限制应用举例:定义列:age = fields.Integer(string="age") 方法:@api.constrains('age')def _check_age(self): if self.age<16: raise Val...
In this DocumentDetailsActionsConcepts/DefinitionsDiagnosing (starting point is Note 7445.1)Additional ResourcesCommunity: Incident (600-7445) Analysi...
分类:
其他好文 时间:
2014-08-06 18:25:41
阅读次数:
339
半平面交模板#include #include #include #include #include using namespace std;const int MAXN=110;const double eps=1e-8;struct point { double x,y;};point pts[...
分类:
其他好文 时间:
2014-08-06 18:14:31
阅读次数:
240
发现好多半平面交用N^2的增量法都能过诶。。。#include #include #include #include #include using namespace std;const int MAXN=1550;const double eps=1e-8;struct point { doubl...
分类:
其他好文 时间:
2014-08-06 17:52:11
阅读次数:
261
Copy List with Random PointerA linked list is given such that each node contains an additional random pointer which could point to any node in the lis...
分类:
其他好文 时间:
2014-08-06 17:44:31
阅读次数:
225
上篇我们把被监控端的配置已经完成。下面再让我们回到nagios监控端配置下即可完成对服务器的监控工作1,安装nrpetar-zxvfnrpe-2.12.tar.gz-C/usr/src/cd/usr/src/nrpe-2.12/ls./configuremake&&makeinstallmakeinstall-plugin/usr/local/nagios/libexec/check_nrpe-H19..
分类:
移动开发 时间:
2014-08-06 06:19:21
阅读次数:
326
ORACLE数据库空间裸设备出问题了,启动oracle失败,解决方法问题现象:启动ORACLE的时候报如下的错误: Database mounted. ORA-01122: database file 6 failed verification check ORA-01110: data file ...
分类:
数据库 时间:
2014-08-06 01:33:00
阅读次数:
391