<el-upload ref="upload" style="display:inline;margin-left:10px;" action="url" :auto-upload="false" :multiple="false" :show-file-list="false" :before-u ...
分类:
Web程序 时间:
2020-03-06 23:46:52
阅读次数:
1960
线程池的使用 多线程应用程序很难设计,有两大难点,一是要管理线程的创建和撤销,再就是要对线程访问资源时实施同步。同步的工具有几个了。为了应对线程频繁地创建和撤销,线程池这个方案被放上了台面。Windows2000提供了一些新的线程池函数,使得线程的创建、撤销和基本管理更加容易。线程池的实现不拘一格, ...
分类:
编程语言 时间:
2020-03-06 23:43:02
阅读次数:
85
Install kubernetes 环境:狗东Ubuntu16 Install and Set Up kubectl The Kubernetes command-line tool, kubectl, allows you to run commands against Kubernetes c ...
分类:
Web程序 时间:
2020-03-06 19:41:19
阅读次数:
68
I. IntroductionThis document provides common steps and commands used to retrieve core files in Nexus switching platforms - Nexus7000, Nexus5000, Nexus ...
分类:
其他好文 时间:
2020-03-04 14:36:35
阅读次数:
80
Docker 安装 # 1)安装依赖包 yum install -y yum-utils device-mapper-persistent-data lvm2 # 2)添加Docker软件包源(否则doker安装的不是新版本) yum-config-manager \ --add-repo \ ht ...
分类:
其他好文 时间:
2020-03-03 22:40:40
阅读次数:
101
Enter password: **** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.5.40-log MySQL Community ...
分类:
数据库 时间:
2020-03-02 20:56:53
阅读次数:
80
解决方法:设置跳过ssl校验spring: cloud: config: server: git: uri: https://github.com/xxx/spring-cloud-config-repository.git username: xxx password: yyyy default- ...
分类:
编程语言 时间:
2020-02-28 22:42:10
阅读次数:
423
首先我们先来回忆一下小学一年级就学过的知识:任何一个偶数都是 $2$ 的倍数,那么我们就可以分成两种情况考虑:奇数和偶数。 对于偶数,我们可以直接将其输出,因为它必定能被 $2$ 与它自己整除(第一段中有提到)。 对于奇数,我们需要将它变成一个偶数,并且改变后的偶数还要被 $a$ 本身整除,因此,我 ...
分类:
其他好文 时间:
2020-02-28 11:56:04
阅读次数:
48
向量之间的加减乘除运算: > x <- 1 > x [1] 1 2 3 4 5 6 7 8 9 10 > x=x+1 > x [1] 2 3 4 5 6 7 8 9 10 11 > x = 1:10 > x [1] 1 2 3 4 5 6 7 8 9 10 > y = seq(1,100, leng ...
分类:
编程语言 时间:
2020-02-27 12:55:37
阅读次数:
516
beego和bee安装问题解决 如果使用go mod模式,直接安装bee时会报错: 复制代码 go: github.com/beego/bee imports github.com/beego/bee/cmd imports github.com/beego/bee/cmd/commands/dlv ...
分类:
其他好文 时间:
2020-02-25 00:06:07
阅读次数:
102