This is an automated email from the ASF dual-hosted git repository.
leerho pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/datasketches-memory17.git
from a44d797 More cleanup.
new b11517c Remove unused SuppressWarnings
new e3ce13b Remove more SuppressWarnings
new 742b581 Wrap ResourceScope in MemoryScope.
new 98377a9 Changing ResourceScope to MemoryScope everywhere.
new 7990943 Remove need for transitive requires in module-info.
new dc4bcd0 Add compile.sh, testng.xml, updates to toolchains,
BaseStateTest.java, pom.xml, README.md
new 42704d4 Updates to toolchains.xml, BaseStateTest.java, pom.xml,
README.md
new 895f2d5 Compile & test works from both Eclipse and Maven now, but not
from the command line trying to run testNG directly from the CL.
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/.toolchains.xml | 28 ++--
README.md | 18 +++
compile.sh | 59 ++++++++
pom.xml | 54 +++++---
src/main/java/module-info.java | 2 +-
.../org/apache/datasketches/memory/BaseState.java | 21 +--
.../org/apache/datasketches/memory/Memory.java | 15 +-
.../apache/datasketches/memory/MemoryScope.java | 134 ++++++++++++++++++
.../apache/datasketches/memory/MurmurHash3.java | 17 ---
.../apache/datasketches/memory/WritableMemory.java | 33 +++--
.../memory/internal/BaseStateImpl.java | 19 +--
.../memory/internal/BaseWritableBufferImpl.java | 10 +-
.../memory/internal/BaseWritableMemoryImpl.java | 75 +++++++---
.../memory/internal/CompareAndCopy.java | 1 -
.../memory/internal/MemoryScopeImpl.java | 154 +++++++++++++++++++++
.../memory/internal/NativeWritableBufferImpl.java | 3 +-
.../memory/internal/NativeWritableMemoryImpl.java | 3 +-
.../internal/NonNativeWritableBufferImpl.java | 3 +-
.../internal/NonNativeWritableMemoryImpl.java | 3 +-
.../apache/datasketches/memory/internal/Util.java | 1 -
.../internal/AllocateDirectMapMemoryTest.java | 39 +++---
.../memory/internal/AllocateDirectMemoryTest.java | 15 +-
.../AllocateDirectWritableMapMemoryTest.java | 17 ++-
.../memory/internal/BaseBufferTest.java | 5 +-
.../memory/internal/BaseStateTest.java | 14 +-
.../memory/internal/BufferInvariantsTest.java | 7 +-
.../datasketches/memory/internal/BufferTest.java | 9 +-
.../memory/internal/CommonBufferTest.java | 13 +-
.../memory/internal/CommonMemoryTest.java | 15 +-
.../memory/internal/CopyMemoryOverlapTest.java | 7 +-
.../memory/internal/CopyMemoryTest.java | 5 +-
.../internal/ExampleMemoryRequestServerTest.java | 7 +-
.../memory/internal/IgnoredArrayOverflowTest.java | 5 +-
.../datasketches/memory/internal/LeafImplTest.java | 11 +-
.../memory/internal/MemoryReadWriteSafetyTest.java | 9 +-
.../datasketches/memory/internal/MemoryTest.java | 13 +-
.../memory/internal/MemoryWriteToTest.java | 5 +-
.../memory/internal/MurmurHash3v3Test.java | 20 +--
.../internal/NativeWritableBufferImplTest.java | 15 +-
.../internal/NativeWritableMemoryImplTest.java | 36 ++---
.../memory/internal/SpecificLeafTest.java | 7 +-
.../memory/internal/WritableDirectCopyTest.java | 23 ++-
.../memory/internal/ZeroCapacityTest.java | 5 +-
testng.xml | 62 +++++++++
44 files changed, 715 insertions(+), 302 deletions(-)
create mode 100755 compile.sh
create mode 100644
src/main/java/org/apache/datasketches/memory/MemoryScope.java
create mode 100644
src/main/java/org/apache/datasketches/memory/internal/MemoryScopeImpl.java
create mode 100644 testng.xml
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]