运行mvn eclipse:eclipse时,经常会出现因为maven项目过大,导致内存不足java栈溢出的error, 信息如下:[INFO] ------------------------------------------------------------------------[ERRO...
分类:
其他好文 时间:
2014-07-02 18:56:30
阅读次数:
251
1、初始化密码 >sudo bin/mysqladmin -u root password 'pwd string'2、ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 1)添加启动参...
分类:
数据库 时间:
2014-07-02 18:51:21
阅读次数:
172
当数据库已经建好在DB里,SQL Server 2005 和 SQL Server 2008使用.Bak文件还原的时候,会出现 error : "The backup set holds a backup of a database other than the existing" 查了网上的方法:...
分类:
数据库 时间:
2014-07-02 18:48:45
阅读次数:
203
使用Xcode SVN 出现问题The operation couldn’t be completed. (NSURLErrorDomain error -1012.)解决方法:打开终端 然后输入如下命令svn ls xxxx(xxx是你SVN Server的地址)这里询问你是否允许这个地址的访问,...
分类:
其他好文 时间:
2014-07-02 13:59:06
阅读次数:
416
错误信息:
Error
Cannot display data
The data cannot be displayed: there is no viewpoint application for the data
错误出现情景:
在对程序做Hardware Event-based Sampling Analysis 0分析时,出现上述错误。
错误解决方法:
删...
分类:
其他好文 时间:
2014-07-02 09:02:56
阅读次数:
337
需要实现在打印 WARN, ERROR, CRITICAL的log时显示函数/方法名和行号,在INFO级不显示
import logging
def AltCustomFormatter(logging.Formatter):
def __init__(self, fmt=None, datefmt=None):
super(AltCustomFormatter, self).__ini...
分类:
编程语言 时间:
2014-07-02 08:44:51
阅读次数:
432
今天碰到一个比较坑爹的问题,在centos上用yum安装编译环境,运行:
yum -y install make gcc gcc-c++ kernel-devel m4 ncurses-devel openssl-devel
结果导致编译cocos2d-x出现错误:
cc1plus: error: unrecognized command line option "-std=c++11"...
分类:
其他好文 时间:
2014-07-02 08:23:01
阅读次数:
290
题目:用两个栈实现一个队列。队列的声明如下:请实现它的两个函数appendTail和deleteHead,分别完成在队列尾部插入结点和在队列头部删除结点的功能。
分析:
队列的特点是“先进先出”,而栈的特点是“先进后出”。要用两个栈来实现队列。用图分析如下:
程序代码如下:
#include
#include
#include
#ifndef ERROR
#define E...
分类:
其他好文 时间:
2014-07-02 08:00:24
阅读次数:
247
当我更新完android L proview之后我的打包出问题了,报错/${zipalign}" error=2, No such file or directory
排查了一下午才知道 最近的ant/build.xml文件中丢失了一行代码
第二行代码丢失。直接恢复或者直接用老版本的build.xml文件就OK!fuck!...
分类:
移动开发 时间:
2014-07-02 07:51:32
阅读次数:
289
postfix_编译时make:***[xsasl_cyrus_server.o]Error1make:***[update]
//如果编译出错,检查出错情况,一般是有包忘了装,要不是参数路径错误;
【注释】:
xsasl_cyrus_server.c:598:error:‘SASL_OK‘undeclared(firstuseinthisfunction)
xsasl_cyrus_server.c:600:warning:fo..
分类:
其他好文 时间:
2014-07-02 06:24:31
阅读次数:
1272