1、下载最新release版本release-3.4版本 https://github.com/CppMicroServices/CppMicroServices/tree/release-3.4 2、编译: (1)修改顶层CMakeLists.txt ,打开生成共享库以及编译example编译选项 ...
分类:
其他好文 时间:
2020-07-14 00:23:12
阅读次数:
104
常用类 他们都在java.lang包中 Object类 Object类是类层次结构的根。每个类都有 Object作为超类。所有对象,包括数组,实现这个类的方法。 hashCode() toString() clone() getClass() notify() wait() equals() ... ...
分类:
编程语言 时间:
2020-07-13 21:33:10
阅读次数:
79
RabbitAdmin 该类封装了对 RabbitMQ 的管理操作 @Bean public RabbitAdmin rabbitAdmin(ConnectionFactory connectionFactory){ return new RabbitAdmin(connectionFactory) ...
分类:
其他好文 时间:
2020-07-13 18:47:27
阅读次数:
77
Task :voicesdk:verifyReleaseResources FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':voicesdk:verifyRe ...
分类:
其他好文 时间:
2020-07-13 18:20:20
阅读次数:
72
一: 添加node-slave节点 首先我们需要开启jnlp协议: 进行节点的添加: 然后点击,此agent就可以看到启动命令以及配置步骤。 命令如下: echo 2405e1ab8627f14975a04fd5ea7da0225d4a4ac91ccbc37d6e9690a5fc669a78 > s ...
分类:
其他好文 时间:
2020-07-13 15:18:14
阅读次数:
60
[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render fun... ...
分类:
其他好文 时间:
2020-07-12 18:50:22
阅读次数:
74
jmeter+ant+jenkins接口自动化测试框架 安装jmeter 略 安装及配置ant 目录结构设计参见msi\d\Test\ 注意在ant\lib下新增两个jar包: ant-jmf.jar ant-jmf-1.1.1.jar 自定义TestAuto/pc/build.xml from邮箱 ...
分类:
其他好文 时间:
2020-07-12 18:27:28
阅读次数:
77
首先记录一下遇见的问题:1.使不同的小兵分别移动到不同的目的地——已解决,sources数组改下标就好。 每个mode中的代码中,以roleUpgrader教程代码为例: 1 var roleUpgrader = { 2 3 /** @param {Creep} creep **/ 4 run: f ...
分类:
其他好文 时间:
2020-07-12 17:14:41
阅读次数:
143
前序中序序列建立二叉树: //in[]和pre[]数组存放二叉树的中序和前序遍历序列 node* build(int preL,int preR,int inL,int inR){ if(preL>preR) return NULL; node* root=(node*)malloc(sizeof( ...
分类:
其他好文 时间:
2020-07-12 16:46:02
阅读次数:
85
在pom.xml中加上以下标签 <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>12</maven.compiler.source> <mav ...
分类:
其他好文 时间:
2020-07-12 14:58:02
阅读次数:
65