Merge remote-tracking branch 'remotes/origin/master' into ignite-1124
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/5665a7d6 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/5665a7d6 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/5665a7d6 Branch: refs/heads/ignite-1124 Commit: 5665a7d6e8991c179725df3da4f642996bf918cb Parents: 4109bf4 7c351bf Author: sboikov <[email protected]> Authored: Wed Aug 26 12:27:28 2015 +0300 Committer: sboikov <[email protected]> Committed: Wed Aug 26 12:27:28 2015 +0300 ---------------------------------------------------------------------- .../internal/processors/igfs/IgfsProcessor.java | 8 - .../IgniteCacheManyAsyncOperationsTest.java | 107 +++ .../processors/igfs/IgfsAbstractSelfTest.java | 34 +- .../igfs/IgfsBackupFailoverSelfTest.java | 488 +++++++++++ .../igfs/IgfsBackupsDualAsyncSelfTest.java | 40 + .../igfs/IgfsBackupsDualSyncSelfTest.java | 40 + .../igfs/IgfsBackupsPrimarySelfTest.java | 40 + .../ignite/testsuites/IgniteIgfsTestSuite.java | 7 + .../Apache.Ignite.Core.csproj | 3 + .../Apache.Ignite.Core/Impl/Handle/Handle.cs | 69 ++ .../Impl/Handle/HandleRegistry.cs | 340 ++++++++ .../Apache.Ignite.Core/Impl/Handle/IHandle.cs | 35 + .../internal/platform/PlatformBootstrap.java | 36 - .../platform/PlatformBootstrapFactory.java | 37 - .../internal/platform/PlatformException.java | 71 -- .../internal/platform/PlatformIgnition.java | 187 ---- .../platform/PlatformNoCallbackException.java | 50 -- .../callback/PlatformCallbackGateway.java | 869 ------------------- .../callback/PlatformCallbackUtils.java | 468 ---------- .../platform/memory/PlatformAbstractMemory.java | 121 --- .../PlatformBigEndianInputStreamImpl.java | 126 --- .../PlatformBigEndianOutputStreamImpl.java | 162 ---- .../platform/memory/PlatformExternalMemory.java | 55 -- .../platform/memory/PlatformInputStream.java | 30 - .../memory/PlatformInputStreamImpl.java | 323 ------- .../platform/memory/PlatformMemory.java | 77 -- .../platform/memory/PlatformMemoryManager.java | 46 - .../memory/PlatformMemoryManagerImpl.java | 83 -- .../platform/memory/PlatformMemoryPool.java | 133 --- .../platform/memory/PlatformMemoryUtils.java | 468 ---------- .../platform/memory/PlatformOutputStream.java | 30 - .../memory/PlatformOutputStreamImpl.java | 259 ------ .../platform/memory/PlatformPooledMemory.java | 63 -- .../platform/memory/PlatformUnpooledMemory.java | 51 -- .../platform/utils/PlatformReaderBiClosure.java | 34 - .../platform/utils/PlatformReaderClosure.java | 34 - .../platform/utils/PlatformWriterBiClosure.java | 34 - .../platform/utils/PlatformWriterClosure.java | 33 - .../platform/PlatformAbstractBootstrap.java | 47 + .../processors/platform/PlatformBootstrap.java | 36 + .../platform/PlatformBootstrapFactory.java | 37 + .../processors/platform/PlatformContext.java | 107 +++ .../processors/platform/PlatformException.java | 71 ++ .../processors/platform/PlatformIgnition.java | 186 ++++ .../platform/PlatformNoCallbackException.java | 50 ++ .../callback/PlatformCallbackGateway.java | 869 +++++++++++++++++++ .../callback/PlatformCallbackUtils.java | 468 ++++++++++ .../platform/memory/PlatformAbstractMemory.java | 121 +++ .../PlatformBigEndianInputStreamImpl.java | 126 +++ .../PlatformBigEndianOutputStreamImpl.java | 162 ++++ .../platform/memory/PlatformExternalMemory.java | 55 ++ .../platform/memory/PlatformInputStream.java | 30 + .../memory/PlatformInputStreamImpl.java | 323 +++++++ .../platform/memory/PlatformMemory.java | 77 ++ .../platform/memory/PlatformMemoryManager.java | 46 + .../memory/PlatformMemoryManagerImpl.java | 83 ++ .../platform/memory/PlatformMemoryPool.java | 133 +++ .../platform/memory/PlatformMemoryUtils.java | 468 ++++++++++ .../platform/memory/PlatformOutputStream.java | 30 + .../memory/PlatformOutputStreamImpl.java | 259 ++++++ .../platform/memory/PlatformPooledMemory.java | 63 ++ .../platform/memory/PlatformUnpooledMemory.java | 51 ++ .../platform/utils/PlatformReaderBiClosure.java | 34 + .../platform/utils/PlatformReaderClosure.java | 34 + .../platform/utils/PlatformWriterBiClosure.java | 34 + .../platform/utils/PlatformWriterClosure.java | 33 + parent/pom.xml | 1 + 67 files changed, 5231 insertions(+), 3894 deletions(-) ----------------------------------------------------------------------
