Files
moby/vendor/github.com/containerd/nri/pkg/api/container.go
Sebastiaan van Stijn 01440122f2 vendor: github.com/containerd/nri v0.11.0
- adds compatibility with runtime-spec v1.3.0
- adds `nri_no_wasm` build-tag to compile without wasm support
- adds `ErrWasmDisabled` error

full diff: https://github.com/containerd/nri/compare/v0.10.0...v0.11.0

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2025-12-18 19:55:59 +01:00

47 lines
1.3 KiB
Go

/*
Copyright The containerd Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package api
import "time"
// GetCreatedAtTime returns the time the container was created at as time.Time.
func (x *Container) GetCreatedAtTime() time.Time {
t := time.Time{}
if x != nil {
return t.Add(time.Duration(x.CreatedAt) * time.Nanosecond)
}
return t
}
// GetStartedAtTime returns the time the container was started at as time.Time.
func (x *Container) GetStartedAtTime() time.Time {
t := time.Time{}
if x != nil {
return t.Add(time.Duration(x.StartedAt) * time.Nanosecond)
}
return t
}
// GetFinishedAtTime returns the time the container was finished at as time.Time.
func (x *Container) GetFinishedAtTime() time.Time {
t := time.Time{}
if x != nil {
return t.Add(time.Duration(x.FinishedAt) * time.Nanosecond)
}
return t
}