type runtimeState … type healthCheckFnType … type healthCheck … func (s *runtimeState) addHealthCheck(name string, f healthCheckFnType) { … } func (s *runtimeState) setRuntimeSync(t time.Time) { … } func (s *runtimeState) setNetworkState(err error) { … } func (s *runtimeState) setRuntimeState(err error) { … } func (s *runtimeState) setRuntimeHandlers(rtHandlers []kubecontainer.RuntimeHandler) { … } func (s *runtimeState) runtimeHandlers() []kubecontainer.RuntimeHandler { … } func (s *runtimeState) setRuntimeFeatures(features *kubecontainer.RuntimeFeatures) { … } func (s *runtimeState) runtimeFeatures() *kubecontainer.RuntimeFeatures { … } func (s *runtimeState) setStorageState(err error) { … } func (s *runtimeState) setPodCIDR(cidr string) { … } func (s *runtimeState) podCIDR() string { … } func (s *runtimeState) runtimeErrors() error { … } func (s *runtimeState) networkErrors() error { … } func (s *runtimeState) storageErrors() error { … } func newRuntimeState(runtimeSyncThreshold time.Duration) *runtimeState { … }