You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by aa...@apache.org on 2020/01/15 03:13:34 UTC

[hadoop] branch branch-2.10 updated: MAPREDUCE-7256. Fix javadoc error in SimpleExponentialSmoothing. (#1804)

This is an automated email from the ASF dual-hosted git repository.

aajisaka pushed a commit to branch branch-2.10
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-2.10 by this push:
     new 7a309f1  MAPREDUCE-7256. Fix javadoc error in SimpleExponentialSmoothing. (#1804)
7a309f1 is described below

commit 7a309f1f919f25b1110b7106bc1bf2f64e3814fb
Author: Masatake Iwasaki <iw...@apache.org>
AuthorDate: Wed Jan 15 12:09:09 2020 +0900

    MAPREDUCE-7256. Fix javadoc error in SimpleExponentialSmoothing. (#1804)
    
    (cherry picked from commit a2fdd7c2b59463c39a4d4250f908a9e2d3653ead)
---
 .../v2/app/speculate/forecast/SimpleExponentialSmoothing.java         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/speculate/forecast/SimpleExponentialSmoothing.java b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/speculate/forecast/SimpleExponentialSmoothing.java
index 0e00068..dd9dc28 100644
--- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/speculate/forecast/SimpleExponentialSmoothing.java
+++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/speculate/forecast/SimpleExponentialSmoothing.java
@@ -131,8 +131,8 @@ public class SimpleExponentialSmoothing {
   /**
    * checks if the task is hanging up.
    * @param timeStamp current time of the scan.
-   * @return true if we have number of samples > kMinimumReads and the record
-   * timestamp has expired.
+   * @return true if we have number of samples {@literal >} kMinimumReads and the
+   * record timestamp has expired.
    */
   public boolean isDataStagnated(final long timeStamp) {
     ForecastRecord rec = forecastRefEntry.get();


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org