我本职是测试工程师,有一段时间,我经常会以发现BUG(大部分Major 级别及以下)为由,直接去找程序员对质,后面逐渐发现在多次沟通的过程中,程序员会愈加不耐烦,虽然表面维持...
IP属地:重庆
我本职是测试工程师,有一段时间,我经常会以发现BUG(大部分Major 级别及以下)为由,直接去找程序员对质,后面逐渐发现在多次沟通的过程中,程序员会愈加不耐烦,虽然表面维持...
Goroutine: A lightweight thread managed by the GO runtime.go f(x, y, z)starts a new gor...
GO does not have class. However, we can define methods on types. A method is a function...
Pointers*T is type: a pointer to T.var x *intOperator & generate a pointer to its opera...
For No parentheses and the {} are always required.for i:=0; i<10; i++ {sum +=i} The ini...
Exported Names A name is exported if it begins with capital letter. Multiple Returnsfun...
存储镜像到宿主机:存储镜像内容在graph 中注册镜像信息 镜像注册: 每一层docker layer的image都可以认为有两个部分组成。 镜像中的文件系统, 可以认为是...
本文仅仅是对《Docker 源码分析》 内容中自己需要部分的精简加上一些自己的理解 Docker镜像介绍Image: 一个只读的layerLayer: Docker cont...