Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到error 409 Conflict以下消息
error 409 Conflict
此版本的部署尚未开始
我尝试部署到新版本,更新现有版本并尝试回滚,但在部署过程中一切正常,直到最后一步,它最终显示
上传 0 个文件 此版本的部署尚未开始
上传 0 个文件
这是 1.7.0 管理控制台中的一个已知错误。我们正在努力修复。此问题现已修复。2012 年 10 月 11 日
我认为他们正在为 1.7.0 准备生产环境(并且可能在早上准备一些与 I/O 相关的恶作剧)。我有适用于 Windows 的 1.6.5 python SDK,它阻止了我(和你一样)。1.7.0,同样的错误。抓住 1.6.6,它似乎工作正常:
http://code.google.com/p/googleappengine/downloads/detail?name=GoogleAppEngine-1.6.6.msi&can=1&q=python+1.6.6
我是位运算的初学者(在 C 方面也不是很有经验),我遇到了以下表达式:
x |= (1<<y)
起初我以为它的意思是“x 等于 x 或 y 左移一位”,但后来我意识到这将是:
x |= (y<<1)