一、简介 Samba是一个能让Linux系统应用Microsoft网络通讯协议的软件,而SMB是Server Message Block的缩写,即为服务器消息块 ,SMB主要是作为Microsoft的网络通讯协议,后来Samba将SMB通信协议应用到了Linux系统上,就形成了现在的Samba软件....
分类:
其他好文 时间:
2014-09-29 14:16:40
阅读次数:
319
.proto文件示例message Configure{ required string host = 1; required uint32 port = 2;}写配置文件代码Configure config;config.set_host("127.0.0.1");config.set...
分类:
其他好文 时间:
2014-09-29 13:54:10
阅读次数:
700
public class MyCustomerFilterAttribute : ActionFilterAttribute { public string Message { get; set; } public override void OnActionExe...
分类:
Web程序 时间:
2014-09-29 10:31:17
阅读次数:
173
注:本文章转载于网络。MD5(单向散列算法)的全称是Message-Digest Algorithm 5(信息-摘要算法),经MD2、MD3和MD4发展而来。MD5算法的使用不需要支付任何版权费用。MD5功能: 输入任意长度的信息,经过处理,输出为128位的信息(数字指纹); 不同的输入得到的不同的...
分类:
其他好文 时间:
2014-09-28 23:35:11
阅读次数:
366
hmtl5 推出postMessage后,在解决跨文档消息通信、及跨域请求数据的问题 时方便了很多。postMessage的使用方法postMessage实例各个浏览器的支持情况一、postMessage的使用方法:otherWindow.postMessage(message, targetOri...
分类:
Web程序 时间:
2014-09-28 20:33:05
阅读次数:
225
注意:应该在handleMessage中处理从服务器返回的数据。否则会因为线程问题拿不到结果。public class MainActivity extends Activity{ private String responseInfo; private Handler handler;...
分类:
其他好文 时间:
2014-09-28 15:15:52
阅读次数:
653
几天写一个小程序的时候用到了SignalR,发现现在SingalR Server 支持强类型了,也就是说,我们可以定义一个客户端的通知契约:public interface IClient{void SayHello(string message);} 然后Hub就可以这么写了:public ...
分类:
其他好文 时间:
2014-09-27 23:08:00
阅读次数:
346
开篇介绍此文章专门记录 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