It is possible to pass some values from the command line to your C programs when they are executed. These values are called command line arguments and ...
分类:
其他好文 时间:
2020-05-01 10:45:42
阅读次数:
72
There are some situations where you want to focus your tests on a particular component and not any of its children. There are other situations where y ...
分类:
其他好文 时间:
2020-05-01 01:32:17
阅读次数:
93
通过容器创建镜像 我们可以通过以下两种方式对镜像进行更改。 1. 从已经创建的容器中更新镜像,并且提交这个镜像 2. 使用 Dockerfile 指令来创建一个新的镜像 下面通过已存在的容器创建一个新的镜像 docker commit -m="First Docker" -a="wcjiang" a ...
分类:
其他好文 时间:
2020-05-01 00:53:10
阅读次数:
51
事务如何书写 参考文档: https://learnku.com/articles/40908 ...
分类:
其他好文 时间:
2020-04-30 15:50:15
阅读次数:
140
一、一个变换 One transformation 实际场景:一排小方块排成一排,然后对折,把不能对折的小方块取出来。重复这项操作,直到小方块两两排成一列,这个过程中取出来的小方块就是这个变换的结果。 Real condition: Some small squares are arranged i ...
分类:
其他好文 时间:
2020-04-30 13:24:15
阅读次数:
80
/** * every()遍历数组,判断是否全部符合条件,只有全部满足才返回true,否则就false * some()遍历数组,判断是否有符合的,有一个符合就返回true,不再往后执行,和every相反 * filter()遍历数组,判断是否有符合的,返回符合条件的数据组成的数组,不改变原数组 * ...
分类:
编程语言 时间:
2020-04-30 11:45:26
阅读次数:
61
size_t is a defined type (through typedef) which is basically an unsigned long int. Since the idea of a negative value for a size isn't practical some ...
分类:
其他好文 时间:
2020-04-30 09:31:40
阅读次数:
70
"Flink SQL UDF不应有状态" 这个技术细节可能有些朋友已经知道了。但是为什么不应该有状态呢?这个恐怕大家就不甚清楚了。本文就带你一起从这个问题点入手,看看Flink SQL究竟是怎么处理UDF,怎么生成对应的SQL代码。 ...
分类:
数据库 时间:
2020-04-29 23:49:34
阅读次数:
89
ES6原生语法中提供了非常多好用的数组'遍历'方法给我们(forEach,every,some,map,filter,reduce,reduceRight,indexOf,lastIndexOf),让我们可以实现更多更强大的功能,下面让我们通过这篇文章好好学习下,该如何使用它们。 forEach 对 ...
分类:
编程语言 时间:
2020-04-29 15:03:40
阅读次数:
63
使用Canvas + exif-js自动修正数码照片 使用场景,在做朋友圈 H5 时,时常遇到需要用户拍照上传图片需求,但是在一些手机(iso)上拍出来的照片会出现奇怪的旋转角度来呈现。经过各种百度才发现相机拍出来的图片拥有很多属性,其中一项是Orientation ,用于记录拍摄时相机物理旋转角度 ...
分类:
其他好文 时间:
2020-04-28 15:02:20
阅读次数:
85