-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80e612f
commit 6ec129b
Showing
9 changed files
with
16 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Package metadata handles metadata validation instrumentation. | ||
package metadata |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
package cached | ||
|
||
// The cached package handles a metadata.Provider implementation that both downloads and caches the MDS3 blob. This | ||
// Package cached handles a metadata.Provider implementation that both downloads and caches the MDS3 blob. This | ||
// effectively is the recommended provider in most instances as it's fairly robust. Alternatively we suggest | ||
// implementing a similar provider that leverages the memory.Provider as an underlying element. | ||
// | ||
// This provider only specifically performs updates at the time it's initialized. It has no automatic update | ||
// functionality. This may change in the future however if you want this functionality at this time we recommend making | ||
// your own implementation. | ||
package cached |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
package memory | ||
|
||
// The memory package handles a metadata.Provider implementation that solely exists in memory. It's intended as a basis | ||
// Package memory handles a metadata.Provider implementation that solely exists in memory. It's intended as a basis | ||
// for other providers and generally not recommended to use directly unless you're implementing your own logic to handle | ||
// the download and potential caching of the MDS3 blob yourself. | ||
package memory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters