Result for EC007271C3AF64B00F73258CBC24EDBA66170760

Query result

Key Value
FileName./usr/share/gocode/src/github.com/hashicorp/errwrap/errwrap_test.go
FileSize1292
MD590AA25D31959F3510FF33AD85F095655
SHA-1EC007271C3AF64B00F73258CBC24EDBA66170760
SHA-256F0805EE86D3B64F1BEFFDFA975A776A1118C6491C30EC9543F6F698FB736A3A5
SHA-51249C180361011FE2AD579F8CE1FD9C2C976ECF75E8A8874FC6E1EB5B59848536B4B141B8A7E5F78772F95A9D2DF382F460C5AFBA82FB237EB874FF35C2F47AD6B
SSDEEP24:vEZlg+Q8yt3L/VrLR/yH7/GCd/Gde/zXdO8C352B3U2B4gzYt3L/VWLR/7L/j7/Z:v2ly8CbVVybG+GWzXdO8Q5eUnYgbVg/x
TLSHT163218E1ADE6D04AB935C303446AD59D9036CC0B3FFD099DBD20256D7A80E9BEC715A74
insert-timestamp1659226698.2332249
mimetypetext/plain
sourcesnap:mdTwaNga8m8NrBqqSH4FVIbtUwLWAhWj_15
hashlookup:parent-total16
hashlookup:trust100

Network graph view

Parents (Total: 16)

The searched file hash is included in 16 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
SHA-103BD1018751C915F71C1E2AE51345C94CA1942ED
snap-authoritycanonical
snap-filenamemdTwaNga8m8NrBqqSH4FVIbtUwLWAhWj_15.snap
snap-idmdTwaNga8m8NrBqqSH4FVIbtUwLWAhWj_15
snap-nameaxiom
snap-publisher-id1gYihke6YA9pGfV8JRS1Ohe64f0Qs5nG
snap-signkeyBWDEoaqyr25nF5SNCvEv2v7QnM9QsfCc0PBMYD_i2NGSQ32EF2d4D0hqUel3m8ul
snap-timestamp2021-10-01T17:34:13.464567Z
source-urlhttps://api.snapcraft.io/api/v1/snaps/download/mdTwaNga8m8NrBqqSH4FVIbtUwLWAhWj_15.snap
Key Value
MD57C883DC564F2D310861D4C79F9508C67
PackageArchx86_64
PackageDescriptionUnit tests for golang-github-hashicorp-errwrap package This package contains unit tests for project providing packages with github.com/hashicorp/errwrap prefix.
PackageMaintainerFedora Project
PackageNamegolang-github-hashicorp-errwrap-unit-test-devel
PackageRelease0.5.git7554cd9.el6
PackageVersion0
SHA-115C4899AD30AC6B9472502A2B125CEE0687A6FF9
SHA-256CBF1F9631ED0995B0659F369E7F6F7AB11B7266829E12F329858F41AC86883DF
Key Value
MD51FF942BA85414B5C07DE7B1AB2E240EF
PackageArchppc64
PackageDescriptionUnit tests for golang-github-hashicorp-errwrap package This package contains unit tests for project providing packages with github.com/hashicorp/errwrap prefix.
PackageMaintainerFedora Project
PackageNamegolang-github-hashicorp-errwrap-unit-test-devel
PackageRelease0.3.git7554cd9.fc24
PackageVersion0
SHA-129BF28DB2257EA3F4C84A52DFD5F45FE8C133843
SHA-256A4113715CE66514798C27C85E16EF409614E60E9500A62C98FFBB64ABA46399C
Key Value
MD5BFE6AE3AA453F2BC36337C4F664A9573
PackageArchx86_64
PackageDescriptionUnit tests for golang-github-hashicorp-errwrap package This package contains unit tests for project providing packages with github.com/hashicorp/errwrap prefix.
PackageMaintainerFedora Project
PackageNamegolang-github-hashicorp-errwrap-unit-test-devel
PackageRelease0.5.git7554cd9.el7
PackageVersion0
SHA-1366DCCB301596B948B17D5CC04E5E9262F8DAF4B
SHA-2560EFA1457BA5120A59D1FFC4BCFF1FF2616BA410A95C17A7A10B260BAFFA69E92
Key Value
MD5BF53741DDD76E34B8735894642D83F0D
PackageArchaarch64
PackageDescriptionUnit tests for golang-github-hashicorp-errwrap package This package contains unit tests for project providing packages with github.com/hashicorp/errwrap prefix.
PackageMaintainerFedora Project
PackageNamegolang-github-hashicorp-errwrap-unit-test-devel
PackageRelease0.3.git7554cd9.fc24
PackageVersion0
SHA-15F4D3CA44F9D87E6AFA41C394145616CEE884755
SHA-2569419EB1164FB0F7DAD2C8F0A151DBFC1540E6678CBE72A2587497EC5EE3355D6
Key Value
MD5E278D9938EBAE02B9FE302DB408CDC75
PackageArchi686
PackageDescriptionUnit tests for golang-github-hashicorp-errwrap package This package contains unit tests for project providing packages with github.com/hashicorp/errwrap prefix.
PackageMaintainerFedora Project
PackageNamegolang-github-hashicorp-errwrap-unit-test-devel
PackageRelease0.5.git7554cd9.el6
PackageVersion0
SHA-167DEDD1FEADDAA2106856CFEC7A21855AC1D21F9
SHA-2569ECABF75000F5E398F93BBB4B929F4193E2C74D2CBF7CFADB9D4AE51E157E3BA
Key Value
MD57A84D3096A2460AE404EFE33899A8C53
PackageArchnoarch
PackageDescriptionErrwrap 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
PackageMaintainerFedora Project
PackageNamegolang-github-hashicorp-errwrap-devel
PackageRelease6.fc33
PackageVersion1.0.0
SHA-16A3D333288E2B8D5493FEB2D39D4D6D9447CDEED
SHA-2565D72419D502B76B82901012442C3ECA7A8A4A0FFC8A393E6062705D99116BBF0
Key Value
FileSize10332
MD543FEB10906F49F8F83055B0DD28D72A2
PackageDescriptionErrwrap is a Go (golang) library for wrapping and querying errors 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.
PackageMaintainerDebian Go Packaging Team <team+pkg-go@tracker.debian.org>
PackageNamegolang-github-hashicorp-errwrap-dev
PackageSectiondevel
PackageVersion1.0.0-1
SHA-17638684D80E102F3E3B775F7637D6B53B6DEBDC7
SHA-256DA7B92863207AA3939DB993ED1E489CBA8DCBD1CD40EBC69FF363EEB5FA402DC
Key Value
FileSize10376
MD5A402F75E7F73158A31A06A0F8DE758D1
PackageDescriptionErrwrap is a Go (golang) library for wrapping and querying errors 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.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamegolang-github-hashicorp-errwrap-dev
PackageSectiondevel
PackageVersion1.0.0-1
SHA-1818D2551537A2A9E373A86FF742BBC5F6A7FB7DF
SHA-2562E074E49828820147321C1E42B73652794A81C340DBC2E3FA00E339D7BEE4D94
Key Value
FileSize9720
MD515B88F365F22E37DDB2BDBA0AF28CD1F
PackageDescriptionErrwrap is a Go (golang) library for wrapping and querying errors 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.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamegolang-github-hashicorp-errwrap-dev
PackageSectiondevel
PackageVersion0.0~git20141028.0.7554cd9-1
SHA-18E4FDBC9018156BDCD13CE9E77C3727379440C5C
SHA-2564F25CA286FA0D56E63B2D9F16E1A799CB3EDC447FF394C0F0AC1F20D6BCBA103