240 发简信
IP属地:湖北
  • A Tour of GO (5) -- Concurrent

    Goroutine: A lightweight thread managed by the GO runtime.go f(x, y, z)s...

  • A Tour of GO (4) -- Methods and Interfaces

    GO does not have class. However, we can define methods on types. A metho...

  • A Tour of GO (3)--More Types

    Pointers*T is type: a pointer to T.var x *intOperator & generate a point...

  • A Tour of GO (2)--Flow of Control

    For No parentheses and the {} are always required.for i:=0; i<10; i++ {s...

  • A Tour of GO (1)--Basics

    Exported Names A name is exported if it begins with capital letter. Mult...

  • Resize,w 360,h 240
    《Docker 源码分析(11)》 学习笔记

    存储镜像到宿主机:存储镜像内容在graph 中注册镜像信息 镜像注册: 每一层docker layer的image都可以认为有两个部分组成。 ...

  • Resize,w 360,h 240
    《Docker 源码分析(9)Docker 镜像介绍》学习笔记

    本文仅仅是对《Docker 源码分析》 内容中自己需要部分的精简加上一些自己的理解 Docker镜像介绍Image: 一个只读的layerLay...