You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/09/02 15:27:38 UTC

[1/2] ignite git commit: Javadoc fix (GG-10706)

Repository: ignite
Updated Branches:
  refs/heads/master 9910b6f6b -> 9fe121cc4


Javadoc fix (GG-10706)


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/1225751c
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/1225751c
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/1225751c

Branch: refs/heads/master
Commit: 1225751cd1e21c13fb4eb158b1c31b75509462aa
Parents: 2cd3da2
Author: Anton Vinogradov <av...@apache.org>
Authored: Wed Sep 2 16:26:59 2015 +0300
Committer: Anton Vinogradov <av...@apache.org>
Committed: Wed Sep 2 16:26:59 2015 +0300

----------------------------------------------------------------------
 .../ignite/internal/processors/platform/cache/PlatformCache.java   | 2 +-
 parent/pom.xml                                                     | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/1225751c/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java b/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java
index a7c741e..69f2211 100644
--- a/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java
+++ b/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java
@@ -695,7 +695,7 @@ public class PlatformCache extends PlatformAbstractTarget {
 
     /**
      * Clears the contents of the cache, without notifying listeners or
-     * {@link javax.cache.integration.CacheWriter}s.
+     * {@ignitelink javax.cache.integration.CacheWriter}s.
      *
      * @throws IllegalStateException if the cache is closed.
      * @throws javax.cache.CacheException if there is a problem during the clear

http://git-wip-us.apache.org/repos/asf/ignite/blob/1225751c/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index 3556671..9423d33 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -42,6 +42,7 @@
         <doxygen.exec>doxygen</doxygen.exec>
         <git.exec>git</git.exec>
         <jetty.version>9.2.11.v20150529</jetty.version>
+        <javadoc.opts>-XDenableSunApiLintControl</javadoc.opts>
     </properties>
 
     <groupId>org.apache.ignite</groupId>


[2/2] ignite git commit: Merge remote-tracking branch 'origin/master'

Posted by sb...@apache.org.
Merge remote-tracking branch 'origin/master'


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/9fe121cc
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/9fe121cc
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/9fe121cc

Branch: refs/heads/master
Commit: 9fe121cc45584017aaeb720f4f1cd1c52ea7aba6
Parents: 1225751 9910b6f
Author: Anton Vinogradov <av...@apache.org>
Authored: Wed Sep 2 16:27:32 2015 +0300
Committer: Anton Vinogradov <av...@apache.org>
Committed: Wed Sep 2 16:27:32 2015 +0300

----------------------------------------------------------------------
 .../configuration/PlatformConfiguration.java    |   2 +-
 .../affinity/GridAffinityProcessor.java         |   4 +
 .../cache/store/CacheOsStoreManager.java        |  32 +-
 .../cache/store/CacheStoreManager.java          |  10 +
 .../store/GridCacheStoreManagerAdapter.java     |   5 -
 .../processors/platform/PlatformContext.java    |   4 +-
 .../processors/platform/PlatformException.java  |  71 +++
 .../platform/PlatformExtendedException.java     |  57 ++
 .../platform/PlatformNativeException.java       |  77 +++
 .../platform/PlatformNoCallbackException.java   |  50 ++
 .../platform/PlatformNoopProcessor.java         |  11 +-
 .../processors/platform/PlatformProcessor.java  |  10 +
 .../cache/store/PlatformCacheStore.java         |  25 +
 .../callback/PlatformCallbackGateway.java       |  10 +-
 .../internal/util/GridStripedSpinBusyLock.java  | 127 ++++
 .../CachePutAllFailoverAbstractTest.java        | 234 +++++++
 .../distributed/CachePutAllFailoverTxTest.java  |  30 +
 .../igfs/IgfsProcessorValidationSelfTest.java   |  26 +-
 ...processors.platform.PlatformBootstrapFactory |   2 +
 .../PlatformAbstractConfigurationClosure.java   |  61 ++
 .../platform/PlatformAbstractTarget.java        |  34 +-
 .../platform/PlatformConfigurationEx.java       |  48 ++
 .../platform/PlatformContextImpl.java           | 621 +++++++++++++++++++
 .../processors/platform/PlatformException.java  |  71 ---
 .../platform/PlatformExtendedException.java     |  39 --
 .../platform/PlatformNoCallbackException.java   |  50 --
 .../platform/PlatformProcessorImpl.java         | 360 +++++++++++
 .../platform/cache/PlatformCache.java           |  44 +-
 .../PlatformCachePartialUpdateException.java    |  24 +-
 .../cache/store/PlatformCacheStore.java         |  25 -
 .../platform/compute/PlatformAbstractTask.java  |   1 +
 .../compute/PlatformNativeException.java        |  77 ---
 .../platform/cpp/PlatformCppBootstrap.java      |  31 +
 .../cpp/PlatformCppBootstrapFactory.java        |  39 ++
 .../cpp/PlatformCppConfigurationClosure.java    |  99 +++
 .../cpp/PlatformCppConfigurationEx.java         |  82 +++
 .../datastreamer/PlatformDataStreamer.java      |   2 +-
 .../dotnet/PlatformDotNetBootstrap.java         |  31 +
 .../dotnet/PlatformDotNetBootstrapFactory.java  |  39 ++
 .../dotnet/PlatformDotNetCacheStore.java        | 497 +++++++++++++++
 .../PlatformDotNetConfigurationClosure.java     | 255 ++++++++
 .../dotnet/PlatformDotNetConfigurationEx.java   |  91 +++
 .../lifecycle/PlatformLifecycleBean.java        |   4 +-
 .../messaging/PlatformMessageFilterImpl.java    |   2 +-
 .../transactions/PlatformTransactions.java      |   2 +-
 .../platform/utils/PlatformFutureUtils.java     |  82 ++-
 .../platform/utils/PlatformUtils.java           |  16 +-
 .../platform/cpp/PlatformCppConfiguration.java  |  47 ++
 .../dotnet/PlatformDotNetCacheStoreFactory.java | 139 +++++
 .../dotnet/PlatformDotNetConfiguration.java     | 119 ++++
 .../dotnet/PlatformDotNetLifecycleBean.java     | 109 ++++
 .../PlatformDotNetPortableConfiguration.java    | 228 +++++++
 ...PlatformDotNetPortableTypeConfiguration.java | 248 ++++++++
 parent/pom.xml                                  |   6 +-
 54 files changed, 4036 insertions(+), 374 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/9fe121cc/modules/platform/src/main/java/org/apache/ignite/internal/processors/platform/cache/PlatformCache.java
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/ignite/blob/9fe121cc/parent/pom.xml
----------------------------------------------------------------------