...

Source file src/github.com/openshift/api/image/dockerpre012/deepcopy.go

Documentation: github.com/openshift/api/image/dockerpre012

     1  package dockerpre012
     2  
     3  // DeepCopyInto is manually built to copy the (probably bugged) time.Time
     4  func (in *ImagePre012) DeepCopyInto(out *ImagePre012) {
     5  	*out = *in
     6  	out.Created = in.Created
     7  	in.ContainerConfig.DeepCopyInto(&out.ContainerConfig)
     8  	if in.Config != nil {
     9  		in, out := &in.Config, &out.Config
    10  		if *in == nil {
    11  			*out = nil
    12  		} else {
    13  			*out = new(Config)
    14  			(*in).DeepCopyInto(*out)
    15  		}
    16  	}
    17  	return
    18  }
    19  

View as plain text