码迷,mamicode.com
首页 >  
搜索关键字:error    ( 30038个结果
shell-入门
dos2unix start.sh在windows系统下编写的shell脚本 在liunx下进行一次转译,否则会爆出 command not found 的error;1 #!/bin/sh2 send=`date '+%Y-%m-%d %H:%M%:%S'`3 4 echo $send格式化当前系...
分类:系统相关   时间:2015-05-06 12:58:39    阅读次数:150
An error occurred during the installation of assembly 'Microsoft.VC90.ATL or 'Microsoft.VC80.ATL'
An error occurred during the installation of assembly 'Microsoft.VC90.ATL or 'Microsoft.VC80.ATL'下载安装即可修复https://support.microsoft.com/default.aspx?sc...
分类:其他好文   时间:2015-05-06 12:42:39    阅读次数:621
error: unpack failed: error Permission denied
gerrit服务器迁移后,clone和pull代码到本地,都没问题。但是,push时,报错:查看了下git版本库存储目录,发现git下版本库镜像文件owner都是root。因为之前安装的gerrit服务器使用root账号安装的。新的服务器使用了gerrit用户安装。并结合网络上的这个问题解决方案:h...
分类:其他好文   时间:2015-05-06 12:42:21    阅读次数:171
Thinking In Java笔记(第五章 初始化与清理(三))
第五章 初始化与清理5.6 成员初始化    Java尽力保证:所有变量在使用前都能得到恰当的初始化。对于方法的局部变量,Java以编译错误的形式来保证。如下:void f() { int i; i++; //Error:i not initialized }     会得到一条错误的消息,提示i可能没有初始化。编译器可以给i赋初值,但是并没有这么做,因为没有初始化是程序员的疏忽,为...
分类:编程语言   时间:2015-05-06 11:08:53    阅读次数:122
Android混淆时出现的proguard returned with error code 1.See console问题
最近使用项目进行Android的混淆处理,工程中加入了多个第三方的jar包,直接使用project.properties中的proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt进行混淆处理,打包APK的时候出现了proguard returned with error code 1.S...
分类:移动开发   时间:2015-05-06 11:06:05    阅读次数:235
IAR中常用的 #pragma 命令和扩展关键字
pragma 命令1、#pragma message(“ ”) 编译器编译到此处,在Build窗口中打印相应文本信息。2、#pragma error “” 编译器编译到此处,在Build窗口中产生错误并打印其文本信息。3、#pragma inline [=forced | never] 用这个指令是建议编译将这条指令后面的函数内联到调用它的函数的函数体中去。 当#pragma i...
分类:其他好文   时间:2015-05-06 11:03:02    阅读次数:444
关联函数一个有用的选项
在LR中,关联函数web_reg_save_param的NotFound参数有两个选项,含义分别如下:ERROR:当关联函数未能找到匹配值时,LR将抛出一个Error信息;EMPTY:当关联函数未能找到匹配值时,LR将空值赋给该关联的参数值。默认情况下,该值为Error,在大多数情况下,这是可以满足...
分类:其他好文   时间:2015-05-06 10:45:30    阅读次数:121
Ubuntu 更新源失败[GPG error]
对于错误 GPG error: http://ppa.launchpad.net precise Release: The following signatures couldn't be verified because the public key is not available: NO_PU...
分类:系统相关   时间:2015-05-06 10:43:05    阅读次数:261
cocos2dx 3.2在Eclipse上打包出现error: call of overloaded 'abs(float)' is ambiguous
代码 abs(a-b); 一个数学公式,这是何故呢? 看来是函数冲突造成的, 后来发现 abs()函数改为 fabs() ,即可编译成功。看来是C++函数名不同的缘故。 因为计算因子都是float类型。 解决方法: 在VS上我给abs传递的参数是float,但是可以正常编译通过。 在Eclipse上就无法自动转换了 所以最后改成fabs(double)函数就可以直接传递flo...
分类:系统相关   时间:2015-05-06 06:56:41    阅读次数:1132
Caused by: java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0
1、错误描述 [ERROR:]2015-05-05 16:35:50,664 [异常拦截] org.hibernate.exception.GenericJDBCException: error executing work at org.hibernate.exception.internal.StandardSQLExceptionConverter.convert(StandardSQ...
分类:数据库   时间:2015-05-06 01:31:41    阅读次数:344
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!