零.docker常用命令 ~~~yml 镜像名 版本标签 镜像id 创建时间 镜像大小 REPOSITORY TAG IMAGE ID CREATED SIZE hello world latest fce289e99eb9 6 months ago 1.84kB ~~~ ~~~yml docker ...
分类:
其他好文 时间:
2020-02-22 12:16:23
阅读次数:
83
前言 网上关于 Context 的文章也已经有不少了,比如值得参考的有: "Android Context完全解析,你所不知道的Context的各种细节" "Android Context 到底是什么?" 但看了一下,发现还有值得讨论的地方,比如这个等式: Context个数 = Service 个 ...
分类:
移动开发 时间:
2020-02-22 10:02:24
阅读次数:
77
vue实际项目中会遇到很多对于画面显示及各个部分配合的顺序问题,后来发现是对vue生命周期没有理解透彻,现将vue生命周期简洁版理解记录如下: 我们都知道,vue的生命周期钩子函数有 beforeCreate、created、beforeMount、mounted、beforeUpdate、upda ...
分类:
其他好文 时间:
2020-02-21 16:24:50
阅读次数:
74
The AudioContext was not allowed to start. It must be resumed (or created) after a user gesture on the page. https://goo.gl/7K7WLu 出现这个问题,网上搜索结果为:Chro ...
分类:
其他好文 时间:
2020-02-21 14:15:37
阅读次数:
278
Rsync push pull backup 需求: 配置rsync服务 实现数据可以进行全备与增备 环境准备: 服务端 CentOS7.6 backup01 eth0:10.0.0.41/24 eth1:172.16.1.41/24 客户端 CentOS7.6 web01 eth0:10.0.0. ...
分类:
其他好文 时间:
2020-02-21 13:07:04
阅读次数:
84
私有Docker Registry的部署和配置 1 docker pull registry //获取registry镜像文件 2 3 docker images //查看本地的registry镜像文件 4 REPOSITORY TAG IMAGE ID CREATED SIZE 5 registr ...
分类:
其他好文 时间:
2020-02-21 11:29:32
阅读次数:
67
矩阵快速幂 矩阵快速幂可以作为一种优化技巧,当知道第$i+1$项和第$i$项之间的递推式的时候,可以将其转化为矩阵运算,然后用矩阵快速幂进行优化。尤其适用于,要求第 n 项的值,而 n 很大的时候。 ...
分类:
其他好文 时间:
2020-02-20 15:07:27
阅读次数:
75
1、修改镜像名 [root@localhost ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE absolutapps/oracle-12c-ee latest ad9bdfc002e7 3 years ago 6.12GB [root@ ...
分类:
其他好文 时间:
2020-02-19 16:58:07
阅读次数:
472
package test; / Created with IntelliJ IDEA. User: 郭金荣 Date: 2020/2/18 0015 Time: 19:10 E mail:1460595002@qq.com 类说明:首先创建一个长度是5的数组,并填充随机数。 用选择排序从小到大排序, ...
分类:
编程语言 时间:
2020-02-19 11:37:09
阅读次数:
102
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <Windows.h> #include <d2d1.h> #include <wincodec.h> #pragma comment(lib, "d2d1.lib ...
分类:
其他好文 时间:
2020-02-19 01:13:03
阅读次数:
168