1 using System; 2 using System.Collections; 3 using System.Collections.Generic; 4 using System.Collections.Concurrent; 5 using System.Linq; 6 using Sy... ...
分类:
Web程序 时间:
2017-08-22 13:52:44
阅读次数:
232
Suppose there are the symbols M, I, and U which can be combined to produce strings of symbols called "words". We start with one word MI, and transform ...
分类:
其他好文 时间:
2017-08-21 13:31:15
阅读次数:
148
之前我们使用lock快捷方式,实现了多线程对同一资源的共享。在C#中lock实际上是Monitor操作的简化版本 ...
分类:
编程语言 时间:
2017-08-20 19:55:09
阅读次数:
176
1.简单的makefile模板 2.解释 (1)$(patsubst <pattern>,<replacement>,<text>) 功能:查找<text>中的单词(单词以“空格”、“ Tab”或“回车”“换行”分隔)是否符合模式<pattern>,如果匹配的话,则以<replacement>替换。 ...
分类:
其他好文 时间:
2017-08-20 16:57:55
阅读次数:
172
Kafka性能测试 测试背景 由于业务需求,针对kafka在不同参数下的性能进行测试。从而进行kafka性能调优 测试目标 测试kafka 0.8n的性能(Producer/Consumer性能)。当消息大小、批处理大小、压缩等参数变化时对吞吐率的影响。 测试环境 软件版本:kafka 0.8.1. ...
分类:
其他好文 时间:
2017-08-19 12:38:06
阅读次数:
5682
eeking a satisfactory solution to create a local web server for programming in macOS with PHP and MySQL, I was disappointed that the turnkey solutions ...
分类:
系统相关 时间:
2017-08-13 10:04:10
阅读次数:
268
Description The objective of the program you are going to produce is to evaluate boolean expressions as the one shown next: Expression: ( V | V ) & F ...
分类:
其他好文 时间:
2017-08-08 15:26:25
阅读次数:
245
Symptoms When accessing an STL object created in one DLL or EXE through a pointer or reference in a different DLL or EXE, you may experience an access ...
分类:
数据库 时间:
2017-08-07 20:28:08
阅读次数:
206
什么叫跌代: 可以将某个数据集合内的数据一个一个挨着取出来就叫做跌代。 迭代器协议: 可以被跌代要满足的要求叫做可迭代协议,可迭代对象必须提供一个next的方法,执行该方法要么返回跌代中的下一项,要么就引起一个StopIteration异常,以终止跌代(跌代只能往后走,而不能往前退) python中 ...
分类:
编程语言 时间:
2017-08-02 17:40:43
阅读次数:
213
上次 踩坑日志之一 遗留的问题终于解决了,所以作者(也就是我)终于有脸出来写第二篇了。 首先还是贴上 卷积算法的示例代码地址 :https://github.com/tensorflow/models 这个库里面主要是一些常用的模型用tensorflow实现之后的代码。其中我用的是 models/t ...
分类:
其他好文 时间:
2017-08-01 20:53:00
阅读次数:
244