Key | Value |
---|---|
CRC32 | CF0C4CB4 |
FileName | snap-hashlookup-import/usr/share/doc/libboost-thread1.61.0/copyright |
FileSize | 7363 |
MD5 | 6C7DC80F142C405194DDA249FF6E9A11 |
OpSystemCode | {'MfgCode': '1006', 'OpSystemCode': '362', 'OpSystemName': 'TBD', 'OpSystemVersion': 'none'} |
ProductCode | {'ApplicationType': 'Operating System', 'Language': 'English', 'MfgCode': '80428', 'OpSystemCode': '86', 'ProductCode': '181087', 'ProductName': 'Ubuntu MATE 64-bit', 'ProductVersion': '16.10'} |
RDS:package_id | 182052 |
SHA-1 | 04EA7BB4716DC766964AD635E107F7719B2BDBE8 |
SHA-256 | 84D5960C6A0889B230809D9647A77EFB59A329D03BA39367B752CE7E9A5556AB |
SHA-512 | D171C8906236439252069C9C1B48A4B16FE639D7FFE2A5F6C770C72B0E02B56E74853EE1F019F90B334D1D931F9B8E62C2C0F716092994E76ABFF921D8BDAB6D |
SSDEEP | 192:K6DeOFQH+bZ3xdEr2+3PEYrsiyw5pVcJDfD:JDnFrbZ3xd1qsYrsip538 |
SpecialCode | |
TLSH | T1A2E1A82F3F54073343D283A65A4AB9C9F30E851EB7365941B81DD15C273B8AD83F92A5 |
db | nsrl_modern_rds |
insert-timestamp | 1728288229.8331394 |
mimetype | text/plain |
source | snap:7f5wElqT5hNH9C2i0SLYywiQB3qxphxt_5 |
hashlookup:parent-total | 1137 |
hashlookup:trust | 100 |
The searched file hash is included in 1137 parent files which include package known and seen by metalookup. A sample is included below:
Key | Value |
---|---|
FileSize | 46334 |
MD5 | 9134A521220B9C010475734046719D1D |
PackageDescription | portable C++ multi-threading This package forms part of the Boost C++ Libraries collection. . Toolkit for writing C++ programs that execute as multiple, asynchronous, independent, threads-of-execution. Each thread has its own machine state including program instruction counter and registers. |
PackageMaintainer | Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> |
PackageName | libboost-thread1.61.0 |
PackageSection | libs |
PackageVersion | 1.61.0+dfsg-3build1 |
SHA-1 | 00077B649BD7A42F19BA3F10C3D24700F7E98057 |
SHA-256 | 32125C470AE0D09D4B6FFC65C4AB957C8D3807ECE963E327F9100BE55156D61D |
Key | Value |
---|---|
FileSize | 137366 |
MD5 | 74D5EC49F7F1C103E61A11DEFEE6AE9E |
PackageDescription | Boost.Python Library development files This package forms part of the Boost C++ Libraries collection. . The Boost Python Library is used to quickly and easily export a C++ library to Python such that the Python interface is very similar to the C++ interface. It is designed to be minimally intrusive on your C++ design. In most cases, you should not have to alter your C++ classes in any way in order to use them with Boost.Python. The system should simply "reflect" your C++ classes and functions into Python. The major features of Boost.Python include support for: Subclassing extension types in Python, Overriding virtual functions in Python, Member function Overloading, Automatic wrapping of numeric operators among others. . This package also contains the pyste Boost.Python code generator that allows the user to specify classes and functions to be exported using a simple interface file, which following the Boost.Python's philosophy, is simple Python code. . This package allows development of a Python interface for all current versions of Python in Debian. Code using this library will need also one of the Python development packages. |
PackageMaintainer | Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> |
PackageName | libboost-python1.61-dev |
PackageSection | libdevel |
PackageVersion | 1.61.0+dfsg-2.1 |
SHA-1 | 00FA9ABBD008205D64F6775E17B009178895EBDC |
SHA-256 | B12C3F9FA6BBC30774E27A8CBBB78AD0CD079CBD3559A515AF356656C75A59C5 |
Key | Value |
---|---|
FileSize | 19558 |
MD5 | 80D461D7EAFFB1785C6F0F25E26D6694 |
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 | Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> |
PackageName | libboost-coroutine1.61.0 |
PackageSection | libs |
PackageVersion | 1.61.0+dfsg-2.1 |
SHA-1 | 013114CFD0EE2CB5C0FF201231DEBE589192D6E7 |
SHA-256 | A58DBB9A8A16072D4089400B5F8D07D1998019864F422BE0766372BF967ACD9E |
Key | Value |
---|---|
FileSize | 12122 |
MD5 | 4B27C632040C86D554B95D66B2B41CCF |
PackageDescription | C++ 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. |
PackageMaintainer | Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> |
PackageName | libboost-chrono1.61-dev |
PackageSection | libdevel |
PackageVersion | 1.61.0+dfsg-3build1 |
SHA-1 | 01549F8ACB1C5C4F7EB9038AAE163B7DE9947A27 |
SHA-256 | 7EB3937C5C69E76CB45B4A133450404DB2DFE8DA8D4D0F15A97FC8A7C66761B8 |
Key | Value |
---|---|
FileSize | 17266 |
MD5 | 8CFF87169D00F3B41DEBF75E77DC6459 |
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 | Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> |
PackageName | libboost-type-erasure1.61-dev |
PackageSection | libdevel |
PackageVersion | 1.61.0+dfsg-2.1 |
SHA-1 | 015CFC3964655DA9D87DA0B8A4FA68165DC986AC |
SHA-256 | DEC31AABFCF9DE8665C87FECF5DC5226A5E8A5DC102BC33F69FFDAFF7155A734 |
Key | Value |
---|---|
FileSize | 18246 |
MD5 | AF983D52C6834C93978F63C521C4C1BB |
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 | Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> |
PackageName | libboost-type-erasure1.61.0 |
PackageSection | libs |
PackageVersion | 1.61.0+dfsg-3build1 |
SHA-1 | 019A72E472312071A501FFAD59045727853B739F |
SHA-256 | 307FC9427CD9DFDED2B00298B1C4364008075D81DFC3B0F39F80DE7778805BBE |
Key | Value |
---|---|
FileSize | 31504 |
MD5 | 5268A1F955AC5AF2B9BBA43E77674F5D |
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 | Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> |
PackageName | libboost-iostreams1.60.0 |
PackageSection | libs |
PackageVersion | 1.60.0+dfsg-6 |
SHA-1 | 01C99685739C1CE44DBE9718DB684AB99155E561 |
SHA-256 | A441C389D9113C36F56A19ABE43D5D9248F7926AB74C9EEAA6C7B0A211653BBF |
Key | Value |
---|---|
FileSize | 10758 |
MD5 | A45FD3E896BD63A5515ACECBA001A61A |
PackageDescription | C++ 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. |
PackageMaintainer | Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> |
PackageName | libboost-timer1.60.0 |
PackageSection | libs |
PackageVersion | 1.60.0+dfsg-6 |
SHA-1 | 02A97105473C38EE58FF45E13C734BCD52FD6364 |
SHA-256 | 82C30A5B012E5C96799DCF55C8583C3690177D4DB2DE4FAA3108E7AA1E1F79E7 |
Key | Value |
---|---|
FileName | 11612 |
FileSize | 99552 |
MD5 | 6954A849B16CFC438F01AFD0F5CFD068 |
PackageDescription | generic 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. |
PackageMaintainer | Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> |
PackageName | libboost-graph1.61.0 |
PackageSection | libs |
PackageVersion | 1.61.0+dfsg-3build1 |
RDS:package_id | 182052 |
SHA-1 | 02D5BCB2C9065AF4455C382425291DBDC5B82BB6 |
SHA-256 | 9ED58D219E66D5D3EE5DF6DCE8480274D51132646B3B919079822F4B58A77103 |
insert-timestamp | 1679408381.9436996 |
source | RDS.db |
Key | Value |
---|---|
FileSize | 28730 |
MD5 | CC4386D7B620B3AE81652189C03D1B8D |
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 | Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com> |
PackageName | libboost-iostreams1.60.0 |
PackageSection | libs |
PackageVersion | 1.60.0+dfsg-6 |
SHA-1 | 032A6FAECA3D99F9A1F5ABB554D26E13421135D1 |
SHA-256 | 04A42B203FD84B461D7F0585EF29F30ECAA823F9C6274DE8DB2679AB17FDDF4A |