- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ErrorOrNil (0.06 sec)
-
istioctl/pkg/tag/util.go
return err } var result error for _, wh := range webhooks { result = multierror.Append(result, client.AdmissionregistrationV1().MutatingWebhookConfigurations().Delete(ctx, wh.Name, metav1.DeleteOptions{})).ErrorOrNil() } return result } // PreviousInstallExists checks whether there is an existing Istio installation. Should be used in installer when deciding // whether to make an installation the default.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 5.5K bytes - Viewed (0) -
istioctl/pkg/metrics/metrics.go
} sm.p90Latency = p90Latency p99Latency, err := getLatency(promAPI, wname, wns, duration, 0.99) if err != nil { me = multierror.Append(me, err) } sm.p99Latency = p99Latency if me.ErrorOrNil() != nil { return sm, fmt.Errorf("error retrieving some metrics: %v", me.Error()) } return sm, nil }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 8.4K bytes - Viewed (0)