You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2015/12/02 04:25:12 UTC

[1/2] ignite git commit: IGNITE-843 Minor fixes in comments.

Repository: ignite
Updated Branches:
  refs/heads/ignite-843-rc2 78f9e8fcf -> 680ce88b5


IGNITE-843 Minor fixes in comments.


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

Branch: refs/heads/ignite-843-rc2
Commit: 00a9a09fe814176dd7e3c53d440aae0404be9e7f
Parents: 88ceba9
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Wed Dec 2 10:25:02 2015 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Wed Dec 2 10:25:15 2015 +0700

----------------------------------------------------------------------
 modules/control-center-web/src/main/js/gulpfile.js/index.js | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/00a9a09f/modules/control-center-web/src/main/js/gulpfile.js/index.js
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/gulpfile.js/index.js b/modules/control-center-web/src/main/js/gulpfile.js/index.js
index 79c0847..751b0ea 100644
--- a/modules/control-center-web/src/main/js/gulpfile.js/index.js
+++ b/modules/control-center-web/src/main/js/gulpfile.js/index.js
@@ -18,9 +18,11 @@
 var gulp = require('gulp');
 var requireDir = require('require-dir');
 
-// Require all tasks in gulpfile.js/tasks, including subfolders
+// Require all tasks in gulpfile.js/tasks, including subfolders.
 requireDir('./tasks', { recurse: true });
 
-// Summary tasks
+// Default no-arg task.
 gulp.task('default', ['build']);
+
+// Build + watch + connect task.
 gulp.task('watch', ['build', 'bundle:watch', 'sass:watch', 'jade:watch', 'copy:watch', 'connect']);


[2/2] ignite git commit: Merge remote-tracking branch 'origin/ignite-843-rc2' into ignite-843-rc2

Posted by ak...@apache.org.
Merge remote-tracking branch 'origin/ignite-843-rc2' into ignite-843-rc2


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

Branch: refs/heads/ignite-843-rc2
Commit: 680ce88b527cfd0683640e6eb2c1c51a0986a859
Parents: 00a9a09 78f9e8f
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Wed Dec 2 10:25:50 2015 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Wed Dec 2 10:25:50 2015 +0700

----------------------------------------------------------------------
 RELEASE_NOTES.txt                               |   2 +
 examples/pom.xml                                |   5 +-
 examples/schema-import/pom.xml                  |   2 +-
 modules/aop/pom.xml                             |   2 +-
 modules/apache-license-gen/pom.xml              |   2 +-
 modules/aws/pom.xml                             |   2 +-
 modules/camel/pom.xml                           |   5 +-
 .../ignite/stream/camel/package-info.java       |  21 +++
 .../ignite/stream/camel/package-info.java       |  21 +++
 modules/clients/pom.xml                         |   2 +-
 modules/cloud/pom.xml                           |   2 +-
 modules/codegen/pom.xml                         |   2 +-
 .../control-center-web/src/main/js/app/index.js |   2 +-
 .../app/modules/states/password-reset/index.js  |  40 ----
 .../js/app/modules/states/password/index.js     |  40 ++++
 modules/core/pom.xml                            |   2 +-
 .../org/apache/ignite/internal/IgnitionEx.java  |   4 +-
 .../GridDeploymentPerVersionStore.java          |  12 +-
 .../internal/portable/BinaryFieldAccessor.java  |  83 +++++++--
 .../internal/portable/BinaryReaderExImpl.java   |  11 ++
 .../CacheDefaultBinaryAffinityKeyMapper.java    |  19 +-
 .../processors/cache/GridCacheAdapter.java      |   8 +-
 .../processors/cache/GridCacheContext.java      |  37 ++--
 .../GridCacheDefaultAffinityKeyMapper.java      |   9 +-
 .../processors/cache/GridCacheMapEntry.java     |   6 +-
 .../GridCachePartitionExchangeManager.java      |  23 +--
 .../processors/cache/GridCachePreloader.java    |   5 +
 .../cache/GridCachePreloaderAdapter.java        |   7 +-
 .../processors/cache/GridCacheProcessor.java    |  14 +-
 .../processors/cache/GridCacheProxyImpl.java    |  12 ++
 .../processors/cache/IgniteCacheProxy.java      |  24 +++
 .../processors/cache/IgniteInternalCache.java   |   9 +
 .../distributed/dht/GridDhtLockFuture.java      |  17 +-
 .../dht/atomic/GridDhtAtomicCache.java          |   4 +-
 .../dht/atomic/GridDhtAtomicUpdateRequest.java  |   4 +
 .../dht/preloader/GridDhtPartitionDemander.java |  32 ++--
 .../dht/preloader/GridDhtPreloader.java         |  27 +++
 .../distributed/near/GridNearGetFuture.java     |  12 +-
 .../CacheObjectBinaryProcessorImpl.java         |   7 +-
 .../cache/transactions/IgniteTxHandler.java     |   2 +-
 .../handlers/query/QueryCommandHandler.java     |   2 +-
 .../ignite/internal/util/IgniteUtils.java       |   8 +
 .../communication/tcp/TcpCommunicationSpi.java  |  18 +-
 .../spi/discovery/tcp/TcpDiscoverySpi.java      |   2 -
 .../core/src/main/resources/ignite.properties   |   2 +-
 .../portable/BinaryMarshallerSelfTest.java      | 186 ++++++++++++++++---
 .../CachePutEventListenerErrorSelfTest.java     |  35 ++--
 ...cheAbstractFullApiMultithreadedSelfTest.java |   9 +-
 .../cache/GridCacheAbstractFullApiSelfTest.java |   2 -
 .../cache/GridCacheClearSelfTest.java           |   9 +-
 ...inodeUpdateNearEnabledNoBackupsSelfTest.java |   9 +-
 .../cache/IgniteCacheAbstractTest.java          |   3 +
 .../IgniteCacheStoreValueAbstractTest.java      | 111 ++++++-----
 .../cache/IgniteCacheTxPreloadNoWriteTest.java  |   2 +-
 ...eAbstractDataStructuresFailoverSelfTest.java |  32 ++--
 ...idCacheNearOnlyMultiNodeFullApiSelfTest.java |   3 +-
 ...eRebalancingUnmarshallingFailedSelfTest.java |  13 +-
 .../GridCacheLocalIsolatedNodesSelfTest.java    |   6 +-
 .../cache/GridCacheCommandHandlerSelfTest.java  |   7 +-
 .../internal/util/nio/GridNioSelfTest.java      |  69 +++----
 .../tcp/IgniteCacheSslStartStopSelfTest.java    |   2 +-
 ...ObjectsCacheDataStructuresSelfTestSuite.java |   4 +
 ...BinaryObjectsCacheExpiryPolicyTestSuite.java |   4 +
 ...gniteBinaryObjectsCacheRestartTestSuite.java |   4 +
 .../IgniteBinaryObjectsCacheTestSuite2.java     |   4 +
 .../IgniteBinaryObjectsCacheTestSuite3.java     |   4 +
 .../IgniteBinaryObjectsCacheTestSuite4.java     |   4 +
 ...IgniteBinaryObjectsComputeGridTestSuite.java |   4 +
 .../IgnitePortableCacheTestSuite.java           |   1 -
 modules/extdata/p2p/pom.xml                     |   2 +-
 .../extdata/uri/modules/uri-dependency/pom.xml  |   2 +-
 modules/extdata/uri/pom.xml                     |   4 +-
 modules/flume/pom.xml                           |   5 +-
 .../ignite/stream/flume/package-info.java       |  21 +++
 .../ignite/stream/flume/package-info.java       |  21 +++
 modules/gce/pom.xml                             |   2 +-
 modules/geospatial/pom.xml                      |   2 +-
 modules/hadoop/pom.xml                          |   2 +-
 modules/hibernate/pom.xml                       |   2 +-
 modules/indexing/pom.xml                        |   2 +-
 modules/jcl/pom.xml                             |   2 +-
 modules/jms11/pom.xml                           |   2 +-
 .../ignite/stream/jms11/package-info.java       |  21 +++
 .../ignite/stream/jms11/package-info.java       |  21 +++
 modules/jta/pom.xml                             |   2 +-
 modules/kafka/pom.xml                           |   2 +-
 .../ignite/stream/kafka/package-info.java       |  21 +++
 .../ignite/stream/kafka/package-info.java       |  21 +++
 modules/log4j/pom.xml                           |   2 +-
 modules/log4j2/pom.xml                          |   2 +-
 modules/mesos/pom.xml                           |   2 +-
 modules/mqtt/pom.xml                            |   5 +-
 .../apache/ignite/stream/mqtt/package-info.java |  21 +++
 .../apache/ignite/stream/mqtt/package-info.java |  21 +++
 modules/platforms/cpp/common/configure.ac       |   2 +-
 modules/platforms/cpp/core-test/configure.ac    |   2 +-
 modules/platforms/cpp/core/configure.ac         |   2 +-
 modules/platforms/cpp/examples/configure.ac     |   2 +-
 modules/platforms/cpp/ignite/configure.ac       |   2 +-
 .../Properties/AssemblyInfo.cs                  |   4 +-
 .../Properties/AssemblyInfo.cs                  |  12 +-
 .../Properties/AssemblyInfo.cs                  |   4 +-
 .../Properties/AssemblyInfo.cs                  |   6 +-
 .../Apache.Ignite/Properties/AssemblyInfo.cs    |   4 +-
 .../Properties/AssemblyInfo.cs                  |   4 +-
 .../Properties/AssemblyInfo.cs                  |   4 +-
 modules/rest-http/pom.xml                       |   2 +-
 modules/scalar-2.10/pom.xml                     |   2 +-
 modules/scalar/pom.xml                          |   2 +-
 modules/schedule/pom.xml                        |   2 +-
 modules/schema-import/pom.xml                   |   2 +-
 modules/slf4j/pom.xml                           |   2 +-
 modules/spark-2.10/pom.xml                      |   2 +-
 modules/spark/pom.xml                           |   2 +-
 modules/spring/pom.xml                          |   2 +-
 .../ignite/cache/store/spring/package-info.java |  21 +++
 modules/ssh/pom.xml                             |   2 +-
 modules/tools/pom.xml                           |   2 +-
 modules/twitter/pom.xml                         |   5 +-
 .../ignite/stream/twitter/package-info.java     |  21 +++
 .../twitter/IgniteTwitterStreamerTestSuite.java |  19 +-
 .../ignite/stream/twitter/package-info.java     |  21 +++
 modules/urideploy/pom.xml                       |   2 +-
 modules/visor-console-2.10/pom.xml              |   2 +-
 modules/visor-console/pom.xml                   |   2 +-
 modules/visor-plugins/pom.xml                   |   2 +-
 modules/web/pom.xml                             |   2 +-
 modules/yardstick/pom.xml                       |   6 +-
 modules/yarn/pom.xml                            |   2 +-
 modules/zookeeper/pom.xml                       |   2 +-
 .../discovery/tcp/ipfinder/zk/package-info.java |  21 +++
 pom.xml                                         |   2 +-
 132 files changed, 1118 insertions(+), 391 deletions(-)
----------------------------------------------------------------------