业精于勤,荒于嬉
全部博文(763)
发布时间:2014-06-06 18:09:56
一. SVN 简介 Subversion(SVN) 是一个开源的版本控制系統, 也就是说 Subversion 管理着随时间改变的数据。 这些数据放置在一个中央资料档案库 (repository)中。 这个档案库很像一个普通的文件服务器, 不过它会记住每一次文件.........【阅读全文】
发布时间:2014-06-06 17:35:56
1> 安装 svn 服务器程序#yum install -y subversion 安装 svn 服务器端程序#svnserve --version 查看 svn 服务程序的版本号 (验证安装是否成功)2> 增加 svn 用户 (系统用户)#useradd svn 增加一个 svn 用户 (以.........【阅读全文】
发布时间:2014-06-06 10:14:32
class Boundary { private final Point[] points; // Points making up the boundary ... /** * Return true if the given point is contained inside the boundary. * See: http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html * @param test The point to check .........【阅读全文】