1、错误描述
Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
C:\Users\Administrator>d:
D:\>ant
Buildfile: D:\build.xml
BUILD FAILED
D:\build.xml:2: 前言中不允许有内容。
Total time: 0...
分类:
其他 时间:
2015-03-14 06:13:20
收藏:
0 评论:
0 赞:
0 阅读:
571
1.Linux系统与其他的操作系统不同,它设有运行级别。该运行级指定操作系统所处的状态。Linux系统在任何时候都运行于某个运行级上,且在不同的运行级上运行的程序和服务都不同,所要完成的工作和所要达到的目的也都不同。
2.Linux(Red Hat 9.0)设置了7个不同的运行级,系统可以在这些运行级别之间进行切换以完成不同的工作。
3.接下来简单介绍7个系统运行级:
(1)...
分类:
系统服务 时间:
2015-03-14 06:13:00
收藏:
0 评论:
0 赞:
0 阅读:
466
Reverse bits of a given 32 bits unsigned integer.
For example, given input 43261596 (represented in binary as 00000010100101000001111010011100), return 964176192 (represented in binary as 001110010...
分类:
其他 时间:
2015-03-14 06:12:50
收藏:
0 评论:
0 赞:
0 阅读:
271
Boosting原理众做周知,boosting就是所谓的有多个弱分类器组成一个强分类器。而什么叫做弱分类学习和什么时候需要使用弱分类学习呢?弱分类学习弱分类学习:识别一组概念的正确率仅比随机猜的概率高一点。
同理,当需要分类的训练组具有上述特点时,可以优先考虑使用boosting算法。...
分类:
编程语言 时间:
2015-03-14 06:12:40
收藏:
0 评论:
0 赞:
0 阅读:
436
实例化(instancing)或者多实例渲染(instancd rendering)是一种连续执行多条相同渲染命令的方法。并且每个命令的所产生的渲染结果都会有轻微的差异。是一种非常有效的,实用少量api调用来渲染大量几何体的方法。OpenGL提供多种机制,允许着色器对不同渲染实例赋予不同的顶点属性。...
分类:
其他 时间:
2015-03-14 06:11:40
收藏:
0 评论:
0 赞:
0 阅读:
359
Download OpenCV 2.4.10Download CMake 2.8Open CMake and choose the source code directory and build binary directoryThen click "Configure", and "Generat...
分类:
系统服务 时间:
2015-03-14 06:11:00
收藏:
0 评论:
0 赞:
0 阅读:
310
Write a function that takes an unsigned integer and returns the number of ’1' bits it has (also known as the Hamming weight).For example, the 32-bit i...
分类:
其他 时间:
2015-03-14 06:10:50
收藏:
0 评论:
0 赞:
0 阅读:
143
Given an array with integers.Find two non-overlapping subarrays A and B, which |SUM(A) - SUM(B)| is the largest.Return the largest difference.NoteThe ...
分类:
其他 时间:
2015-03-14 06:10:30
收藏:
0 评论:
0 赞:
0 阅读:
376
Given an array of integers, find two non-overlapping subarrays which have the largest sum.The number in each subarray should be contiguous.Return the ...
分类:
其他 时间:
2015-03-14 06:10:20
收藏:
0 评论:
0 赞:
0 阅读:
292
Mac OS X是基于unix的操作系统,很多软件都集成在系统中。所以,对于配置PHP的开发环境相对于windows和Linux更简单。1. 启动Apache服务器打开终端(terminal),查看Apache和PHP版本$ apachectl -v && php -vServer version:...
分类:
数据库技术 时间:
2015-03-14 06:10:10
收藏:
0 评论:
0 赞:
0 阅读:
358
参考资料:http://kevin19900306.iteye.com/blog/1397744引用自别人的博客:特别注意一点,与Spring3.1以下版本整合必须使用Quartz1,最初我拿2.1.3的,怎么搞都报错: Caused by: org.springframework.beans.fa...
分类:
编程语言 时间:
2015-03-14 06:10:00
收藏:
0 评论:
0 赞:
0 阅读:
402
一、创建数据库表--班级表create table grade( gid number primary key, --班级ID gname varchar2(50), --班级名称 gde...
分类:
Web开发 时间:
2015-03-14 06:09:50
收藏:
0 评论:
0 赞:
0 阅读:
303
新项目使用的是ECSHOP的程序,用的PHP版本比较高,导致错误一片,普通错误写法修改下就可以解决,但针对PHP Warning:Illegal string offset,百度了几次都未解决,最后添加一个判断解决问题,避开此错误if(is_array($arrVar)){语句}
分类:
Web开发 时间:
2015-03-14 06:09:40
收藏:
0 评论:
0 赞:
0 阅读:
480
本文主要内容是关于拾取机理的探讨,我在自己引擎中的每个Mesh类中加入了拾取机制,当物体打开拾取开关时,就会响应拾取,同时绘制一个辅助的外接体,被拾取到时,物体进行一个简单的绕自身Y轴自转的动作。 (我将鼠标投影矩阵进行了改写,在原基础上调节成了屏幕中心为原点,这样可以减少坐标系转换时的运算量...
分类:
其他 时间:
2015-03-14 06:09:30
收藏:
0 评论:
0 赞:
0 阅读:
225
hadoop-root-datanode-ubuntu.log中:2015-03-12 23:52:33,671 FATAL org.apache.hadoop.hdfs.server.datanode.DataNode: Initialization failed for Block pool ....
分类:
其他 时间:
2015-03-14 06:09:21
收藏:
0 评论:
0 赞:
0 阅读:
391
启动hdfs后(start-dfs.sh), 发现jps中namenode的进程不存在,导致hdfs连接不成功。查看log,发现其中:2015-03-11 20:23:00,986 FATAL org.apache.hadoop.hdfs.server.namenode.NameNode: Exce...
分类:
其他 时间:
2015-03-14 06:09:11
收藏:
0 评论:
0 赞:
0 阅读:
352
------- android培训、java培训、期待与您交流! ----------description方法有两种:- description方法和+ description方法1、-description方法使用NSLog和%@输出某个对象时,会调用对象的 - description方法,并拿...
分类:
其他 时间:
2015-03-14 06:08:51
收藏:
0 评论:
0 赞:
0 阅读:
226
如果您的mysql是通过brew安装的,那么请vi /usr/local/Cellar/mysql/5.6.23/my.cnf将max_allowed_packet = 64M写入保存并重启mysql,然后进入mysql cli运行show variables like 'max_allowed_p...
分类:
数据库技术 时间:
2015-03-14 06:08:30
收藏:
0 评论:
0 赞:
0 阅读:
283
这些项目大多数使用C++或者C编写,使用SourceCounter-3.5.33.73工具来统计源代码数量,本来是这里下载的:https://code.google.com/p/boomworks/downloads/list但是今天看到code.google.com即将关闭,那我还是上传一份吧:h...
分类:
其他 时间:
2015-03-14 06:08:00
收藏:
0 评论:
0 赞:
0 阅读:
543
学习JAVA的同学都知道,sun为我们封装了很多常用类,本篇就为大家总结一下我们经常使用的类。上一篇博客一位朋友留言问我String是不是引用数据类型?我通过查找资料发现String属于应用数据类型,现在就让我们首先了解一下String类吧。 1、String类 java.long.Strin...
分类:
编程语言 时间:
2015-03-14 06:07:51
收藏:
0 评论:
0 赞:
0 阅读:
354