[1/3] tinkerpop git commit: added OptionalStep to be used instead of optional() being backed by ChooseStep. This fixes a side-effect issue.

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/master 1541e8435 -> 5caf66440 added OptionalStep to be used instead of optional() being backed by ChooseStep. This fixes a side-effect issue. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

[3/3] tinkerpop git commit: Merge branch 'TINKERPOP-1506'

2016-11-02 Thread okram
Merge branch 'TINKERPOP-1506' Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/5caf6644 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/5caf6644 Diff:

[2/3] tinkerpop git commit: tweak to test for GremlinServer's sake. Tweaked the docs around Optional Step to have the same look and feel as the other step docs.

2016-11-02 Thread okram
tweak to test for GremlinServer's sake. Tweaked the docs around Optional Step to have the same look and feel as the other step docs. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/4fb9a8e6 Tree:

tinkerpop git commit: Added Path.head() and Path.isEmpty() with default method implementations. Have optimized implementations in ImmutablePath and MutablePath. Using methods in the LP-class of traver

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1542 [created] c2e543727 Added Path.head() and Path.isEmpty() with default method implementations. Have optimized implementations in ImmutablePath and MutablePath. Using methods in the LP-class of traverser (the most heavily used

tinkerpop git commit: TINKERPOP-1434 Block calls on "remote" traversal to get side-effects

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1434 [created] 46a61bb12 TINKERPOP-1434 Block calls on "remote" traversal to get side-effects This prevents calls for side-effects that are not yet ready on the server. This was generally a problem in tests, but usrs could have

[2/8] tinkerpop git commit: removed ImmutablePathImpl. Was initially Deprecated as TailPath is no longer needed, but since its a package local interface, it is not possible to implement outside of the

2016-11-02 Thread okram
removed ImmutablePathImpl. Was initially Deprecated as TailPath is no longer needed, but since its a package local interface, it is not possible to implement outside of the package. Thus, if its no longer used in the package, delete. Project:

[6/8] tinkerpop git commit: found another minor optimziation. if the head of the path already has the extend(labels), then there is no need to split the path. This can significantly reduce object crea

2016-11-02 Thread okram
found another minor optimziation. if the head of the path already has the extend(labels), then there is no need to split the path. This can significantly reduce object creation if label applications are repeated. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

[4/8] tinkerpop git commit: Overrode Path.isSimple() default impl for ImmutablePath that doesn't create so many objects.

2016-11-02 Thread okram
Overrode Path.isSimple() default impl for ImmutablePath that doesn't create so many objects. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/3896a981 Tree:

[7/8] tinkerpop git commit: Merge branch 'TINKERPOP-1372' into tp32

2016-11-02 Thread okram
Merge branch 'TINKERPOP-1372' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/90962742 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/90962742 Diff:

[1/8] tinkerpop git commit: removed call stack recursion in ImmutablePath. All is while(true) based with a break on 'tail path.' ImmutablePath.TailPath is no longer required as the 'tail' is a the pat

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/master 91e82c4ef -> 1541e8435 removed call stack recursion in ImmutablePath. All is while(true) based with a break on 'tail path.' ImmutablePath.TailPath is no longer required as the 'tail' is a the path segmanet with currentObject == null.

[3/8] tinkerpop git commit: removed more method-based recursions in ImmutablePath and inlined the singleHead() and singleTail() methods as they are no longer interface methods and are only called in o

2016-11-02 Thread okram
removed more method-based recursions in ImmutablePath and inlined the singleHead() and singleTail() methods as they are no longer interface methods and are only called in one other method. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

[5/8] tinkerpop git commit: added @pietermartin's direct reference to Step.getLabels() optimization to ImmutablePath. Added JavaDoc to Traverser for the dropLabels()/keepLabels() method. Fixed a spell

2016-11-02 Thread okram
added @pietermartin's direct reference to Step.getLabels() optimization to ImmutablePath. Added JavaDoc to Traverser for the dropLabels()/keepLabels() method. Fixed a spelling mistake in AbstractTraverser. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

[1/7] tinkerpop git commit: removed call stack recursion in ImmutablePath. All is while(true) based with a break on 'tail path.' ImmutablePath.TailPath is no longer required as the 'tail' is a the pat

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/tp32 3b57bd440 -> 909627428 removed call stack recursion in ImmutablePath. All is while(true) based with a break on 'tail path.' ImmutablePath.TailPath is no longer required as the 'tail' is a the path segmanet with currentObject == null.

[4/7] tinkerpop git commit: Overrode Path.isSimple() default impl for ImmutablePath that doesn't create so many objects.

2016-11-02 Thread okram
Overrode Path.isSimple() default impl for ImmutablePath that doesn't create so many objects. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/3896a981 Tree:

[2/7] tinkerpop git commit: removed ImmutablePathImpl. Was initially Deprecated as TailPath is no longer needed, but since its a package local interface, it is not possible to implement outside of the

2016-11-02 Thread okram
removed ImmutablePathImpl. Was initially Deprecated as TailPath is no longer needed, but since its a package local interface, it is not possible to implement outside of the package. Thus, if its no longer used in the package, delete. Project:

[3/7] tinkerpop git commit: removed more method-based recursions in ImmutablePath and inlined the singleHead() and singleTail() methods as they are no longer interface methods and are only called in o

2016-11-02 Thread okram
removed more method-based recursions in ImmutablePath and inlined the singleHead() and singleTail() methods as they are no longer interface methods and are only called in one other method. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

[6/7] tinkerpop git commit: found another minor optimziation. if the head of the path already has the extend(labels), then there is no need to split the path. This can significantly reduce object crea

2016-11-02 Thread okram
found another minor optimziation. if the head of the path already has the extend(labels), then there is no need to split the path. This can significantly reduce object creation if label applications are repeated. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

[7/7] tinkerpop git commit: Merge branch 'TINKERPOP-1372' into tp32

2016-11-02 Thread okram
Merge branch 'TINKERPOP-1372' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/90962742 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/90962742 Diff:

[2/3] tinkerpop git commit: added the try/catch model to nextTraverser() as well. Tweaked the docs and CHANGELOG a bit.

2016-11-02 Thread okram
added the try/catch model to nextTraverser() as well. Tweaked the docs and CHANGELOG a bit. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/3b57bd44 Tree:

[1/3] tinkerpop git commit: TINKERPOP-887 Convert FastNoSuchElementExceptions in to regular NoSuchElementExceptions when exiting a traversal for top level traversals.

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/master 3fe139a7b -> 91e82c4ef TINKERPOP-887 Convert FastNoSuchElementExceptions in to regular NoSuchElementExceptions when exiting a traversal for top level traversals. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

[2/2] tinkerpop git commit: added the try/catch model to nextTraverser() as well. Tweaked the docs and CHANGELOG a bit.

2016-11-02 Thread okram
added the try/catch model to nextTraverser() as well. Tweaked the docs and CHANGELOG a bit. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/3b57bd44 Tree:

[1/2] tinkerpop git commit: TINKERPOP-887 Convert FastNoSuchElementExceptions in to regular NoSuchElementExceptions when exiting a traversal for top level traversals.

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/tp32 0f84e4378 -> 3b57bd440 TINKERPOP-887 Convert FastNoSuchElementExceptions in to regular NoSuchElementExceptions when exiting a traversal for top level traversals. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

[2/2] tinkerpop git commit: Merge branch 'tp32'

2016-11-02 Thread spmallette
Merge branch 'tp32' Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/3fe139a7 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/3fe139a7 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/3fe139a7

[11/11] tinkerpop git commit: TINKERPOP-1534 Improve GraphProvider ability to release resources

2016-11-02 Thread spmallette
TINKERPOP-1534 Improve GraphProvider ability to release resources Specifically, made AbstractGremlinSuite attept to close() a GraphProvider if it implemented AutoCloseable. Added better logging to gremlin-python server start/stop script. Removed DriverRemoteConnectionTest as it was an ignored

[09/11] tinkerpop git commit: fixed the filter latex in step-types.png. CTR.

2016-11-02 Thread spmallette
fixed the filter latex in step-types.png. CTR. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/d7fb966b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/d7fb966b Diff:

[01/11] tinkerpop git commit: added choose(predicate, traversal) which is a map to choose(predicate, traversal, identity()) and gives us if/then-semantics instead of always requiring if/then/else-sema

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1534 f3dec2fad -> 0f84e4378 (forced update) added choose(predicate,traversal) which is a map to choose(predicate,traversal,identity()) and gives us if/then-semantics instead of always requiring if/then/else-semantics. Project:

[06/11] tinkerpop git commit: Merge branch 'tp31' into tp32

2016-11-02 Thread spmallette
Merge branch 'tp31' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/c2a51b1b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/c2a51b1b Diff:

[07/11] tinkerpop git commit: Fixed spelling mistake in javadoc CTR

2016-11-02 Thread spmallette
Fixed spelling mistake in javadoc CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/eb1dfb8c Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/eb1dfb8c Diff:

tinkerpop git commit: TINKERPOP-932 Added "force" option on session close.

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/tp32 d7fb966b4 -> 4ff93ab18 TINKERPOP-932 Added "force" option on session close. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/4ff93ab1 Tree:

tinkerpop git commit: found another minor optimziation. if the head of the path already has the extend(labels), then there is no need to split the path. This can significantly reduce object creation i

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1372 deaf38a7e -> c8a689463 found another minor optimziation. if the head of the path already has the extend(labels), then there is no need to split the path. This can significantly reduce object creation if label applications are

[05/10] tinkerpop git commit: Removed println from test. CTR

2016-11-02 Thread spmallette
Removed println from test. CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/1487ddb4 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/1487ddb4 Diff:

[01/10] tinkerpop git commit: added choose(predicate, traversal) which is a map to choose(predicate, traversal, identity()) and gives us if/then-semantics instead of always requiring if/then/else-sema

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-932 5802f1648 -> 4ff93ab18 (forced update) added choose(predicate,traversal) which is a map to choose(predicate,traversal,identity()) and gives us if/then-semantics instead of always requiring if/then/else-semantics. Project:

[09/10] tinkerpop git commit: fixed the filter latex in step-types.png. CTR.

2016-11-02 Thread spmallette
fixed the filter latex in step-types.png. CTR. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/d7fb966b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/d7fb966b Diff:

[06/10] tinkerpop git commit: Merge branch 'tp31' into tp32

2016-11-02 Thread spmallette
Merge branch 'tp31' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/c2a51b1b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/c2a51b1b Diff:

[08/10] tinkerpop git commit: Merge branch 'TINKERPOP-1508' into tp32

2016-11-02 Thread spmallette
Merge branch 'TINKERPOP-1508' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/f55cb359 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/f55cb359 Diff:

[04/10] tinkerpop git commit: Added VertexProgramStrategy to TranslationStrategy

2016-11-02 Thread spmallette
Added VertexProgramStrategy to TranslationStrategy This change ensures proper sort order in strategies and prevents failing tests in some environments. CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/b2108408

[03/10] tinkerpop git commit: Moved __version__.py to gremlin_python directory

2016-11-02 Thread spmallette
Moved __version__.py to gremlin_python directory __version__.py is a generated file that is not in source control. it only appears at the time of a build and is ignored by git. by moving it to gremlin_python directory the __version__ will appear in the source distribution. CTR Project:

[10/10] tinkerpop git commit: TINKERPOP-932 Added "force" option on session close.

2016-11-02 Thread spmallette
TINKERPOP-932 Added "force" option on session close. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/4ff93ab1 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/4ff93ab1 Diff:

[4/4] tinkerpop git commit: TINKERPOP-1490 Implemented promise API for Traversal

2016-11-02 Thread spmallette
TINKERPOP-1490 Implemented promise API for Traversal Added two promise() methods that return CompletableFuture on Traversal. Provided an override on DefaultTraversal for those methods because the function that transforms the Traversal is executed in a different thread and therefore requires

[2/4] tinkerpop git commit: Merge branch 'TINKERPOP-1508' into tp32

2016-11-02 Thread spmallette
Merge branch 'TINKERPOP-1508' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/f55cb359 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/f55cb359 Diff:

tinkerpop git commit: TINKERPOP-1490 Implemented promise API for Traversal [Forced Update!]

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1490 03e37e81f -> 9ad3042ff (forced update) TINKERPOP-1490 Implemented promise API for Traversal Added two promise() methods that return CompletableFuture on Traversal. Provided an override on DefaultTraversal for those methods

[3/4] tinkerpop git commit: fixed the filter latex in step-types.png. CTR.

2016-11-02 Thread spmallette
fixed the filter latex in step-types.png. CTR. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/d7fb966b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/d7fb966b Diff:

[1/4] tinkerpop git commit: added choose(predicate, traversal) which is a map to choose(predicate, traversal, identity()) and gives us if/then-semantics instead of always requiring if/then/else-semant

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1490 3c541b2d6 -> 03e37e81f (forced update) added choose(predicate,traversal) which is a map to choose(predicate,traversal,identity()) and gives us if/then-semantics instead of always requiring if/then/else-semantics. Project:

tinkerpop git commit: TINKERPOP-1490 Implemented promise API for Traversal [Forced Update!]

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1490 d6e4af455 -> 3c541b2d6 (forced update) TINKERPOP-1490 Implemented promise API for Traversal Added two promise() methods that return CompletableFuture on Traversal. Provided an override on DefaultTraversal for those methods

[1/2] tinkerpop git commit: fixed the filter latex in step-types.png. CTR.

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/master 2bd1f8c29 -> 7932fe3ed fixed the filter latex in step-types.png. CTR. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/d7fb966b Tree:

[2/2] tinkerpop git commit: Merge branch 'tp32'

2016-11-02 Thread okram
Merge branch 'tp32' Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/7932fe3e Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/7932fe3e Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/7932fe3e

tinkerpop git commit: fixed the filter latex in step-types.png. CTR.

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/tp32 f55cb3593 -> d7fb966b4 fixed the filter latex in step-types.png. CTR. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/d7fb966b Tree:

[3/3] tinkerpop git commit: Merge branch 'tp32'

2016-11-02 Thread okram
Merge branch 'tp32' Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/2bd1f8c2 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/2bd1f8c2 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/2bd1f8c2

[1/3] tinkerpop git commit: added choose(predicate, traversal) which is a map to choose(predicate, traversal, identity()) and gives us if/then-semantics instead of always requiring if/then/else-semant

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/master 04402d006 -> 2bd1f8c29 added choose(predicate,traversal) which is a map to choose(predicate,traversal,identity()) and gives us if/then-semantics instead of always requiring if/then/else-semantics. Project:

[2/3] tinkerpop git commit: Merge branch 'TINKERPOP-1508' into tp32

2016-11-02 Thread okram
Merge branch 'TINKERPOP-1508' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/f55cb359 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/f55cb359 Diff:

[2/2] tinkerpop git commit: Merge branch 'TINKERPOP-1508' into tp32

2016-11-02 Thread okram
Merge branch 'TINKERPOP-1508' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/f55cb359 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/f55cb359 Diff:

[1/2] tinkerpop git commit: added choose(predicate, traversal) which is a map to choose(predicate, traversal, identity()) and gives us if/then-semantics instead of always requiring if/then/else-semant

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/tp32 eb1dfb8cb -> f55cb3593 added choose(predicate,traversal) which is a map to choose(predicate,traversal,identity()) and gives us if/then-semantics instead of always requiring if/then/else-semantics. Project:

[12/16] tinkerpop git commit: Added VertexProgramStrategy to TranslationStrategy

2016-11-02 Thread spmallette
Added VertexProgramStrategy to TranslationStrategy This change ensures proper sort order in strategies and prevents failing tests in some environments. CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/b2108408

[01/16] tinkerpop git commit: TraversalStrategy.GlobalCache.getStrategies() is now the point where static{} code blocks are loaded for Graph and GraphComputer classes. Added a test case to TraversalSt

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1490 c97d6830a -> d6e4af455 (forced update) TraversalStrategy.GlobalCache.getStrategies() is now the point where static{} code blocks are loaded for Graph and GraphComputer classes. Added a test case to TraversalStrategiesTset that

[15/16] tinkerpop git commit: Fixed spelling mistake in javadoc CTR

2016-11-02 Thread spmallette
Fixed spelling mistake in javadoc CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/eb1dfb8c Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/eb1dfb8c Diff:

[08/16] tinkerpop git commit: Merge branch 'TINKERPOP-1525-tp32' of https://github.com/dalaro/incubator-tinkerpop into tp32

2016-11-02 Thread spmallette
Merge branch 'TINKERPOP-1525-tp32' of https://github.com/dalaro/incubator-tinkerpop into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/d8eaf208 Tree:

[16/16] tinkerpop git commit: TINKERPOP-1490 Implemented promise API for Traversal

2016-11-02 Thread spmallette
TINKERPOP-1490 Implemented promise API for Traversal Added two promise() methods that return CompletableFuture on Traversal. Provided an override on DefaultTraversal for those methods because the function that transforms the Traversal is executed in a different thread and therefore requires

[02/16] tinkerpop git commit: added authorship to TraversalStrategies java file.

2016-11-02 Thread spmallette
added authorship to TraversalStrategies java file. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/b0bedf6b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/b0bedf6b Diff:

[03/16] tinkerpop git commit: Avoid starting VP worker iterations that never end

2016-11-02 Thread spmallette
Avoid starting VP worker iterations that never end SparkExecutor.executeVertexProgramIteration was written in such a way that an empty RDD partition would cause it to invoke VertexProgram.workerIterationStart without ever invoking VertexProgram.workerIterationEnd. This seems like a contract

[05/16] tinkerpop git commit: added ProjectStep.getProjectKeys() -- should we make this an unmodifiable list.

2016-11-02 Thread spmallette
added ProjectStep.getProjectKeys() -- should we make this an unmodifiable list. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/1282a7ae Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/1282a7ae Diff:

[13/16] tinkerpop git commit: Removed println from test. CTR

2016-11-02 Thread spmallette
Removed println from test. CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/1487ddb4 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/1487ddb4 Diff:

[09/16] tinkerpop git commit: updated CHANGELOG

2016-11-02 Thread spmallette
updated CHANGELOG Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/1eac35b9 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/1eac35b9 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/1eac35b9

[14/16] tinkerpop git commit: Merge branch 'tp31' into tp32

2016-11-02 Thread spmallette
Merge branch 'tp31' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/c2a51b1b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/c2a51b1b Diff:

[06/16] tinkerpop git commit: Merge branch 'tp32-tests' of https://github.com/ngageoint/tinkerpop into tp32

2016-11-02 Thread spmallette
Merge branch 'tp32-tests' of https://github.com/ngageoint/tinkerpop into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/8ae1a092 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/8ae1a092 Diff:

[04/16] tinkerpop git commit: Lazy message scope initialization in PeerPressureVertexProgram. Remove vertex id checks in BulkDumperVertexProgramTest. Don't rollback transaction if already closed in Tr

2016-11-02 Thread spmallette
Lazy message scope initialization in PeerPressureVertexProgram. Remove vertex id checks in BulkDumperVertexProgramTest. Don't rollback transaction if already closed in TransactionTest. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

[10/16] tinkerpop git commit: CTR: removed hard-coded number of workers setting in Gremlin Python test

2016-11-02 Thread spmallette
CTR: removed hard-coded number of workers setting in Gremlin Python test Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/333f2ab6 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/333f2ab6 Diff:

tinkerpop git commit: Fixed spelling mistake in javadoc CTR

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/tp32 c2a51b1b3 -> eb1dfb8cb Fixed spelling mistake in javadoc CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/eb1dfb8c Tree:

[2/2] tinkerpop git commit: Merge branch 'tp32'

2016-11-02 Thread spmallette
Merge branch 'tp32' Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/04402d00 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/04402d00 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/04402d00

[1/2] tinkerpop git commit: Fixed spelling mistake in javadoc CTR

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/master baad80bdd -> 04402d006 Fixed spelling mistake in javadoc CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/eb1dfb8c Tree:

tinkerpop git commit: Removed println from test. CTR

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/tp31 30c2600bf -> 1487ddb4b Removed println from test. CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/1487ddb4 Tree:

[2/2] tinkerpop git commit: Merge branch 'tp31' into tp32

2016-11-02 Thread spmallette
Merge branch 'tp31' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/c2a51b1b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/c2a51b1b Diff:

[1/3] tinkerpop git commit: Removed println from test. CTR

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/master b75d24bbd -> baad80bdd Removed println from test. CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/1487ddb4 Tree:

[2/3] tinkerpop git commit: Merge branch 'tp31' into tp32

2016-11-02 Thread spmallette
Merge branch 'tp31' into tp32 Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/c2a51b1b Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/c2a51b1b Diff:

tinkerpop git commit: added a new WhereTest and realized a labeling issue. Labeling issue fixed.

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1473 a69efffef -> 301975739 added a new WhereTest and realized a labeling issue. Labeling issue fixed. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit:

tinkerpop git commit: Added VertexProgramStrategy to TranslationStrategy

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/tp32 ab48b3fc0 -> b21084081 Added VertexProgramStrategy to TranslationStrategy This change ensures proper sort order in strategies and prevents failing tests in some environments. CTR Project:

[1/3] tinkerpop git commit: Moved __version__.py to gremlin_python directory

2016-11-02 Thread spmallette
Repository: tinkerpop Updated Branches: refs/heads/master 4f54d2d73 -> b75d24bbd Moved __version__.py to gremlin_python directory __version__.py is a generated file that is not in source control. it only appears at the time of a build and is ignored by git. by moving it to gremlin_python

[3/3] tinkerpop git commit: Merge branch 'tp32'

2016-11-02 Thread spmallette
Merge branch 'tp32' Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/b75d24bb Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/b75d24bb Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/b75d24bb

[2/3] tinkerpop git commit: Added VertexProgramStrategy to TranslationStrategy

2016-11-02 Thread spmallette
Added VertexProgramStrategy to TranslationStrategy This change ensures proper sort order in strategies and prevents failing tests in some environments. CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/b2108408

tinkerpop git commit: Added where(a.out.b) => select(a).where(out.b) AND where(a.out) => select(a).filter(out) to PathProcessorStrategy (an OLAP strategy). This opens up more traversals that would oth

2016-11-02 Thread okram
Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1473 [created] a69efffef Added where(a.out.b) => select(a).where(out.b) AND where(a.out) => select(a).filter(out) to PathProcessorStrategy (an OLAP strategy). This opens up more traversals that would otherwise break the star-graph