大大源码 的文章
-
Spring 线程池应用
1.了解 TaskExecutor接口 Spring的TaskExecutor接口等同于java.util.concurrent.Executor接口。 实际上,它存在的主要原因是为了在使用线程池的时候,将…… -
Dockerfile: unable to find user xxx : no matching entries in passwd file解决方案
报错信息 在制作Docker镜像的过程中,完成软件安装等操作后,一般会切换为普通用户启动相应的服务,就需要用到USER指令。但有时候这个指令会报错: docke…… -
浮点数能进行取模运算吗?(不行,暂时只能是两个整数之间)
自己在Dev里验证了,浮点数取模时有编译错误,通不过。 如:[Error] invalid operands of types ‘double’ and ‘int’ to binary ‘operator%’ 代码: #inclu…… -
t3用的无线网连接到服务器,t3标准版客户端连接服务器方法
t3标准版客户端连接服务器方法 内容精选 换一换 介绍使用同一VPC内弹性云服务器ECS上的NodeJs Redis客户端连接Redis实例的方法。更多的客户端的使用方法请…… -
如何安装opencv并成功导入cv2
在tensorflow环境下安装opencv 命令:conda install --channel http://conda.anaconda.org/menpo opencv 打开conda list查看安装列表中 已经包含opencv …… -
-
linux系统的GCC升级
一、简易安装 操作环境 CentOS6.5 64bit,原版本4.4.7,不能支持C++11的特性~,希望升级到4.8.2 不能通过yum的方法升级,需要自己手动下载安装包并编译 1.1 …… -
-
vue+vite2.0使用postcss-pxtorem实现大屏(或移动端)布局自适应(px转rem)
1.安装 npm i postcss-pxtorem -S 2.与package.json同级目录创建postcss.config.js文件 module.exports = { plugins: { autoprefixer: { …… -
Activiti实现指定用户任务列表的查询taskService.createTaskQuery() .processDefinitionKey(“holiday“)..list();
//zhangsan任务列表的查询 /* public static void main(String[] args) { //1.得到ProcessEngine对象 ProcessEngine processEngine = ……