Result for 2AA6AE0804D1046AB7AFF3F7AD89B6F087511EB8

Query result

Key Value
CRC32F9F80255
FileName./usr/share/doc/libboost1.58-tools-dev/copyright
FileSize7148
MD52F516F3E3C0736B25CC324033945E8AD
OpSystemCode{'MfgCode': '1006', 'OpSystemCode': '362', 'OpSystemName': 'TBD', 'OpSystemVersion': 'none'}
ProductCode{'ApplicationType': 'Operating System', 'Language': 'English', 'MfgCode': '1111', 'OpSystemCode': '999', 'ProductCode': '187092', 'ProductName': 'Ubuntu LTS (Xenial Xerus) 32-bit PC (i386) Desktop', 'ProductVersion': '16.04.4'}
RDS:package_id222721
SHA-12AA6AE0804D1046AB7AFF3F7AD89B6F087511EB8
SHA-256D05D5576D5785428174BD05B48F1B7ED9F522D0BE385F9531780DCF24FF6FC70
SHA-512F979B40F7A32D0BEC77F66302B76753DDB61CD574F2C9498A13088C0CA9030E7B186C055AA940C9062F363F60E65C170506EE4A8E91CD7ED8568C208B46A310E
SSDEEP192:U6DeOFQH+bZ3KdEr2+34EYrsiyw5pVcJDfD:rDnFrbZ3Kd1qbYrsip538
SpecialCode
TLSHT131E1C91F3F54073243D283A65A8AB9C9F30E851EB6375941B81DD15C273B8AC83F92E5
dbnsrl_modern_rds
insert-timestamp1728991161.0342157
mimetypetext/plain
sourcesnap:MQz6Qu3Dr16n7F8krFTU6vdogj5HAsA4_3
hashlookup:parent-total1774
hashlookup:trust100

Network graph view

Parents (Total: 1774)

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

Key Value
FileSize189204
MD591BB255A4E75BCE7FB894D903DBFEA48
PackageDescriptionC++ facilities for localization This package forms part of the Boost C++ Libraries collection. . Boost.Locale gives powerful tools for development of cross platform localized software - the software that talks to user in its language. . * Correct case conversion, case folding and normalization. * Collation (sorting), including support for 4 Unicode collation levels. * Date, time, timezone and calendar manipulations, formatting and parsing, including transparent support for calendars other than Gregorian. * Boundary analysis for characters, words, sentences and line-breaks. * Number formatting, spelling and parsing. * Monetary formatting and parsing. * Powerful message formatting (string translation) including support for plural forms, using GNU catalogs. * Character set conversion. * Transparent support for 8-bit character sets like Latin1 * Support for char and wchar_t * Experimental support for C++0x char16_t and char32_t strings and streams.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamelibboost-locale1.55.0
PackageSectionlibs
PackageVersion1.55.0+dfsg-1ubuntu3
SHA-1000AC7269AE1B6419E4144B640B81A8A46D6F6E3
SHA-25664C92DEB68AFF22539496C74FC6779A4C233D0CEEDF87206CB8720A125FE8610
Key Value
CRC323124C93E
FileName15223
FileSize183922
MD59BF934DB15C42F128A23BC4A35264382
OpSystemCode362
PackageDescriptionC99/C++ preprocessor library This package forms part of the Boost C++ Libraries collection. . The Wave C++ preprocessor library is a Standards conformant implementation of the mandated C99/C++ preprocessor functionality packed behind a simple to use interface, which integrates well with the well known idioms of the Standard Template Library (STL).
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamelibboost-wave1.58.0
PackageSectionlibs
PackageVersion1.58.0+dfsg-5ubuntu3
ProductCode184813
RDS:package_id184813
SHA-1000C58A47BC97CE884C017E9550E964F317F2ECF
SHA-256CE3E6E4E350B6F1FFE0AD6F0C29BE7DBFE697D992E8B3FB92EE684C38384EA3D
SpecialCode
dbnsrl_legacy
insert-timestamp1648755915.1636033
sourceRDS_2022.03.1_legacy.db
Key Value
FileSize4276
MD5B9A737A4D23AA2F19A2F495B69BD478E
PackageDescriptionprovides a sort of cooperative multitasking on a single thread This package forms part of the Boost C++ Libraries collection. . Boost.Context is a foundational library that provides a sort of cooperative multitasking on a single thread. By providing an abstraction of the current execution state in the current thread, including the stack (with local variables) and stack pointer, all registers and CPU flags, and the instruction pointer, a fcontext_t instance represents a specific point in the application's execution path. This is useful for building higher-level abstractions, like coroutines, cooperative threads (userland threads) or an equivalent to C# keyword yield in C++.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamelibboost-context1.55-dev
PackageSectionlibdevel
PackageVersion1.55.0+dfsg-1ubuntu3
SHA-10020CD09CDC99A6068C9B3CAE1F33D41FB0E1EFB
SHA-256D71744D43239694ACCDF446E60DAE520EAEEF36D1DFB87F97345149906D46DEE
Key Value
FileSize35322
MD558B87B6AA69539BA22D07D62F4729667
PackageDescriptionC++ representation of time duration, time point, and clocks This package forms part of the Boost C++ Libraries collection. . The Boost.Chrono library provides: . * A means to represent time durations: managed by the generic duration class.Examples of time durations include days, minutes, seconds and nanoseconds, which can be represented with a fixed number of clock ticks per unit. All of these units of time duration are united with a generic interface by the duration facility. * A type for representing points in time: time_point. A time_point represents an epoch plus or minus a duration. The library leaves epochs unspecified. A time_point is associated with a clock. * Several clocks, some of which may not be available on a particular platform: system_clock, steady_clock and high_resolution_clock. A clock is a pairing of a time_point and duration, and a function which returns a time_point representing now. . To make the timing facilities more generally useful, Boost.Chrono provides a number of clocks that are thin wrappers around the operating system's time APIs, thereby allowing the extraction of wall clock time, user CPU time, system CPU time spent by the process: . * process_real_cpu_clock, captures wall clock CPU time spent by the current process. * process_user_cpu_clock, captures user-CPU time spent by the current process. * process_system_cpu_clock, captures system-CPU time spent by the current process. * a tuple-like class process_cpu_clock, that captures real, user-CPU, and system-CPU process times together. * a thread_clock thread steady clock giving the time spent by the current thread (when supported by a platform). . Lastly, Boost.Chrono includes typeof registration for duration and time_point to permit using emulated auto with C++03 compilers.
PackageMaintainerDebian Boost Team <pkg-boost-devel@lists.alioth.debian.org>
PackageNamelibboost-chrono1.55.0
PackageSectionlibs
PackageVersion1.55.0+dfsg-3
SHA-1005DC87A02B384DBA63763D348285733498E96C0
SHA-25636424AFFD4A70ACD13198C130D85E797E5BCAB2492873AD96B0A8A046DC6C905
Key Value
FileSize77996
MD515A148D5FC80F5380F3A4F43A8911E9A
PackageDescriptiongeneric graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . The Parallel Boost Graph Library is an extension to the Boost Graph Library (BGL) for parallel and distributed computing. It offers distributed graphs and graph algorithms to exploit coarse-grained parallelism along with parallel algorithms that exploit fine-grained parallelism, while retaining the same interfaces as the (sequential) BGL. Code written using the sequential BGL should be easy to parallelize with the parallel BGL.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamelibboost-graph-parallel1.55-dev
PackageSectionlibdevel
PackageVersion1.55.0+dfsg-3ubuntu2
SHA-100699C8A12E2C3C883BB78BF869F030A0C0E96A3
SHA-25693146EFEA1467747A7204D84CD0D79986A103BF2E614541E9AE2FDD73CEC507D
Key Value
FileSize73004
MD5FA0900973E610B9B15423A6538C84DBA
PackageDescriptionC++ interface to the Message Passing Interface (MPI) This package forms part of the Boost C++ Libraries collection. . The Boost.MPI library provides a C++ interface to MPI that supports modern C++ development styles, including complete support for user-defined data types and C++ Standard Library types, arbitrary function objects for collective algorithms, and the use of modern C++ library techniques to maintain maximal efficiency.
PackageMaintainerDebian Boost Team <pkg-boost-devel@lists.alioth.debian.org>
PackageNamelibboost-mpi1.55-dev
PackageSectionlibdevel
PackageVersion1.55.0+dfsg-3
SHA-100857DF12195990FE26F684072AEC82CAE730648
SHA-25665AA680C5BFB576DAC242BA2590EA281814D4DAA0FAE731C13DD57634328B86F
Key Value
FileSize158332
MD5D1DE2386B267F90EE4963C94EB27DCBE
PackageDescriptionprogram options library for C++ This package forms part of the Boost C++ Libraries collection. . Library to let program developers obtain program options, that is (name, value) pairs from the user, via conventional methods such as command line and config file.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamelibboost-program-options1.58-dev
PackageSectionlibdevel
PackageVersion1.58.0+dfsg-3.1ubuntu1
SHA-100D83455361FE4138272CE9DD3443704C8EB39FC
SHA-256D157CFBF9BCCFD7F65E7298F517BF72DCBFAF3F2282BF7C4749C761EB6BA50B5
Key Value
FileSize211828
MD5FFB9D5967375A3E78B4B3403F710D1E4
PackageDescriptionBoost.Math Library This package forms part of the Boost C++ Libraries collection. . This library is divided into three interconnected parts: * Statistical Distributions: Provides a reasonably comprehensive set of statistical distributions, upon which higher level statistical tests can be built. * Mathematical Special Functions: Provides a small number of high quality special functions, initially these were concentrated on functions used in statistical applications along with those in the Technical Report on C++ Library Extensions. * Implementation Toolkit: Provides many of the tools required to implement mathematical special functions.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamelibboost-math1.55.0
PackageSectionlibs
PackageVersion1.55.0+dfsg-3ubuntu2
SHA-100DBF2A83687C5A6A74AEA149357A29F09664129
SHA-25605B1CD7C55CCADE2FA609D16365DC6771CDE1FADCDC9A60EAC9C5E2E6C349051
Key Value
FileSize8794
MD5614310E6B9033641B15C4BD82E679DA8
PackageDescriptionatomic data types, operations, and memory ordering constraints This package forms part of the Boost C++ Libraries collection. . Boost.Atomic is a library that provides atomic data types and operations on these data types, as well as memory ordering constraints required for coordinating multiple threads through atomic variables. It implements the interface as defined by the C++11 standard, but makes this feature available for platforms lacking system/compiler support for this particular C++11 feature. . Users of this library should already be familiar with concurrency in general, as well as elementary concepts such as "mutual exclusion". . The implementation makes use of processor-specific instructions where possible (via inline assembler, platform libraries or compiler intrinsics), and falls back to "emulating" atomic operations through locking.
PackageMaintainerUbuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
PackageNamelibboost-atomic1.55.0
PackageSectionlibs
PackageVersion1.55.0+dfsg-1ubuntu3
SHA-100EE28FE6B8A44BD3816DFA4FB8F3B93B2AC7AB2
SHA-2564F5E88B5BA1B6E1E7D231BEBC0340E6F85C390FC525249B3A5388D8C19A75DE1
Key Value
SHA-100F1B4892490BA7347882179C7DD43B68D186DAA
snap-authoritycanonical
snap-filename6C4nJpuGFmcnRFZTx40PpLgTEr2DqYxZ_2.snap
snap-id6C4nJpuGFmcnRFZTx40PpLgTEr2DqYxZ_2
snap-nameentropypianotuner
snap-publisher-idvOAkZa2QgQ6HxfI9omQDn1F2UzACLUfc
snap-signkeyBWDEoaqyr25nF5SNCvEv2v7QnM9QsfCc0PBMYD_i2NGSQ32EF2d4D0hqUel3m8ul
snap-timestamp2019-07-26T14:27:06.022593Z
source-urlhttps://api.snapcraft.io/api/v1/snaps/download/6C4nJpuGFmcnRFZTx40PpLgTEr2DqYxZ_2.snap