raise self.ParseError('Expected identifier or number, got %s.' % result)google.protobuf.text_format.ParseError: 139:1 : Expected identifier or number, ...
分类:
其他好文 时间:
2018-11-12 17:26:32
阅读次数:
873
最近一直在处理图片,从H264解码后得到的图片是YUV图片,而且很多都是NV12的,不是YUV420P(它们的差别是NV12格式为YYY...Y UV UV UV ... UV,而420P格式为 YYY...YY UUU..U VVV...V),一张1920x1080的图片大小为3.1M,为了节省空 ...
分类:
其他好文 时间:
2018-11-12 13:19:53
阅读次数:
196
不多说,直接上干货! 解决办法1: 地址:http://stackoverflow.com/questions/38423925/ambari-confirm-hosts-step-fails-registration-with-the-server-failed 说明:中文和英文操作系统版本问题, ...
分类:
其他好文 时间:
2018-11-10 22:38:52
阅读次数:
1468
1、启动 单个文件启动:将jar包跟启动的文件放在一个文件夹下 命令:java -jar moco-runner-<version>-standalone.jar http -p 12306 -c test.json 全局配置启动:java -jar moco-runner-<version>-st ...
分类:
其他好文 时间:
2018-11-08 18:09:27
阅读次数:
213
出现org.hibernate.TypeMismatchException: Provided id of the wrong type for class cn.itcast.entity.User. Expected: class java.lang.String, got class java ...
分类:
编程语言 时间:
2018-11-06 21:26:06
阅读次数:
198
George took sticks of the same length and cut them randomly until all parts became at most 50 units long. Now he wants to return sticks to the origina ...
分类:
其他好文 时间:
2018-11-05 01:15:31
阅读次数:
144
MLAA即Morphological Antialiasing,是一种完全基于CPU处理的抗锯齿解决方案,能够在图像生成后再次对图像进行去锯齿处理。本文解析了Intel的相关代码,提出了一些优化手段和改进意见。 ...
分类:
编程语言 时间:
2018-11-04 01:48:40
阅读次数:
317
GOT应该保存的是puts函数的绝对虚地址,这里为什么保存的却是puts@plt的第二条指令呢? 原来“解释器”将动态库载入内存后,并没有直接将函数地址更新到GOT表中,而是在函数第一次被调用时,才会进行函数地址的重定位,这样做的好处是可以加快程序加载速度,尤其对大型程序来说。有关这方面的更详细的信 ...
分类:
其他好文 时间:
2018-11-03 19:21:27
阅读次数:
251