- Dec 30, 2019
-
-
Lukasz Dorau authored
install-pmdk.sh script requires ndctl and daxctl packages to be installed when installing PMDK from packages.
-
Szymon Romik authored
Segment vector doc fixes
-
- Dec 23, 2019
-
-
Igor Chorazewicz authored
-
Igor Chorazewicz authored
After moving out of experimental, we oficially only support our own 3 policies. This patch removes information about specifics of those policies - this is something which might change.
-
Igor Chorążewicz authored
Print found version of clang-format in error message
-
Lukasz Dorau authored
-
Szymon Romik authored
Move segment_vector out of experimental
-
- Dec 20, 2019
-
-
Igor Chorążewicz authored
Set the commit range in case of GitHub Actions
-
- Dec 19, 2019
-
-
Lukasz Dorau authored
It fixes rebuilding the image in case of GitHub Actions
-
Igor Chorazewicz authored
Disabling it is not neccesary.
-
Lukasz Dorau authored
Change the default Policy of segment_vector from exponential_size_array_policy to exponential_size_vector_policy. enumerable_thread_specific has to have 'exponential_size_array_policy' as Storage, because its storage must not do reallocations.
-
- Dec 18, 2019
-
-
Lukasz Dorau authored
-
Lukasz Dorau authored
-
Lukasz Dorau authored
-
Lukasz Dorau authored
-
Lukasz Dorau authored
-
Lukasz Dorau authored
-
Lukasz Dorau authored
-
- Dec 17, 2019
-
-
Igor Chorążewicz authored
enumerable_thread_specific: fix
-
- Dec 16, 2019
-
-
vtune authored
fixed datarace and test added
-
- Dec 12, 2019
-
-
Igor Chorążewicz authored
Add variable to run long tests
-
Szymon Romik authored
Enumerable_thread_specific fix
-
Szymon Romik authored
Add workflow file for GitHub actions
-
Szymon Romik authored
Segment vector fixes
-
Lukasz Dorau authored
If the 'TESTS_LONG' environment variable is set to ON, the long tests will be run (the default value is OFF).
-
- Dec 11, 2019
-
-
Szymon Romik authored
String find
-
vtune authored
Comment added with explanation to "upgrade_to_writer" in "local" method
-
- Dec 10, 2019
-
-
Igor Chorążewicz authored
Segment_vector fix
-
Pawel Karczewski authored
-
Pawel Karczewski authored
-
Pawel Karczewski authored
-
Pawel Karczewski authored
-
Pawel Karczewski authored
-
Pawel Karczewski authored
-
Pawel Karczewski authored
-
Pawel Karczewski authored
Separate implementation for find(CharT ch, size_type pos) overload is redundant and may be changed to just calling basic implementation with specified parameters
-
Pawel Karczewski authored
Separate implementation for rfind(CharT ch, size_type pos) overload is redundant and may be changed to just calling basic implementation with specified parameters
-
Pawel Karczewski authored
Recursion on a long strings may cause stack overflow. Previous implementation was tricky, as at first glance rfind( CharT ch, size_type pos = npos ) overload is called and everything is ok, but it calls rfind(const CharT *s, size_type pos, size_type count) under the hood.
-
Pawel Karczewski authored
For consistency use std::distance for pointer arithmetic in every overload of find
-
Pawel Karczewski authored
-