Key | Value |
---|---|
FileName | ./usr/share/gocode/src/github.com/syndtr/goleveldb/.goipath |
FileSize | 46 |
MD5 | 947F38F0AFD5AA8D6C8B792ECA82B7DF |
SHA-1 | 4477D7DBBE43A04FF418CA446413D4B6CC875187 |
SHA-256 | F1B3271C96ACE575CDE8DA21B3298AB19B1B7120AAA93AC972FDCA0A367D4AFA |
SSDEEP | 3:WmhjBdEeBy4zAGIV4n:WmFBHBy4zJIV4n |
TLSH | |
hashlookup:parent-total | 9 |
hashlookup:trust | 95 |
The searched file hash is included in 9 parent files which include package known and seen by metalookup. A sample is included below:
Key | Value |
---|---|
MD5 | 7714BDCDF6D7AE13E10D27442C5EBFA8 |
PackageArch | noarch |
PackageDescription | Package encoding provides a number of encodings that are missing from the standard Go encoding package. We hope that we can contribute these to the standard Go library someday. It turns out that some of these are useful for dealing with I/O streams coming from non-UTF friendly sources. The UTF8 Encoder is also useful for situations where valid UTF-8 might be carried in streams that contain non-valid UTF; in particular I use it for helping me cope with terminals that embed escape sequences in otherwise valid UTF-8. This package contains the source code needed for building packages that reference the following Go import paths: – github.com/gdamore/encoding |
PackageMaintainer | Fedora Project |
PackageName | golang-github-gdamore-encoding-devel |
PackageRelease | 6.fc33 |
PackageVersion | 1.0.0 |
SHA-1 | 7DD3A81EBBE3D30897B6909FBEA883E477496AC3 |
SHA-256 | 10BBAE78D44EC13EAE9F300032C9FCEA2170EE5803E404F99F95787BA23885C2 |
Key | Value |
---|---|
MD5 | 7A84D3096A2460AE404EFE33899A8C53 |
PackageArch | noarch |
PackageDescription | Errwrap is a package for Go that formalizes the pattern of wrapping errors and checking if an error contains another error. There is a common pattern in Go of taking a returned error value and then wrapping it (such as with fmt.Errorf) before returning it. The problem with this pattern is that you completely lose the original error structure. Arguably the correct approach is that you should make a custom structure implementing the error interface, and have the original error as a field on that structure, such as this example. This is a good approach, but you have to know the entire chain of possible rewrapping that happens, when you might just care about one. Errwrap formalizes this pattern (it doesn't matter what approach you use above) by giving a single interface for wrapping errors, checking if a specific error is wrapped, and extracting that error. This package contains the source code needed for building packages that reference the following Go import paths: – github.com/hashicorp/errwrap |
PackageMaintainer | Fedora Project |
PackageName | golang-github-hashicorp-errwrap-devel |
PackageRelease | 6.fc33 |
PackageVersion | 1.0.0 |
SHA-1 | 6A3D333288E2B8D5493FEB2D39D4D6D9447CDEED |
SHA-256 | 5D72419D502B76B82901012442C3ECA7A8A4A0FFC8A393E6062705D99116BBF0 |
Key | Value |
---|---|
MD5 | BD86E5BF7C962058B188976DBCB616A6 |
PackageArch | noarch |
PackageDescription | Copystructure is a Go library for deep copying values in Go. This allows you to copy Go values that may contain reference values such as maps, slices, or pointers, and copy their data as well instead of just their references. This package contains the source code needed for building packages that reference the following Go import paths: – github.com/mitchellh/copystructure |
PackageMaintainer | Fedora Project |
PackageName | golang-github-mitchellh-copystructure-devel |
PackageRelease | 6.fc33 |
PackageVersion | 1.0.0 |
SHA-1 | E0AEB234361CFED1BBBEC47D3BECE33D0D5F8333 |
SHA-256 | AE068FD0ED502ED68992D1F2C85D605BB73B2203E36132FB768EE7FAEE75BCD8 |
Key | Value |
---|---|
MD5 | ABB79C194481F0532264D97B1A900410 |
PackageArch | noarch |
PackageDescription | This is an implementation of the LevelDB key/value database in the Go programming language. This package contains the source code needed for building packages that reference the following Go import paths: – github.com/syndtr/goleveldb |
PackageMaintainer | Fedora Project |
PackageName | golang-github-syndtr-goleveldb-devel |
PackageRelease | 6.fc33 |
PackageVersion | 1.0.0 |
SHA-1 | 4EFCC8FFE44B181C60FAD9DDA992AA23199BC8DE |
SHA-256 | 752F6BFE8DE6498A165A3F5C558CE298211363795A369C1CCAC1D925288ABE3B |
Key | Value |
---|---|
MD5 | 58CECBFBCA63D9C5C6407228A99BFD8B |
PackageArch | noarch |
PackageDescription | Hashstructure is a Go library for creating a unique hash value for arbitrary values in Go. This can be used to key values in a hash (for use in a map, set, etc.) that are complex. The most common use case is comparing two values without sending data across the network, caching values locally (de-dup), and so on. This package contains the source code needed for building packages that reference the following Go import paths: – github.com/mitchellh/hashstructure |
PackageMaintainer | Fedora Project |
PackageName | golang-github-mitchellh-hashstructure-devel |
PackageRelease | 6.fc33 |
PackageVersion | 1.0.0 |
SHA-1 | 2014FDF21675B4FAB794C8B68DA5FBE8CCFC4F26 |
SHA-256 | 0E6FD9F0DF63E21F7782979FB871ED87F42FBD951B4A3BD8933EAA3AF6926471 |
Key | Value |
---|---|
MD5 | 0C7C71EA1E3F796A310980652D84652E |
PackageArch | noarch |
PackageDescription | Go-glob is a single-function library implementing basic string glob support. Globs are an extremely user-friendly way of supporting string matching without requiring knowledge of regular expressions or Go's particular regex engine. Most people understand that if you put a * character somewhere in a string, it is treated as a wildcard. Surprisingly, this functionality isn't found in Go's standard library, except for path.Match, which is intended to be used while comparing paths (not arbitrary strings), and contains specialized logic for this use case. A better solution might be a POSIX basic (non-ERE) regular expression engine for Go, which doesn't exist currently. This package contains the source code needed for building packages that reference the following Go import paths: – github.com/ryanuber/go-glob |
PackageMaintainer | Fedora Project |
PackageName | golang-github-ryanuber-glob-devel |
PackageRelease | 6.fc33 |
PackageVersion | 1.0.0 |
SHA-1 | 94B64EFD8A53CDAAA3A4106185277034DE8E86CC |
SHA-256 | D967ACE410F0E7CDE914BE511DFBA9B99F68ACF76C4FD601086E87AD47C0A3E4 |
Key | Value |
---|---|
MD5 | 9511184A19C0F2C6579EF239DAF2123C |
PackageArch | noarch |
PackageDescription | Package sanitized_anchor_name provides a function to create sanitized anchor names. This package contains the source code needed for building packages that reference the following Go import paths: – github.com/shurcooL/sanitized_anchor_name |
PackageMaintainer | Fedora Project |
PackageName | golang-github-shurcool-sanitized-anchor-name-devel |
PackageRelease | 6.fc33 |
PackageVersion | 1.0.0 |
SHA-1 | C8BEF2BA9EF8B53CC879B591D1DC49F5C734CA75 |
SHA-256 | 0EB26022A423F45C8AADD0773B7EF4DDAF0C23552C014142854D4A2049D008B3 |
Key | Value |
---|---|
MD5 | 4C6F45047B32D96ACF6AFC110BF08EF0 |
PackageArch | noarch |
PackageDescription | This package provides a very simple gsyslog package. The point of this package is to allow safe importing of syslog without introducing cross-compilation issues. The stdlib log/syslog cannot be imported on Windows systems, and without conditional compilation this adds complications. Instead, gsyslog provides a very simple wrapper around log/syslog but returns a runtime error if attempting to initialize on a non Linux or OSX system. This package contains the source code needed for building packages that reference the following Go import paths: – github.com/hashicorp/go-syslog |
PackageMaintainer | Fedora Project |
PackageName | golang-github-hashicorp-syslog-devel |
PackageRelease | 6.fc33 |
PackageVersion | 1.0.0 |
SHA-1 | 4ECEF62D79102174CF76A6079D1A0BE6EF1FEFAF |
SHA-256 | 954A28AFE7371BB6AC6BB7CE3E89BF01B108ACCB58AA3CAB1002DCC65345119A |
Key | Value |
---|---|
MD5 | 0EB9BDCF6388346E566E48D09870AB3B |
PackageArch | noarch |
PackageDescription | Utilities for slightly better logging in go (golang). This package contains the source code needed for building packages that reference the following Go import paths: – github.com/hashicorp/logutils |
PackageMaintainer | Fedora Project |
PackageName | golang-github-hashicorp-logutils-devel |
PackageRelease | 6.fc33 |
PackageVersion | 1.0.0 |
SHA-1 | DEF0D5158729C61DF030303A990A277C4EA48FCC |
SHA-256 | 8C01F3DEFC2FAB1D005412F8BEBE3424EBDF20ED56A1489E260B1C2EBEB82C5D |