这个makefile里不要乱用TAB,只有命令所在的行才能且只能以TAB开头! 其他的如,make变量的定义、赋值,make内定函数如$(error "strings")都不能以TAB开头,不然make会将其作为命令来处理! 如果排除了TAB用空格代替的问题后、以及由中文“:”等问题后,问题还存在 ...
分类:
其他好文 时间:
2016-07-03 17:05:45
阅读次数:
195
解决方案:1.打开终端2.cd 到警告所提示的文件夹下3.执行命令svn rm 丢失文件的名称4.回车 批量删除 这时候我们打开Terminal(终端) 输入cd 空格 然后把在网上工程到Terminal 回车 输入命令行rm -rf `find . -type d -name .svn` ...
分类:
其他好文 时间:
2016-06-24 10:52:31
阅读次数:
421
使用let来声明常量,使用var来声明变量变量OC先定义再初始化int num; num = 10定义的同时初始化 int num = 20swift先定义再初始化 var num报错: 没有指定数据类型(type annotation missing in pattern), 在Swift中如果想... ...
分类:
其他好文 时间:
2016-06-23 12:33:51
阅读次数:
187
前段时间复制实体时候遇到这样一个错误. 但是又不想赋值权限,最后在调试中发现一个属性: overriddencreatedon 去掉之后就不报错了。 ...
分类:
数据库 时间:
2016-06-22 14:10:15
阅读次数:
265
remote: ERROR: missing Change-Id in commit message footer remote: ERROR: missing Change-Id in commit message footer [摘要:git 提交到近程版本库失足:remote: ERROR: ...
分类:
其他好文 时间:
2016-06-21 22:29:55
阅读次数:
201
1.print >>> print 'hello world' SyntaxError: Missing parentheses in call to 'print' >>> Python版本更新后,3.X的版本中去掉了很多的函数,在3.X版本的python中,print需要加上括号 如: >>> ...
分类:
编程语言 时间:
2016-06-21 17:40:59
阅读次数:
420
原文地址:http://code.joejag.com/2016/anti-if-the-missing-patterns.html Around 10 years ago I encountered the anti-if campaign and found it to be an absurd ...
分类:
其他好文 时间:
2016-06-17 14:19:25
阅读次数:
192
今天通过svn 的cr(code review)代码审核后,我欲执行svn ci -m"xxxxxxx(提交注释) ISSUE=3380305",但是没有提交成功,SVN报错啦! 内容如下: 提示:"svn: Commit failed (details follow): svn: '/xxx/yy ...
分类:
其他好文 时间:
2016-06-17 14:14:47
阅读次数:
257
defmain():
options,server,remote=parse_options()
password=None
ifoptions.readpass:
password=getpass.getpass(‘EnterSSHpassword:‘)
client=paramiko.SSHClient()
client.load_system_host_keys()
client.set_missing_host_key_policy(paramiko.WarningPolicy())
verbose(..
分类:
编程语言 时间:
2016-06-17 00:56:12
阅读次数:
271