开篇介绍此文章专门记录 XSLT 样式表转换过程中的语法问题错误一 值与属性的倒置修改了几次样式表,但还是一如既往的报错,报错信息如下:[XML Task] Error: An error occurred with the following error message: "Attribute a...
分类:
其他好文 时间:
2014-09-27 18:24:20
阅读次数:
228
WebDriverWait(self, driver, timeout).until(self, method,message=' ')def until(self, method, message=''): """Calls the method provided with the ...
分类:
Web程序 时间:
2014-09-27 16:36:50
阅读次数:
151
最长公共子串问题的后缀数组解法。将第二个字符串拼接到第一个字符串中去,中间用分割符隔开,避免后面计算的时候发生一个字串横跨两个字符串的情况。之后看相邻的不在同一个字符串中的lcp的最大值即可。#include #include #include #include #include #include ...
分类:
其他好文 时间:
2014-09-27 02:00:58
阅读次数:
293
#2006 - MySQL server has gone away
对于web应用来说,经常会用到mysql,而数据的备份与还原是web应用经常做的事,一般来说,用客户端工具phpmyadmin,sqlyog 等,来备份数据库没有任何问题,还原时经常碰到mysql提示的#2006错误。
Error: 2006 (CR_SERVER_GONE_ERROR)
Message:...
分类:
数据库 时间:
2014-09-26 20:42:58
阅读次数:
231
private static object s_lock = new object(); public static void TraceLog(string message, string logFileName, string logPath = null) { ...
分类:
其他好文 时间:
2014-09-26 20:25:18
阅读次数:
161
/*** Structure for SIP Message (REQUEST and RESPONSE).* @struct osip_message*/ struct osip_message { char *sip_version; /**content_length == NULL) ...
分类:
其他好文 时间:
2014-09-26 19:11:48
阅读次数:
223
具体代码附文末。先演示一下怎么使用。 AlertView的情况 -?(void)creatAlertView
{
????UIAlertView?*alertView?=?[[UIAlertView?alloc]?initWithTitle:@"title"?message:@"message"?delegate:self?...
分类:
移动开发 时间:
2014-09-26 12:09:19
阅读次数:
1001
spring的RabbitTemplate 接收Message源码导读...
分类:
编程语言 时间:
2014-09-26 03:13:28
阅读次数:
991
spring的RabbitTemplate 发送Message源码导读...
分类:
编程语言 时间:
2014-09-25 23:25:58
阅读次数:
4204
1.定义proto文件:User.protopackage netty;option java_package="myprotobuf";option java_outer_classname="UserProto";message User{ required int32 ID=1; ...
分类:
其他好文 时间:
2014-09-25 14:09:49
阅读次数:
319