detectProperties detects various properties of the registry. See the dockerClient documentation for members which are affected by this.
(ctx context.Context)
| 946 | // detectProperties detects various properties of the registry. |
| 947 | // See the dockerClient documentation for members which are affected by this. |
| 948 | func (c *dockerClient) detectProperties(ctx context.Context) error { |
| 949 | c.detectPropertiesOnce.Do(func() { c.detectPropertiesError = c.detectPropertiesHelper(ctx) }) |
| 950 | return c.detectPropertiesError |
| 951 | } |
| 952 | |
| 953 | // fetchManifest fetches a manifest for (the repo of ref) + tagOrDigest. |
| 954 | // The caller is responsible for ensuring tagOrDigest uses the expected format. |
no test coverage detected