Key | Value |
---|---|
FileName | ./usr/share/doc/libboost1.67-tools-dev/changelog.Debian.arm64.gz |
FileSize | 218 |
MD5 | 942DB52AB8CC5187BCCB1585CED6F608 |
SHA-1 | A7A251D9E98604F143C5B87EFA35982AF2826E83 |
SHA-256 | 2E2D62389A723957500B78BB2375365DC8CACDD6310263A7AC2353427AEF356D |
SSDEEP | 6:Xtj0cfgnsGr8s0mPePErKZuLP7SVG+hmvC/n:X9an3rLTRXC/n |
TLSH | T1A2D023655CDB2973D0790F350E9B84E1D4C4CF4905E5D62441900C05EFDC69D2893F75 |
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 | 324936 |
MD5 | AC699D8CC40B5B15FC8DA326FB38A951 |
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.67.0 |
PackageSection | libs |
PackageVersion | 1.67.0-17+b1 |
SHA-1 | 00649C9E5E0580727BBB34870C63D1A8F2FB8FE0 |
SHA-256 | 5279E66FBFF0B0869F06F17898CB04B8BCC40AB4FEFF1276C627A444679603D0 |
Key | Value |
---|---|
FileSize | 257772 |
MD5 | 90879B061736F24CDDDA027AECE50E17 |
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.67-dev |
PackageSection | libdevel |
PackageVersion | 1.67.0-17+b1 |
SHA-1 | 0091A1FDA44D81CC46728DEFE5EED7AD22F62E44 |
SHA-256 | B98E24091049ECE3643DF1A0932F5124ECC33C8D5E3E6ACE4598B0F968AEB48A |
Key | Value |
---|---|
FileSize | 462864 |
MD5 | 79E1E1CA5CD8E16F9B2B2DC1C3CAA220 |
PackageDescription | Boost.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. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-math1.67.0 |
PackageSection | libs |
PackageVersion | 1.67.0-17+b1 |
SHA-1 | 02705A8D9A532DDAD6372C6A230E6FFD04F1D526 |
SHA-256 | 241C441BC93DCD79B549FF2FC0D8ECF1E485CCDE4AF67A3191DA4CFFF115B97C |
Key | Value |
---|---|
FileSize | 239420 |
MD5 | 5F81DB330A1DBD07B0E3CCBB6944F316 |
PackageDescription | C++ runtime polymorphism based on concepts This package forms part of the Boost C++ Libraries collection. . C++ has two distinct kinds of polymorphism, virtual functions and templates, each of which has its own advantages and disadvantages. The Boost.TypeErasure library combines the superior abstraction capabilities of templates, with the runtime flexibility of virtual functions. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-type-erasure1.67.0 |
PackageSection | libs |
PackageVersion | 1.67.0-17+b1 |
SHA-1 | 04EBD1D5AA4DC3B8311E7920847DCB34461009CC |
SHA-256 | 58C6B89A2ABAB313DBE8056406F92CB51291E93ADD6176E85380CCE61ADDE5A1 |
Key | Value |
---|---|
FileSize | 247828 |
MD5 | 2B9B7C7256F2CD842B6BA9D5A245C84D |
PackageDescription | Boost.Iostreams Library This package forms part of the Boost C++ Libraries collection. . Boost.Iostreams are a collection of concepts and a set of templates which turn models of these concepts into C++ standard library streams and stream buffers. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-iostreams1.67.0 |
PackageSection | libs |
PackageVersion | 1.67.0-17+b1 |
SHA-1 | 063C9E554F23B18DAECAF9664AC9B60B1F03E71A |
SHA-256 | B25D6181FD884BCE97F75ACB32D4878D0D1BFECBFD43089C1540079C2F481752 |
Key | Value |
---|---|
FileSize | 228256 |
MD5 | D6EA0132397C9FECF3AD845102AAAAB5 |
PackageDescription | provides 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++. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-context1.67-dev |
PackageSection | libdevel |
PackageVersion | 1.67.0-17+b1 |
SHA-1 | 0E5E99A3EB78CAC59E33EEA6950D8A0F0B75A14C |
SHA-256 | D90ADF5EDC2A1CA3F6656C6AFFD86990D557D4F6C70F6426B5842A81F74DB50B |
Key | Value |
---|---|
FileSize | 355980 |
MD5 | AD8FDC460A344CE5505F852CC8D80025 |
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.67-dev |
PackageSection | libdevel |
PackageVersion | 1.67.0-17+b1 |
SHA-1 | 10E670A387DA5FAF119F06568F84AA8C22CA3E11 |
SHA-256 | 652DF273462FDB32106D1CBDD84F56E2051CE0607160572B28EDC496BB9327B3 |
Key | Value |
---|---|
FileSize | 225460 |
MD5 | 70CA82B03953B0636500ADE4096BF69B |
PackageDescription | atomic 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. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-atomic1.67-dev |
PackageSection | libdevel |
PackageVersion | 1.67.0-17+b1 |
SHA-1 | 18BB1ED80BC3D58AEC0515ED1A54D7DAC5B55F59 |
SHA-256 | 6BD156328B37EC145C4FD6CE76E2711CC77198E049BCBBCE1451B8F932B561D8 |
Key | Value |
---|---|
FileSize | 420716 |
MD5 | 8013FD027E7A4F2A9B34CA862418AA7B |
PackageDescription | C99/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). |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-wave1.67.0 |
PackageSection | libs |
PackageVersion | 1.67.0-17+b1 |
SHA-1 | 192990F93A1857D18EB466347117FF317B8E457D |
SHA-256 | EEFA666D029042504E4044B7C2D2628302E6A9E66E40244752108FB4CE96E36D |
Key | Value |
---|---|
FileSize | 251444 |
MD5 | 199BC132C6D2A97597161A5DDEDFB4D1 |
PackageDescription | C++ interface to the Message Passing Interface (MPI), Python Bindings 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. . This package provides Python Bindings to the C++ interface. |
PackageMaintainer | Debian Boost Team <team+boost@tracker.debian.org> |
PackageName | libboost-mpi-python1.67-dev |
PackageSection | libdevel |
PackageVersion | 1.67.0-17+b1 |
SHA-1 | 195FF1CA98FB25883A361C3E3BDF6D89E9F83780 |
SHA-256 | 2BABE8C9D3C9ABC3EF2EEB2ABFB2B840BA7256E95CD7A17D729F73858D11097C |