一.AOP开发中的相关术语。 ——JoinPoint(连接点):指那些可以被拦截到的点。比如增删改查方法都可以增强,这些方法就可以被称为是连接点。 ——PointCut:切入点,真正被拦截的点,指对哪些连接点进行拦截的定义。JoinPoint是指方法可以增强,而切入点就是实际哪个方法进行增强或修改, ...
分类:
编程语言 时间:
2019-05-11 14:53:30
阅读次数:
125
背景:Spring 构建单元测试 错误 java.lang.Exception: Test class should have exactly one public constructor at org.junit.runners.BlockJUnit4ClassRunner.validateOnl ...
分类:
编程语言 时间:
2019-02-25 16:43:57
阅读次数:
206
最近在熟悉gitlab + gitlab-ci + slack,实现可持续集成,对开发流程实现自动化。1. Ubuntu 16.04搭建GitLab服务器 参考:https://www.linuxidc.com/Linux/2018-01/150319.htm 2. This job is stuc... ...
分类:
其他好文 时间:
2019-02-20 19:58:42
阅读次数:
267
salt-run 是用来运行 Runners 模块的命令,常见用法如下: ...
分类:
其他好文 时间:
2019-02-07 22:06:22
阅读次数:
240
A.Missing Runners #include <iostream> #include<cstdio> using namespace std; int vis[60005]; int main() { int n;scanf("%d",&n); for(int i=1;i<=n-1;i++) ...
分类:
其他好文 时间:
2019-01-24 20:40:40
阅读次数:
158
最佳组合代码模式为:#Createthegraph,etc.init_op=tf.global_variables_initializer()#CreateasessionforrunningoperationsintheGraph.sess=tf.Session()#Initializethevariables(liketheepochcounter).sess.run(init_op)#Sta
分类:
其他好文 时间:
2018-12-26 16:52:21
阅读次数:
190
关于Tensorflow读取数据,官网给出了三种方法: 供给数据(Feeding): 在TensorFlow程序运行的每一步, 让Python代码来供给数据。 从文件读取数据: 在TensorFlow图的起始, 让一个输入管线从文件中读取数据。 预加载数据: 在TensorFlow图中定义常量或变量 ...
分类:
其他好文 时间:
2018-12-20 14:48:57
阅读次数:
247
Python Fabric ssh 配置解读 [Fabric][1] 2.4简介: Fabric is a high level Python (2.7, 3.4+) library designed to execute shell commands remotely over SSH, yiel ...
分类:
编程语言 时间:
2018-11-09 21:09:03
阅读次数:
223
转:http://www.testclass.net/locust/dev-script/ 针对你的业务,你如何进行测试测试,需要通过编写性能测试脚本实现。所以,我们要熟悉 Locust 提供了哪些类和方法,它们分别实现什么操作。 HttpLocust 类 每一个模拟的用户可以看做一个 HttpLo ...
分类:
其他好文 时间:
2018-10-27 18:43:21
阅读次数:
163
redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: connect timed outat redis.clients.jedis.Connection.connect(C ...
分类:
编程语言 时间:
2018-10-25 22:09:44
阅读次数:
501