错误消息:Msg 1105, Level 17, State 2, Line 266Could not allocate space for object 'dbo.Large Object Storage System object: 422392492982272' in database '....
分类:
数据库 时间:
2015-03-12 00:36:31
阅读次数:
3576
Python 标准库中的logging 模块提供了一套标准的 API 来处理日志信息的打印。import logginglogging.basicConfig( level = logging.DEBUG, format = '%(asctime)s [%(threadName...
分类:
编程语言 时间:
2015-03-11 18:41:00
阅读次数:
247
Few weeks ago, a famous software company has upgraded its instant messaging software. A ranking system was released for user groups. Each member of a group has a level placed near his nickname. The le...
分类:
其他好文 时间:
2015-03-11 17:14:04
阅读次数:
196
Android中开发动效有两套框架可以使用,分别为 Animation 和 Property Animation;
相对来说,Animator比Animation要强大太多,两者之间的主要区别在于:
区别一:需要的Anroid API level不一样
Property Animation需要Android API level 11的支持,当然可以使用nineoldandroids....
分类:
其他好文 时间:
2015-03-11 17:13:11
阅读次数:
292
http://blog.csdn.net/huiguixian/article/details/39928027从Android developer copy过来,留作笔记的。Platform VersionAPI LevelVERSION_CODENotesAndroid 4.419KITKATP...
分类:
移动开发 时间:
2015-03-11 16:26:54
阅读次数:
161
Binary Tree Level Order Traversal II问题:Given a binary tree, return thebottom-up level ordertraversal of its nodes' values. (ie, from left to right, le...
分类:
其他好文 时间:
2015-03-11 09:15:51
阅读次数:
125
水平触发(level-triggered,也被称为条件触发)LT:?只要满足条件,就触发一个事件(只要有数据没有被获取,内核就不断通知你) 边缘触发(edge-triggered)ET:?每当状态变化时,触发一个事件。 “举个读socket的例子...
分类:
其他好文 时间:
2015-03-11 08:11:59
阅读次数:
118
android官方开发教程第一章遇到 android:actionBarStyle requires API level 11 的解决方法
分类:
移动开发 时间:
2015-03-10 18:52:46
阅读次数:
120
删除数据库表中的字段时,使用了 :alter table 表名 drop column 列名服务器返回的错误为:Server: Msg 5074, Level 16, State 1, Line 1The object 约束名is dependent on column 列名.Server: Msg...
分类:
数据库 时间:
2015-03-10 17:08:57
阅读次数:
219
Question:Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to ro...
分类:
其他好文 时间:
2015-03-10 17:01:03
阅读次数:
129