Key | Value |
---|---|
FileName | ./usr/share/doc/libboost1.74-tools-dev/changelog.Debian.arm64.gz |
FileSize | 215 |
MD5 | 8246A617CF3CD71CDA6654CCBBFDE11B |
SHA-1 | 1462044921DD13B50994C5195E1B7148BF837595 |
SHA-256 | DC31B478FC229E003AABA08760AF4D7A0B1EC1DCA4BF645200DE34A48190A19F |
SSDEEP | 6:XtcuQyHvEqkpki5LsLjnW03gDndlgBWiEn:XyuLEqkKaLIL3gDndlWnE |
TLSH | T1E9D023BC41F955BEEC33D61232372D4379391674192625C43062485D053994FD168CDC |
hashlookup:parent-total | 66 |
hashlookup:trust | 100 |
The searched file hash is included in 66 parent files which include package known and seen by metalookup. A sample is included below:
Key | Value |
---|---|
FileSize | 343304 |
MD5 | 281EDCD1D9B38B35D64F6626E3774F3B |
PackageDescription | program 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. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-program-options1.74.0 |
PackageSection | libs |
PackageVersion | 1.74.0-3+b1 |
SHA-1 | 05C6E3E766FCE952958CEBDE71D17066F714ED0F |
SHA-256 | 6382DCE08AFCC72F6A96A81E2C990E12F729F6383C50EA64DC61731D5D692637 |
Key | Value |
---|---|
FileSize | 241028 |
MD5 | D2FC0F2D38668F706C41456C5FB74C33 |
PackageDescription | library to help write exceptions and handlers This package forms part of the Boost C++ Libraries collection. . The purpose of Boost Exception is to ease the design of exception class hierarchies and to help write exception handling and error reporting code. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-exception1.74-dev |
PackageSection | libdevel |
PackageVersion | 1.74.0-3+b1 |
SHA-1 | 0606CC640C3806AF0EC64CF413A6DDCB7FC7E14E |
SHA-256 | DF932019F1587B1E646D11F0849F3AD8F45B40529227A69AD2894D6EA4845EC8 |
Key | Value |
---|---|
FileSize | 445296 |
MD5 | D119128AB579A888D32E3D65FDCF60B0 |
PackageDescription | C++ 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. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-locale1.74.0 |
PackageSection | libs |
PackageVersion | 1.74.0-3+b1 |
SHA-1 | 060D7EE699C0BC704D38EC96BF6E3888782664E9 |
SHA-256 | 2573DB9B362E164210051C66A69898E8DD8C4D0115B3546F3A2FE300302E8DB6 |
Key | Value |
---|---|
FileSize | 266256 |
MD5 | AF8C363AAFE3496FC9AE0F0D93AFFFC4 |
PackageDescription | provides a sort of cooperative multitasking on a single thread This package forms part of the Boost C++ Libraries collection. . Boost.Coroutine provides templates for generalized subroutines which allow multiple entry points for suspending and resuming execution at certain locations. It preserves the local state of execution and allows re-entering subroutines more than once (useful if state must be kept across function calls). . Coroutines can be viewed as a language-level construct providing a special kind of control flow. . In contrast to threads, which are pre-emptive, coroutine switches are cooperative (programmer controls when a switch will happen). The kernel is not involved in the coroutine switches. . The implementation uses Boost.Context for context switching. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-coroutine1.74-dev |
PackageSection | libdevel |
PackageVersion | 1.74.0-3+b1 |
SHA-1 | 084B0583ADE21C2E8F0EF471925C98F72A0DF5EC |
SHA-256 | CC77AACF1A6C80F61BA0884F404AC44886452064E9D08F2C8B0C5E94C1044368 |
Key | Value |
---|---|
FileSize | 250120 |
MD5 | BEBDBFF388C5E8C035F89CA58192FB03 |
PackageDescription | set of date-time libraries based on generic programming concepts This package forms part of the Boost C++ Libraries collection. . These libraries are intended to make programming with dates and times almost as simple and natural as programming with strings and integers. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-date-time1.74-dev |
PackageSection | libdevel |
PackageVersion | 1.74.0-3+b1 |
SHA-1 | 152DACCE9AE6480ADF16C1DBEE6AC04B0810C39F |
SHA-256 | 731D424E80FF0E8707535354597DC51537D93BDD73948D37C1D4754F37ECF5A8 |
Key | Value |
---|---|
FileSize | 262888 |
MD5 | ABFBF914ABA2BA4AD61701E3AF9D7ECB |
PackageDescription | cooperatively-scheduled micro-/userland-threads This package forms part of the Boost C++ Libraries collection. . Boost.Fiber provides a framework for micro-/userland-threads (fibers) scheduled cooperatively. The API contains classes and functions to manage and synchronize fibers similarly to standard thread support library. . Each fiber has its own stack. . A fiber can save the current execution state, including all registers and CPU flags, the instruction pointer, and the stack pointer and later restore this state. The idea is to have multiple execution paths running on a single thread using cooperative scheduling (versus threads, which are preemptively scheduled). The running fiber decides explicitly when it should yield to allow another fiber to run (context switching). Boost.Fiber internally uses execution_context from Boost.Context; the classes in this library manage, schedule and, when needed, synchronize those execution contexts. A context switch between threads usually costs thousands of CPU cycles on x86, compared to a fiber switch with less than a hundred cycles. A fiber runs on a single thread at any point in time. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-fiber1.74.0 |
PackageSection | libs |
PackageVersion | 1.74.0-3+b1 |
SHA-1 | 1D2A59E5EFC76D71190DD3BFF291F47004919645 |
SHA-256 | 7FABFB1DC2DF02E61A2F593E837533BD4E4EBB68FB59C90588208275FABD8C54 |
Key | Value |
---|---|
FileSize | 381128 |
MD5 | 67ED50A2A9ACAA614CD187D62BC53C5E |
PackageDescription | serialization library for C++ This package forms part of the Boost C++ Libraries collection, containing the following functionalities: . * proper restoration of pointers to shared data * serialization of STL containers and other commonly used templates * data portability - streams of bytes created on one platform should be readable on any other * archive interface must be rich enough to permit the creation of an archive that presents serialized data as XML in a useful manner . Here, "serialization" means the reversible deconstruction of an arbitrary set of C++ data structures to a sequence of bytes. archive: to refer to a specific rendering of this stream of bytes. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-serialization1.74-dev |
PackageSection | libdevel |
PackageVersion | 1.74.0-3+b1 |
SHA-1 | 219256CB0B9EAB381E4F965F3921DAD946CCAC92 |
SHA-256 | E0D8EBA30CBD307021C6ECA06232F13A96C08BBD814B73B92A1E7110E221E0F1 |
Key | Value |
---|---|
FileSize | 277408 |
MD5 | 1786ABF762EE7082296BBC0A79537186 |
PackageDescription | Contract library for C++ - dev files This package forms part of the Boost C++ Libraries collection. . All contract programming features are supported: Subcontracting, class invariants, postconditions (with old and return values), preconditions, customizable actions on assertion failure (e.g., terminate or throw), optional compilation and checking of assertions, etc. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-contract1.74-dev |
PackageSection | libdevel |
PackageVersion | 1.74.0-3+b1 |
SHA-1 | 2698A07C23F00EB4EA8991121DD713911331CC66 |
SHA-256 | 9FA1D50035D8AFB7187C642DC7D5E3257636B7F3031428B50C0039C23E4C15F9 |
Key | Value |
---|---|
FileSize | 800796 |
MD5 | BCF97CB81E51CE9EF5E1259BE9D38A8B |
PackageDescription | C++ logging library This package forms part of the Boost C++ Libraries collection. . This library aims to make logging significantly easier for the application developer. It provides a wide range of out-of-the-box tools along with public interfaces for extending the library. The main goals of the library are: . * Simplicity. A small example code snippet should be enough to get the feel of the library and be ready to use its basic features. * Extensibility. A user should be able to extend functionality of the library for collecting and storing information into logs. * Performance. The library should have as little performance impact on the user's application as possible. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-log1.74-dev |
PackageSection | libdevel |
PackageVersion | 1.74.0-3+b1 |
SHA-1 | 2C6008B227455C758BD786BBD292590996F03819 |
SHA-256 | FA42BF1AAE4860798D82B53D42FFEA0FEC8E0990C692F21C20BA16B1132BAF08 |
Key | Value |
---|---|
FileSize | 302452 |
MD5 | FFB75EBFD0696C866076BD7D9B844BAD |
PackageDescription | C++ 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. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-mpi1.74-dev |
PackageSection | libdevel |
PackageVersion | 1.74.0-3+b1 |
SHA-1 | 30D2C52706F228CE5702D94E67D3D40C74BDBEFE |
SHA-256 | A0AA73D865B8128096A525410348E17CBE5D6E021C2B05D16CE74D55E18A677C |