You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by kw...@apache.org on 2018/04/13 03:33:55 UTC

[1/2] lucene-solr:master: LUCENE-8245: Make precommit happy, again.

Repository: lucene-solr
Updated Branches:
  refs/heads/master 0014f3af8 -> 71936db9f


LUCENE-8245: Make precommit happy, again.


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/1d201f3c
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/1d201f3c
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/1d201f3c

Branch: refs/heads/master
Commit: 1d201f3c18ef150132e329bac6bb8ecc3ca8c4e0
Parents: 3d5f2f2
Author: Karl Wright <Da...@gmail.com>
Authored: Thu Apr 12 23:32:46 2018 -0400
Committer: Karl Wright <Da...@gmail.com>
Committed: Thu Apr 12 23:32:46 2018 -0400

----------------------------------------------------------------------
 .../org/apache/lucene/spatial3d/geom/SidedPlane.java    | 12 ++++++++++++
 1 file changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/1d201f3c/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/SidedPlane.java
----------------------------------------------------------------------
diff --git a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/SidedPlane.java b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/SidedPlane.java
index 238933c..61d561d 100755
--- a/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/SidedPlane.java
+++ b/lucene/spatial3d/src/java/org/apache/lucene/spatial3d/geom/SidedPlane.java
@@ -234,12 +234,24 @@ public class SidedPlane extends Plane implements Membership {
     return sigNum == this.sigNum;
   }
 
+  /**
+   * Check whether a point is strictly within a plane.
+   * @param v is the point.
+   * @return true if within.
+   */
   public boolean strictlyWithin(final Vector v) {
     double evalResult = evaluate(v.x, v.y, v.z);
     double sigNum = Math.signum(evalResult);
     return sigNum == 0.0 || sigNum == this.sigNum;
   }
 
+  /**
+   * Check whether a point is strictly within a plane.
+   * @param x is the point x value.
+   * @param y is the point y value.
+   * @param z is the point z value.
+   * @return true if within.
+   */
   public boolean strictlyWithin(double x, double y, double z) {
     double evalResult = evaluate(x, y, z);
     double sigNum = Math.signum(evalResult);


[2/2] lucene-solr:master: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/lucene-solr

Posted by kw...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/lucene-solr


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/71936db9
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/71936db9
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/71936db9

Branch: refs/heads/master
Commit: 71936db9f073f02264398b97b1893c37e3d89f54
Parents: 1d201f3 0014f3a
Author: Karl Wright <Da...@gmail.com>
Authored: Thu Apr 12 23:32:56 2018 -0400
Committer: Karl Wright <Da...@gmail.com>
Committed: Thu Apr 12 23:32:56 2018 -0400

----------------------------------------------------------------------
 .../apache/lucene/index/TestIndexSorting.java   |  1 +
 solr/CHANGES.txt                                |  2 ++
 .../org/apache/solr/TestDistributedSearch.java  |  1 +
 .../org/apache/solr/cloud/AddReplicaTest.java   |  1 +
 .../apache/solr/cloud/AliasIntegrationTest.java |  1 +
 .../cloud/ChaosMonkeyNothingIsSafeTest.java     |  1 +
 .../solr/cloud/CreateRoutedAliasTest.java       |  4 ++++
 .../apache/solr/cloud/DeleteReplicaTest.java    |  1 +
 .../apache/solr/cloud/TestCloudRecovery.java    |  1 +
 .../TestLeaderInitiatedRecoveryThread.java      |  3 +++
 .../solr/cloud/TestStressInPlaceUpdates.java    |  1 +
 .../TestCollectionsAPIViaSolrCloudCluster.java  |  1 +
 .../autoscaling/ComputePlanActionTest.java      |  1 +
 .../cloud/autoscaling/ScheduledTriggerTest.java |  1 +
 .../autoscaling/sim/TestTriggerIntegration.java |  1 +
 .../solr/cloud/cdcr/CdcrBidirectionalTest.java  | 24 +++++++++++---------
 .../admin/AutoscalingHistoryHandlerTest.java    |  3 +--
 .../cloud/TestCollectionStateWatchers.java      |  1 +
 18 files changed, 36 insertions(+), 13 deletions(-)
----------------------------------------------------------------------