github-vet / github-vet/rangeloop-pointer-findings

projectatomic/atomic-enterprise: pkg/deploy/controller/deploymentconfig/controller.go; 34 LoC

Open
#7,696 0 comments 0 reactions 0 assignees View on GitHub
fresh small
Dominant language
No language data
Stars
0
Forks
0
PR merge metrics
PR metrics pending

Description

Found a possible issue in [projectatomic/atomic-enterprise](https://www.github.com/projectatomic/atomic-enterprise) at [pkg/deploy/controller/deploymentconfig/controller.go](https://github.com/projectatomic/atomic-enterprise/blob/fe3f07ee509de38099565693aecc74e555f971ee/pkg/deploy/controller/deploymentconfig/controller.go#L67-L100)

Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.

> function call which takes a reference to deployment at line 70 may start a goroutine

[Click here to see the code in its original context.](https://github.com/projectatomic/atomic-enterprise/blob/fe3f07ee509de38099565693aecc74e555f971ee/pkg/deploy/controller/deploymentconfig/controller.go#L67-L100)

Click here to show the 34 line(s) of Go which triggered the analyzer.

```go
for _, deployment := range existingDeployments.Items {
// check if this is the latest deployment
// we'll return after we've dealt with the multiple-active-deployments case
if deployutil.DeploymentVersionFor(&deployment) == config.LatestVersion {
latestDeploymentExists = true
}

deploymentStatus := deployutil.DeploymentStatusFor(&deployment)
switch deploymentStatus {
case deployapi.DeploymentStatusFailed,
deployapi.DeploymentStatusComplete:
// Previous deployment in terminal state - can ignore
// Ignoring specific deployment states so that any newly introduced
// deployment state will not be ignored
default:
if inflightDeployment == nil {
inflightDeployment = &deployment
continue
}
var deploymentForCancellation *kapi.ReplicationController
if deployutil.DeploymentVersionFor(inflightDeployment) < deployutil.DeploymentVersionFor(&deployment) {
deploymentForCancellation, inflightDeployment = inflightDeployment, &deployment
} else {
deploymentForCancellation = &deployment
}

deploymentForCancellation.Annotations[deployapi.DeploymentCancelledAnnotation] = deployapi.DeploymentCancelledAnnotationValue
deploymentForCancellation.Annotations[deployapi.DeploymentStatusReasonAnnotation] = deployapi.DeploymentCancelledNewerDeploymentExists
if _, err := c.deploymentClient.updateDeployment(deploymentForCancellation.Namespace, deploymentForCancellation); err != nil {
util.HandleError(fmt.Errorf("couldn't cancel Deployment %s: %v", deployutil.LabelForDeployment(deploymentForCancellation), err))
}
glog.V(4).Infof("Cancelled Deployment %s for DeploymentConfig %s", deployutil.LabelForDeployment(deploymentForCancellation), deployutil.LabelForDeploymentConfig(config))
}
}

```

Click here to show extra information the analyzer produced.

```
The following paths through the callgraph could lead to a goroutine:
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ServeHTTP, 2) -> (WriteString, 2) -> (Callback, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Build, 1) -> (isMissingRequirements, 1) -> (NewSaveArtifactsError, 3) -> (PostExecute, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 0) -> (Pop, 0) -> (PopFunc, 0) -> (ForgetFunc, 1) -> (ForgetFunc, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewSourceAPI, 5) -> (listAndWatch, 0) -> (Jitter, 2) -> (nonResourceMatches, 1) -> (GetURL, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ServeHTTP, 2) -> (WriteString, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Generate, 2) -> (LatestTaggedImage, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewBroadcaster, 0) -> (NewBroadcaster, 2) -> (loop, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (waitForBuild, 2) -> (NewTimeoutError, 2) -> (makeBuildListKey, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ReadOnly, 1) -> (ServeHTTP, 2) -> (Set, 3) -> (Callback, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Start, 1) -> (UninstrumentedHandler, 0) -> (ServeFile, 3) -> (InstrumentHandlerFuncWithOpts, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ReadOnly, 1) -> (ServeHTTP, 2) -> (Set, 3) -> (Callback, 1) -> (Logf, 5) -> (ValidateParameter, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (WithAuthorizationCheck, 3) -> (forbidden, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (watchForNewOoms, 0) -> (AddEvent, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Observe, 1) -> (asyncFlush, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewNodeController, 10) -> (Events, 1) -> (newEvents, 2) -> (addOrUpdateEvent, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newCNAME, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (watchForNewContainers, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewTokenBucketRateLimiter, 2) -> (run, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Delete, 1) -> (handleEvent, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewBroadcaster, 0) -> (NewBroadcaster, 2) -> (loop, 0) -> (flushRequests, 1) -> (recvFunc, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newCNAME, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newDNSKEY, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Start, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Auth, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewPersistentVolumeRecycler, 3) -> (reclaimVolume, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Watch, 3) -> (etcdWatch, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Get, 2) -> (NewFieldInvalid, 3) -> (MinimalNameRequirements, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewTokenBucketRateLimiter, 2) -> (run, 0) -> (ResourceAccessReviews, 1) -> (newResourceAccessReviews, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewServiceConfig, 0) -> (watchForUpdates, 3) -> (MergedState, 0) -> (loop, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (connect, 0) -> (dialer, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewTokenBucketRateLimiter, 2) -> (run, 0) -> (ResourceAccessReviews, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewTokensController, 2) -> (Secrets, 1) -> (newSecrets, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ClientConfig, 0) -> (newCertPool, 1) -> (ParseCertificate, 1) -> (getVfsCap, 2) -> (renameBroken, 1) -> (Println, 6) -> (unmarshalDockerImage, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (startPod, 0) -> (startServingTLS, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Channel, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (connect, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Build, 1) -> (isMissingRequirements, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Get, 3) -> (waitForBuild, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewReplicationManager, 2) -> (enqueueController, 1) -> (rcKeyFunc, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewServiceConfig, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RunKubelet, 2) -> (startKubelet, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newSRV, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1) -> (Watch, 3) -> (etcdWatch, 3) -> (Watch, 5) -> (watchOnce, 4) -> (sendDelete, 1) -> (decodeObject, 1) -> (transform, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (waitForBuild, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RateLimit, 2) -> (tooManyRequests, 1) -> (Set, 3) -> (Callback, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newPTR, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Build, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newAAAA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newMX, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (MaxInFlightLimit, 3) -> (tooManyRequests, 1) -> (Set, 3) -> (Callback, 1) -> (Logf, 5) -> (ValidateParameter, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1) -> (Watch, 3) -> (etcdWatch, 3) -> (Watch, 5) -> (watchOnce, 4) -> (sendDelete, 1) -> (decodeObject, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (resolve, 1) -> (recognizeVariable, 1) -> (toServiceName, 1) -> (RequireNamespace, 0) -> (Stdin, 0) -> (Stream, 2) -> (NewStreamVisitor, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewEndpointController, 1) -> (enqueueService, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (Generate, 2) -> (findImageStream, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (IsValid, 0) -> (isValidMember, 1) -> (Index, 2) -> (List, 0) -> (List, 1) -> (Insert, 1) -> (resourceURL, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (watchForNewOoms, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (start, 0) -> (sendConfig, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Accept, 1) -> (ObjectVersionAndKind, 1) -> (poller, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newMX, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newDNSKEY, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RegisterHandler, 1) -> (OnUpdate, 1) -> (ShuffleStrings, 1) -> (Perm, 1) -> (iptablesHostNodePortArgs, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (init, 0) -> (SetForTests, 1) -> (ListImages, 1) -> (GetEtcdURL, 0) -> (TempDir, 0) -> (Serve, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Start, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (query, 2) -> (run, 2) -> (buildTemplates, 2) -> (AddParameter, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newSOA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (syncLoop, 2) -> (SyncPods, 4) -> (DeleteOrphanedMirrorPods, 0) -> (DeleteMirrorPod, 1) -> (ParsePodFullName, 1) -> (getRootDir, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (init, 0) -> (SetForTests, 1) -> (ListImages, 1) -> (GetEtcdURL, 0) -> (TempDir, 0) -> (Serve, 1) -> (getStreamPriority, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1) -> (Watch, 3) -> (etcdWatch, 3) -> (Watch, 5) -> (watchOnce, 4) -> (sendDelete, 1) -> (decodeObject, 1) -> (transform, 1) -> (NewConnection, 1) -> (NewClientConnection, 1) -> (NewConnection, 2) -> (monitor, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (MustRegister, 1) -> (Register, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (createConfig, 1) -> (CreateFromProvider, 1) -> (CreateFromKeys, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (WithAuthorizationCheck, 3) -> (forbidden, 2) -> (Set, 3) -> (Callback, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newDNSKEY, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (run, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewTokensController, 2) -> (Secrets, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (CORS, 5) -> (ServeHTTP, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (Observe, 1) -> (asyncFlush, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewNamespaceManager, 2) -> (syncNamespace, 2) -> (finalize, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Update, 2) -> (createOrUpdate, 3) -> (setIdentityUser, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewRequestAuthenticator, 4) -> (Remove, 1) -> (shrink, 0) -> (setIdentityUser, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (run, 2) -> (buildTemplates, 2) -> (TemplateConfigs, 1) -> (newTemplateConfigs, 2) -> (nameIsDNS952Label, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Register, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (initDispatch, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (WithCancel, 1) -> (cancel, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (List, 1) -> (Insert, 1) -> (isConnected, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newAAAA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewRequestContextFilter, 2) -> (ServeHTTP, 2) -> (Set, 3) -> (Callback, 1) -> (Logf, 5) -> (NameIsDNSSubdomain, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (fetchSource, 1) -> (Checkout, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (init, 0) -> (SetForTests, 1) -> (ListImages, 1) -> (GetEtcdURL, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Next, 0) -> (run, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newRRSIG, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewTokenBucketRateLimiter, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (output, 5) -> (AddInt64, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Auth, 1) -> (outWorker, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ReadOnly, 1) -> (ServeHTTP, 2) -> (Set, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (, 0) -> (DefaultRegistryFunc, 1) -> (atEndOfEncode, 0) -> (panicValToErr, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewServiceAccountsController, 2) -> (Namespaces, 0) -> (newNamespaces, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RoundTrip, 1) -> (StatusText, 1) -> (Render, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (getURL, 1) -> (RoundTrip, 1) -> (StatusText, 1) -> (Render, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newAAAA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (Copy, 2) -> (Run, 4) -> (runHTTPHandler, 3) -> (resolvePort, 2) -> (BuildPodFullName, 2) -> (CloseWrite, 0) -> (tlsDialWithDialer, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewListWatchFromClient, 4) -> (Prefix, 1) -> (setParam, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Write, 1) -> (bodyAllowedForStatus, 1) -> (generateMaskingKey, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Watch, 3) -> (etcdWatch, 3) -> (Watch, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewPersistentVolumeClaimBinder, 2) -> (PersistentVolumeClaims, 1) -> (newPersistentVolumeClaims, 2) -> (Watch, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newPTR, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (, 0) -> (DefaultRegistryFunc, 1) -> (atEndOfEncode, 0) -> (PutUint64, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (query, 2) -> (run, 2) -> (buildTemplates, 2) -> (AddParameter, 2) -> (TrimFunc, 2) -> (nameIsDNS952Label, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1) -> (Watch, 3) -> (etcdWatch, 3) -> (Watch, 5) -> (watchOnce, 4) -> (sendDelete, 1) -> (decodeObject, 1) -> (transform, 1) -> (handleGoAwayFrame, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newSOA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RunUntil, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Watch, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RecoverPanics, 1) -> (ServeHTTP, 2) -> (Set, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewTokensController, 2) -> (Secrets, 1) -> (newSecrets, 2) -> (Watch, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (Untar, 3) -> (Unpack, 3) -> (UtimesNano, 2) -> (NsecToTimespec, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (init, 0) -> (SetForTests, 1) -> (ListImages, 1) -> (GetEtcdURL, 0) -> (TempDir, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (getCluster, 0) -> (waitNodes, 3) -> (waitNodesRetry, 0) -> (logAndBackoffForRetry, 1) -> (Println, 6) -> (unmarshalDockerImage, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ClientConfig, 0) -> (newCertPool, 1) -> (ParseCertificate, 1) -> (getVfsCap, 2) -> (renameBroken, 1) -> (Println, 6) -> (unmarshalDockerImage, 1) -> (getStreamPriority, 1) -> (handleGoAwayFrame, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewPersistentVolumeRecycler, 3) -> (reclaimVolume, 1) -> (handleRecycle, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newNS, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (CORS, 5) -> (ServeHTTP, 2) -> (Set, 3) -> (Callback, 1) -> (Logf, 5) -> (NameIsDNSSubdomain, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (init, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewNamespaceManager, 2) -> (syncNamespace, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Watch, 4) -> (MatchTemplate, 2) -> (WatchList, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewServiceAccountsController, 2) -> (Namespaces, 0) -> (newNamespaces, 1) -> (Watch, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewRequestContextFilter, 2) -> (ServeHTTP, 2) -> (Set, 3) -> (Callback, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 0) -> (Pop, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewRequestContextFilter, 2) -> (ServeHTTP, 2) -> (Set, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newNSEC3, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewReplicationManager, 2) -> (enqueueController, 1) -> (rcKeyFunc, 1) -> (Watch, 5) -> (watchOnce, 4) -> (sendDelete, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewRequestAuthenticator, 4) -> (Remove, 1) -> (shrink, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1) -> (Watch, 3) -> (etcdWatch, 3) -> (Watch, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewReplicationManager, 2) -> (enqueueController, 1) -> (rcKeyFunc, 1) -> (Watch, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newRRSIG, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewRequestContextFilter, 2) -> (ServeHTTP, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewNamespaceManager, 2) -> (syncNamespace, 2) -> (finalize, 2) -> (Finalize, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Get, 3) -> (waitForBuild, 2) -> (NewTimeoutError, 2) -> (makeBuildListKey, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newRRSIG, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (Copy, 2) -> (Run, 4) -> (runHTTPHandler, 3) -> (resolvePort, 2) -> (BuildPodFullName, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ReadOnly, 1) -> (ServeHTTP, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ListenAndServe, 0) -> (serveUDP, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Start, 0) -> (startPod, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (SendRequest, 1) -> (Location, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (run, 2) -> (buildTemplates, 2) -> (TemplateConfigs, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RunKubelet, 2) -> (startKubelet, 3) -> (ListenAndServeReadOnly, 2) -> (ListenAndServeKubeletReadOnlyServer, 3) -> (syncPod, 3) -> (CreateMirrorPod, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (List, 1) -> (Insert, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RunKubelet, 2) -> (startKubelet, 3) -> (ListenAndServeReadOnly, 2) -> (ListenAndServeKubeletReadOnlyServer, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Build, 1) -> (isMissingRequirements, 1) -> (NewSaveArtifactsError, 3) -> (PostExecute, 2) -> (ExecuteCallback, 3) -> (postFunc, 3) -> (tlsDialWithDialer, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Copy, 2) -> (Run, 4) -> (runHTTPHandler, 3) -> (resolvePort, 2) -> (BuildPodFullName, 2) -> (CloseWrite, 0) -> (tlsDialWithDialer, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Start, 1) -> (UninstrumentedHandler, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewBroadcaster, 0) -> (NewBroadcaster, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (initConnection, 0) -> (initDispatch, 0) -> (sendSubStateUpdate, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (, 0) -> (DefaultRegistryFunc, 1) -> (atEndOfEncode, 0) -> (PutUint64, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (InstallREST, 1) -> (Install, 0) -> (registerResourceHandlers, 5) -> (ConnectResource, 7) -> (RequestError, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newNS, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (IsValid, 0) -> (isValidMember, 1) -> (Index, 2) -> (List, 0) -> (getOrExpire, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (Register, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RateLimit, 2) -> (tooManyRequests, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newMX, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (readFromAt, 2) -> (WriteStream, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RecoverPanics, 1) -> (ServeHTTP, 2) -> (Set, 3) -> (Callback, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newTXT, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Copy, 2) -> (Run, 4) -> (runHTTPHandler, 3) -> (resolvePort, 2) -> (BuildPodFullName, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1) -> (Watch, 3) -> (etcdWatch, 3) -> (Watch, 5) -> (watchOnce, 4) -> (sendDelete, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewEndpointController, 1) -> (enqueueService, 1) -> (etcdWatch, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (WithAuthorizationCheck, 3) -> (forbidden, 2) -> (Set, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Register, 2) -> (NewInotifyWatcher, 0) -> (NewWatcher, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (start, 0) -> (sendConfig, 0) -> (create, 2) -> (Symlink, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Do, 0) -> (NewDecoratedVisitor, 2) -> (UpdateObjectNamespace, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Next, 0) -> (run, 0) -> (ResourceAccessReviews, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (RoundTrip, 1) -> (StatusText, 1) -> (Render, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newSOA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (, 0) -> (DefaultRegistryFunc, 1) -> (atEndOfEncode, 0) -> (panicValToErr, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 0) -> (Pop, 0) -> (PopFunc, 0) -> (ForgetFunc, 1) -> (ForgetFunc, 1) -> (updateDeploymentConfigFunc, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewNodeController, 10) -> (Events, 1) -> (newEvents, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newSRV, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewRequestAuthenticator, 4) -> (Remove, 1) -> (shrink, 0) -> (setIdentityUser, 2) -> (DefaultRegistry, 0) -> (subsetsByHash, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RateLimit, 2) -> (tooManyRequests, 1) -> (Set, 3) -> (Callback, 1) -> (Logf, 5) -> (ValidateParameter, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (serveUDP, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (reconcileNodeRoutes, 0) -> (reconcile, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Send, 1) -> (ToWireFormat, 0) -> (ExtractPublicIPs, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewEndpointController, 1) -> (enqueueService, 1) -> (etcdWatch, 3) -> (Watch, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Next, 0) -> (run, 0) -> (ResourceAccessReviews, 1) -> (newResourceAccessReviews, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newNS, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (getCluster, 0) -> (waitNodes, 3) -> (waitNodesRetry, 0) -> (logAndBackoffForRetry, 1) -> (Println, 6)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (serveTCP, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newNSEC3, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newRRSIG, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Build, 1) -> (isMissingRequirements, 1) -> (NewSaveArtifactsError, 3) -> (PostExecute, 2) -> (ExecuteCallback, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newTXT, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (initConnection, 0) -> (initDispatch, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Func, 2) -> (Register, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Handler, 1) -> (ServeHTTP, 2) -> (Set, 3) -> (Callback, 1) -> (Logf, 5) -> (NameIsDNSSubdomain, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewServiceConfig, 0) -> (watchForUpdates, 3) -> (MergedState, 0) -> (loop, 0) -> (flushRequests, 1) -> (recvFunc, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (NotifyOOM, 0) -> (GetPaths, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RateLimit, 2) -> (tooManyRequests, 1) -> (Set, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewPersistentVolumeClaimBinder, 2) -> (PersistentVolumeClaims, 1) -> (newPersistentVolumeClaims, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Handler, 0) -> (InstrumentHandler, 2) -> (InstrumentHandlerFunc, 2) -> (InstrumentHandlerFuncWithOpts, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (ApplyLayer, 2) -> (UnpackLayer, 2) -> (UtimesNano, 2) -> (NsecToTimespec, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newAAAA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newMX, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (receiveResponse, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Untar, 3) -> (Unpack, 3) -> (UtimesNano, 2) -> (NsecToTimespec, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RecoverPanics, 1) -> (ServeHTTP, 2) -> (Set, 3) -> (Callback, 1) -> (Logf, 5) -> (ValidateParameter, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (resolve, 1) -> (recognizeVariable, 1) -> (toServiceName, 1) -> (RequireNamespace, 0) -> (Stdin, 0) -> (Stream, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (MaxInFlightLimit, 3) -> (tooManyRequests, 1) -> (Set, 3) -> (Callback, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (IsValid, 0) -> (isValidMember, 1) -> (Index, 2) -> (List, 0) -> (Delete, 1) -> (handleEvent, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (init, 0) -> (SetForTests, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Do, 2) -> (fn, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (run, 0) -> (ResourceAccessReviews, 1) -> (newResourceAccessReviews, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RoundTrip, 1) -> (StatusText, 1) -> (StatusText, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (Accept, 1) -> (objectMetaData, 1) -> (poller, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (Watch, 4) -> (MatchTemplate, 2) -> (WatchList, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newDNSKEY, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewClient, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Observe, 1) -> (cap, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (delete, 2) -> (SendRequest, 1) -> (Location, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewEndpointsConfig, 0) -> (watchForUpdates, 3) -> (MergedState, 0) -> (loop, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ClientConfig, 0) -> (newCertPool, 1) -> (ParseCertificate, 1) -> (getVfsCap, 2) -> (renameBroken, 1) -> (Println, 6) -> (unmarshalDockerImage, 1) -> (getStreamPriority, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewEndpointsConfig, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1) -> (Watch, 3) -> (etcdWatch, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (syncLoop, 2) -> (SyncPods, 4) -> (DeleteOrphanedMirrorPods, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (createConfig, 1) -> (CreateFromProvider, 1) -> (CreateFromKeys, 2) -> (makeDefaultErrorFunc, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Install, 0) -> (registerResourceHandlers, 5) -> (ConnectResource, 7) -> (RequestError, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (dockerBuild, 1) -> (buildImage, 6) -> (BuildImage, 1) -> (buildImageFunc, 1) -> (addQueryStringValue, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (init, 0) -> (SetForTests, 1) -> (ListImages, 1) -> (GetEtcdURL, 0) -> (TempDir, 0) -> (Serve, 1) -> (getStreamPriority, 1) -> (getStream, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewSourceAPI, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (MaxInFlightLimit, 3) -> (tooManyRequests, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RunKubelet, 2) -> (startKubelet, 3) -> (ListenAndServeReadOnly, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewPersistentVolumeRecycler, 3) -> (reclaimVolume, 1) -> (handleRecycle, 1) -> (UpdatePersistentVolumeStatus, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newNS, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newSOA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RecoverPanics, 1) -> (ServeHTTP, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewRequestAuthenticator, 4) -> (Remove, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewEndpointsConfig, 0) -> (watchForUpdates, 3) -> (MergedState, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newNSEC3, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (startMaster, 0) -> (startServing, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (printf, 3) -> (output, 5) -> (AddInt64, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newPTR, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewEndpointsConfig, 0) -> (watchForUpdates, 3) -> (MergedState, 0) -> (loop, 0) -> (flushRequests, 1) -> (recvFunc, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newSRV, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (, 0) -> (DefaultRegistryFunc, 1) -> (atEndOfEncode, 0) -> (panicValToErr, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (resolve, 1) -> (recognizeVariable, 1) -> (toServiceName, 1) -> (RequireNamespace, 0) -> (Stdin, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (WithAuthorizationCheck, 3) -> (forbidden, 2) -> (Set, 3) -> (Callback, 1) -> (Logf, 5) -> (NameIsDNSSubdomain, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewSourceAPI, 5) -> (listAndWatch, 0) -> (Jitter, 2) -> (nonResourceMatches, 1) -> (GetURL, 0) -> (addForbiddenMessageMaker, 4) -> (Entries, 2) -> (x, 0) -> (NewClientConnection, 1) -> (NewConnection, 2) -> (monitor, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newNSEC3, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (StartRecordingToSink, 1) -> (Float64, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (purgeFile, 0) -> (WALDir, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Handler, 1) -> (ServeHTTP, 2) -> (Set, 3) -> (Callback, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Start, 0) -> (startPod, 0) -> (startServingTLS, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (AddRole, 0) -> (CreateRoleBinding, 1) -> (ClusterRoleBindings, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (start, 0) -> (sendConfig, 0) -> (create, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1) -> (Watch, 3) -> (etcdWatch, 3) -> (Watch, 5) -> (watchOnce, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ClientConfig, 0) -> (newCertPool, 1) -> (ParseCertificate, 1) -> (getVfsCap, 2) -> (renameBroken, 1) -> (Println, 6)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewServiceAccountsController, 2) -> (Namespaces, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Token, 0) -> (WithExtra, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newTXT, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newPTR, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1) -> (Watch, 3) -> (etcdWatch, 3) -> (Watch, 5) -> (watchOnce, 4) -> (sendDelete, 1) -> (decodeObject, 1) -> (transform, 1) -> (NewConnection, 1) -> (NewClientConnection, 1) -> (NewConnection, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewReplicationManager, 2) -> (enqueueController, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Handler, 1) -> (ServeHTTP, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RegisterHandler, 1) -> (OnUpdate, 1) -> (ShuffleStrings, 1) -> (Perm, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newCNAME, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (receiveResponse, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (PutContent, 2) -> (getOptions, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (open, 7) -> (stop, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Build, 1) -> (isMissingRequirements, 1) -> (NewSaveArtifactsError, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Start, 0) -> (startPod, 0) -> (startServingTLS, 5) -> (Listen, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newSRV, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (getCluster, 0) -> (waitNodes, 3) -> (waitNodesRetry, 0) -> (logAndBackoffForRetry, 1) -> (Println, 6) -> (unmarshalDockerImage, 1) -> (convertConnectionError, 2) -> (getStream, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (SendRequest, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RegisterHandler, 1) -> (OnUpdate, 1) -> (ShuffleStrings, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 0) -> (Pop, 0) -> (PopFunc, 0) -> (ForgetFunc, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (IsValid, 0) -> (isValidMember, 1) -> (Index, 2) -> (List, 0) -> (List, 1) -> (Insert, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 2) -> (ensureOpenShiftSharedResourcesNamespace, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Create, 1) -> (Pop, 0) -> (PopFunc, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ApplyLayer, 2) -> (UnpackLayer, 2) -> (UtimesNano, 2) -> (NsecToTimespec, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newA, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ServeHTTP, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (InspectImage, 1) -> (GreaterThanOrEqualTo, 1) -> (compare, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Do, 2) -> (fn, 0) -> (printValue, 2) -> (ReadSlice, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (, 0) -> (DefaultRegistryFunc, 1) -> (atEndOfEncode, 0) -> (PutUint64, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (getCluster, 0) -> (waitNodes, 3) -> (waitNodesRetry, 0) -> (logAndBackoffForRetry, 1) -> (Println, 6) -> (unmarshalDockerImage, 1) -> (convertConnectionError, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Do, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (newDefaultRegistry, 0) -> (NewGoCollector, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (watchForNewContainers, 1) -> (StopWatchingSubcontainers, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewServiceConfig, 0) -> (watchForUpdates, 3) -> (MergedState, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newTXT, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4) -> (parseZone, 5)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (RegisterHandler, 1) -> (OnUpdate, 1) -> (ShuffleStrings, 1) -> (Perm, 1) -> (newAffinityPolicy, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NotifyOOM, 0) -> (GetPaths, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (IsValid, 0) -> (isValidMember, 1) -> (Index, 2) -> (List, 0) -> (Do, 0) -> (NewDecoratedVisitor, 2) -> (UpdateObjectNamespace, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (MaxInFlightLimit, 3) -> (tooManyRequests, 1) -> (Set, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (, 0) -> (DefaultRegistryFunc, 1) -> (atEndOfEncode, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Handler, 1) -> (ServeHTTP, 2) -> (Set, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (CORS, 5) -> (ServeHTTP, 2) -> (Set, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (newCNAME, 1) -> (NewRR, 1) -> (ReadRR, 2) -> (parseZoneHelper, 4)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (syncLoop, 2) -> (SyncPods, 4) -> (DeleteOrphanedMirrorPods, 0) -> (DeleteMirrorPod, 1) -> (ParsePodFullName, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (Run, 1) -> (Watch, 3)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (run, 0) -> (ResourceAccessReviews, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (CORS, 5) -> (ServeHTTP, 2) -> (Set, 3) -> (Callback, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (ServeHTTP, 2) -> (WriteString, 2) -> (Callback, 1) -> (put, 4) -> (buildValues, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (resolve, 1) -> (recognizeVariable, 1) -> (toServiceName, 1) -> (RequireNamespace, 0) -> (Stdin, 0) -> (Stream, 2) -> (NewStreamVisitor, 5) -> (getStream, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewSourceAPI, 5) -> (listAndWatch, 0) -> (Jitter, 2) -> (nonResourceMatches, 1) -> (GetURL, 0) -> (addForbiddenMessageMaker, 4) -> (Entries, 2) -> (x, 0) -> (NewClientConnection, 1) -> (NewConnection, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (start, 0)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewPersistentVolumeClaimBinder, 2) -> (PersistentVolumeClaims, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (delete, 2) -> (SendRequest, 1)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Convert, 1) -> (addListOfParams, 4) -> (Index, 1) -> (float64, 1) -> (WithCancel, 1) -> (cancel, 2)
(DeploymentVersionFor, 1) -> (mappedAnnotationFor, 2) -> (ObjectMetaFor, 1) -> (FieldPtr, 3) -> (Set, 1) -> (int64, 1) -> (nextLine, 2) -> (stripContinuation, 1) -> (NewNodeController, 10) -> (Events, 1) -> (newEvents, 2) -> (addOrUpdateEvent, 1) -> (flushRequests, 1) -> (recvFunc, 3)

```

Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.

commit ID: fe3f07ee509de38099565693aecc74e555f971ee

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.