Result for 9F33FC6A31DF5F6F47654D6D262B2BFE6ABB8E0F

Query result

Key Value
FileName./usr/share/doc/libboost1.74-tools-dev/changelog.Debian.armel.gz
FileSize213
MD5F25C10336B357345A86B223EDC0E6012
SHA-19F33FC6A31DF5F6F47654D6D262B2BFE6ABB8E0F
SHA-256C31E97086D3D101B6D123D80FC522EAD03C3AAA02ECD71B3A72F5237D0DB5874
SSDEEP6:Xt9vYdXVpeknSS74lZWZxbby+iqcNOOwA7MkX2ZCr:XfYdFwknSS7cWZx3fiROO1gzZw
TLSHT134D0230949C75031C665F43013DF1DAAE5751032DD465F288726546ADCF42544D71385
hashlookup:parent-total66
hashlookup:trust100

Network graph view

Parents (Total: 66)

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
FileSize282612
MD50C8C0698CB0AD8E29016AC24A577EA2B
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.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-graph-parallel1.74.0
PackageSectionlibs
PackageVersion1.74.0-3+b1
SHA-10AB40F211E8D1816110A37BE29FA96C12F98E84E
SHA-256EA3A3EA5D95386B3B0D3184DBF131952A0044A01D89FE5501882583367EE9ECD
Key Value
FileSize247904
MD58849E6BC80DB709B86DAF7552CD73F23
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 <team+boost@tracker.debian.org>
PackageNamelibboost-chrono1.74.0
PackageSectionlibs
PackageVersion1.74.0-3+b1
SHA-10CFF885E13BAAA4B9D3774DB3C3B6240E3EB92D1
SHA-25688A78303E13D267CC8AAF44398592118F2A88CD95663FBAFA0347B13BF5A64F9
Key Value
FileSize241096
MD51515BB498C1CA73A71E1C3793CAF8057
PackageDescriptionlibrary 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.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-exception1.74-dev
PackageSectionlibdevel
PackageVersion1.74.0-3+b1
SHA-11859CDDB209A6588A3E681500288C98960FCC583
SHA-256B5F38F10706F93E2723CE95F09F74DDABBC44A52CC708326259B728D5BB93456
Key Value
FileSize244824
MD5157F92CBF653A15F4DCC2947CE5ED647
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.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-atomic1.74-dev
PackageSectionlibdevel
PackageVersion1.74.0-3+b1
SHA-11B35BEE797827FC2E0E73E4EE91FFEA452930099
SHA-2560CF3037E1CAF499186B1157FE3A680F5F73AE1DE5E44AFFA199778FEDAC04A52
Key Value
FileSize261352
MD552A3D1F20B637E0D7B8FC40F9D49B0A6
PackageDescriptioncooperatively-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.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-fiber1.74.0
PackageSectionlibs
PackageVersion1.74.0-3+b1
SHA-11D0D3283EB69DF66CFD0D2B658DD873D5C5A4F62
SHA-256650B5D6855A9E4F56F6BAB1A0FD22BBEDEC40477D7FFFD25D8265BE66422BFCA
Key Value
FileSize245640
MD5DC24D77936B2EE3B7A79F4DD136C2584
PackageDescriptionC++ wall clock and CPU process timers This package forms part of the Boost C++ Libraries collection. . Portable C++ timer classes that answer the question "How long does my C++ code take to run?" with as little as one #include and one additional line of code. . Class cpu_timer measures wall clock time, user CPU process time, and system CPU process time. Class auto_cpu_timer is a refinement of cpu_timer that automatically reports the elapsed times when an auto_cpu_timer object is destroyed.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-timer1.74.0
PackageSectionlibs
PackageVersion1.74.0-3+b1
SHA-11E30E8C43C6D35D69A510AB12D539AF7A2656BD4
SHA-256798F7866BC5B985FB7C70C5C2939834676206844504336BB3EBF8E440A4AAB7D
Key Value
FileSize1287892
MD57341D81261FF17C60E836F395F636813
PackageDescriptionBoost C++ Libraries development tools The Boost web site provides free, peer-reviewed, portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. One goal is to establish "existing practice" and provide reference implementations so that the Boost libraries are suitable for eventual standardization. Some of the libraries have already been proposed for inclusion in the C++ Standards Committee's upcoming C++ Standard Library Technical Report. . This package provides the auxiliary tools bjam, Boost.Build, bcp, inspect, boostbook and quickbook.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost1.74-tools-dev
PackageSectionlibdevel
PackageVersion1.74.0-3+b1
SHA-11EF0106FEA2D750F6A2586F5A4EAF28300D9D89A
SHA-256F6EA48BB16302D5ABF60449955A67E1F1F37C8679D0B988E097973527C9535F8
Key Value
FileSize306676
MD5EFCBFB7125A91A0FD62E971DD0988BED
PackageDescriptiongeneric graph components and algorithms in C++ This package forms part of the Boost C++ Libraries collection. . Graphs are mathematical abstractions that are useful for solving many types of problems in computer science. Consequently, these abstractions must also be represented in computer programs. A standardized generic interface for traversing graphs is of utmost importance to encourage reuse of graph algorithms and data structures.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-graph1.74.0
PackageSectionlibs
PackageVersion1.74.0-3+b1
SHA-1223CA95FF7CCDDC284BF0F41A5904C299A946976
SHA-2569504FEE27C5BB31449B8BAC014E6F02AEE41681F450A42444E746E19CC7F2EBE
Key Value
FileSize242632
MD5E6BAC2B1B25B16870A07987FA46DDB0F
PackageDescriptionStandard library functions with UTF-8 API on Windows This package forms part of the Boost C++ Libraries collection. . The library provides an implementation of standard C and C++ library functions which are UTF-8 aware on Windows without requiring to use the Wipe API. . On POSIX platforms, where UTF-8 is already commonly used, the calls in Nowide just alias to their standard counterparts.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-nowide1.74.0
PackageSectionlibs
PackageVersion1.74.0-3+b1
SHA-1232AA5EFC1FCD47A5182EFEB085E10D95DA883C8
SHA-2565CCED7DF85BF63DE7730C71BAB97B5E86DDF7883D8D9EA1569B714929BF3B6C2
Key Value
FileSize251124
MD5D48793F2329820CFA70CA45EC5DC5185
PackageDescriptionprovides 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.
PackageMaintainerDebian Boost Team <team+boost@tracker.debian.org>
PackageNamelibboost-coroutine1.74.0
PackageSectionlibs
PackageVersion1.74.0-3+b1
SHA-128E62207C987CED6164162D6B87F6EA527D4DEAA
SHA-2567157243E160D0CC513AD7914FC2B935136CFDA90FAB8319CBE9EF21D6FA34E54