Result for 15A87AFAF16A8779A136BBFE5EE09E8077E5655E

Query result

Key Value
FileName./usr/share/gocode/src/github.com/mitchellh/mapstructure/decode_hooks.go
FileSize5221
MD5EA9DF978BB68006E0B811582AEF14976
SHA-115A87AFAF16A8779A136BBFE5EE09E8077E5655E
SHA-2567E28DD842772D42ED739631DDDB018C98A5DB84CF0B9737A8FC1969D48D72C9D
SSDEEP96:OrFpQkRyNVQh1EPeZeZGdaGUtS+pSHpJgp/NzpZF6T9sQhuFA3:Orl8A1sJJ81
TLSHT1F6B17A84B3DF6886139421A4DD5A3C41B3CCF4B105AE52B2ECCDA79E205CAF9D531BA2
hashlookup:parent-total69
hashlookup:trust100

Network graph view

Parents (Total: 69)

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

Key Value
MD565D6192A4F576085D6331A07512B9BDD
PackageArchi586
PackageDescriptionThe Alertmanager handles alerts sent by client applications such as the Prometheus server. It takes care of deduplicating, grouping, and routing them to the correct receiver integration such as email, PagerDuty, or OpsGenie. It also takes care of silencing and inhibition of alerts.
PackageNamegolang-github-prometheus-alertmanager
PackageRelease27.52
PackageVersion0.21.0
SHA-1044068518884C0D308EF4693C97E310713C67478
SHA-2565DDAF898B8CBDF4174F9DD8244673FC8243BBE2F242962D11F5170AFB0D77F63
Key Value
MD5B8DDCFC3E4A75B1CA246BAB20566B3E9
PackageArchx86_64
PackageDescriptionThis package provides debug information for package golang-github-prometheus. Debug information is useful when developing applications that use this package or when debugging this package.
PackageMaintainerFedora Project
PackageNamegolang-github-prometheus-debuginfo
PackageRelease5.el7
PackageVersion2.24.1
SHA-105833ACFC95BC1F23C73F58E39B012EFFFD6A4B1
SHA-2568E0E383E5499F2632009B86D398AC57E127CCA7F16D9C25A44EAD140BC184CFA
Key Value
MD52DC24F0E77E89D884C190A63AA69ED76
PackageArchnoarch
PackageDescriptionmapstructure is a Go library for decoding generic map values to structures and vice versa, while providing helpful error handling. This library is most useful when decoding values from some data stream (JSON, Gob, etc.) where you don't quite know the structure of the underlying data until you read a part of it.
PackageMaintainerpterjan <pterjan>
PackageNamegolang-mitchellh-mapstructure
PackageRelease1.mga7
PackageVersion1.1.2
SHA-10698D9DB08B95581D0F86BD6235E2523576A517D
SHA-2565CB32271F4CC5DE33916D0E052C905FD9807E67E255543F3D3CB7CA02DBB2B7B
Key Value
MD54FCE8EA8D32FE979C708BDC67D8BF3D4
PackageArchnoarch
PackageDescriptionPackage viper contains utility functions used to implement the standard "cmd/go" tool, provided as a convenience to developers who want to write tools with similar semantics.
PackageNamegolang-github-spf13-viper
PackageRelease1.22
PackageVersion1.7.0+git20200509.13df721
SHA-10C6AABB4E0CC14C8DFE1057F8A9FBD304C30730E
SHA-256435E6D71E35DDC24E4FE1ED351C9ABFC229215C15A8D39ADECB60121629861ED
Key Value
MD5150AE14A080B985D483F8764699AC3C0
PackageArchx86_64
PackageDescriptionGo library for decoding generic map values into native Go structures
PackageNamegolang-github-mitchellh-mapstructure
PackageRelease1.4
PackageVersion1.1.2+git20181004.3536a92
SHA-10CF4383B4038754ABB97A5C3DA80C8399C4F6E7A
SHA-2568CD2A61C3B9B5EF9F3829E0C2E7D2470B59F8B25279444A3ABC1BA53E7960DC7
Key Value
MD508B7A5ACB294C181CF70E801F605BA97
PackageArchx86_64
PackageDescriptionPackage cobra contains utility functions used to implement the standard "cmd/go" tool, provided as a convenience to developers who want to write tools with similar semantics.
PackageNamegolang-github-spf13-cobra
PackageRelease1.50
PackageVersion1.0.0+git20200410.a684a6d
SHA-116279044FF5CF50FA334DBEF8064D556F13B8A88
SHA-25653D03EA6EAFB5135A37B85A063AD9D83E7DFAF80BCFBCB280EACC4C705C7B207
Key Value
MD53598D7A2473F4BC780EF7127AD1ED063
PackageArchnoarch
PackageDescriptionMapstructure is a Go library for decoding generic map values to structures and vice versa, while providing helpful error handling. This library is most useful when decoding values from some data stream (JSON, Gob, etc.) where you don't quite know the structure of the underlying data until you read a part of it. You can therefore read a map[string]interface{} and use this library to decode it into the proper underlying native Go structure. This package contains the source code needed for building packages that reference the following Go import paths: – github.com/mitchellh/mapstructure
PackageMaintainerFedora Project
PackageNamegolang-github-mitchellh-mapstructure-devel
PackageRelease1.fc33
PackageVersion1.3.3
SHA-11DD90638EAFA050B2A75FBBB71EA0F846ADE668B
SHA-256009A8F55422B2E1863186791B5B20309028EB1A8A4DE3E02DF1BF8189B4A6213
Key Value
FileSize24400
MD5E204227E883C155EB9FFA47E2160C335
PackageDescriptionlibrary for decoding generic map values into native Go structures mapstructure is a Go library for decoding generic map values to structures and vice versa, while providing helpful error handling. . This library is most useful when decoding values from some data stream (JSON, Gob, etc.) where you don't quite know the structure of the underlying data until you read a part of it. You can therefore read a map[string]interface{} and use this library to decode it into the proper underlying native Go structure. . Go offers fantastic standard libraries for decoding formats such as JSON. The standard method is to have a struct pre-created, and populate that struct from the bytes of the encoded format. This is great, but the problem is if you have configuration or an encoding that changes slightly depending on specific fields. . Perhaps we can't populate a specific structure without first reading the "type" field from the JSON. We could always do two passes over the decoding of the JSON (reading the "type" first, and the rest later). However, it is much simpler to just decode this into a map[string]interface{} structure, read the "type" key, then use something like this library to decode it into the proper structure.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamegolang-github-mitchellh-mapstructure-dev
PackageSectiondevel
PackageVersion1.3.2-1
SHA-1219F15140F256133BDE5517B8F9375A1CC66C9E0
SHA-2563079B9873F1F705AA14FA8964F9B059D548FD083257FB0F4B270E12EA02650A2
Key Value
MD508C2DCFC19B3DCD23DE7B40C87B89FAA
PackageArchnoarch
PackageDescriptionKubernetes is an open source system for managing containerized applications across multiple hosts; providing basic mechanisms for deployment, maintenance, and scaling of applications. Kubernetes builds upon a decade and a half of experience at Google running production workloads at scale using a system called Borg, combined with best-of-breed ideas and practices from the community. This package contains the source code needed for building packages that reference the following Go import paths: – k8s.io/kubernetes
PackageMaintainerFedora Project
PackageNamegolang-k8s-kubernetes-devel
PackageRelease2.fc33~bootstrap
PackageVersion1.18.3
SHA-1238A10F9D4166A4D76AD907C20AABC20BDCE8BAC
SHA-25677F442C005E65421F6A8C43B932B22499B50C804F9915412BBD80F72C3C7D290
Key Value
MD5A3685B1CE47AFA2973421E31975B424F
PackageArchs390x
PackageDescriptionPackage cobra contains utility functions used to implement the standard "cmd/go" tool, provided as a convenience to developers who want to write tools with similar semantics.
PackageNamegolang-github-spf13-cobra
PackageRelease1.42
PackageVersion1.0.0+git20200410.a684a6d
SHA-125BB4AE61A349D4E568CD0FDF9AC75B098674595
SHA-256975E5017DEA3A379D3842BCBE42459EA1F89AFC2EE32D2371540C5EBB7AC40A5