You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2018/11/29 22:51:15 UTC

[geode-benchmarks] branch develop updated (26f1c40 -> b5ec91d)

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

upthewaterspout pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git.


    from 26f1c40  Allowing JVM options to be set by test
     new c1bdf62  Removing unused parameters
     new b5ec91d  Adding build directories to .gitignore

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                                     |  8 +++++---
 .../geode/benchmark/configurations/BenchmarkParameters.java    | 10 ----------
 2 files changed, 5 insertions(+), 13 deletions(-)


[geode-benchmarks] 02/02: Adding build directories to .gitignore

Posted by up...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git

commit b5ec91dc87fcd9bd9f11532af8708d6858e99f50
Author: Dan Smith <up...@apache.org>
AuthorDate: Thu Nov 29 14:50:47 2018 -0800

    Adding build directories to .gitignore
---
 .gitignore | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index a809704..10f3f63 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
-.idea
-out
-.gradle
+.idea/
+out/
+.gradle/
+build/
+output/


[geode-benchmarks] 01/02: Removing unused parameters

Posted by up...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git

commit c1bdf62b0bc6ad23faf15f3a60e62fd9fec48bb2
Author: Dan Smith <up...@apache.org>
AuthorDate: Thu Nov 29 13:04:34 2018 -0800

    Removing unused parameters
---
 .../geode/benchmark/configurations/BenchmarkParameters.java    | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/configurations/BenchmarkParameters.java b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/configurations/BenchmarkParameters.java
index e090d23..9d4bd49 100644
--- a/geode-benchmarks/src/main/java/org/apache/geode/benchmark/configurations/BenchmarkParameters.java
+++ b/geode-benchmarks/src/main/java/org/apache/geode/benchmark/configurations/BenchmarkParameters.java
@@ -59,14 +59,4 @@ public class BenchmarkParameters {
    * Key range on which all the region operations are conducted on a minimal runner
    */
   public static final long KEY_RANGE_FOR_MINIMAL_RUNNER = 5;
-
-  /**
-   * Warm up time for the benchmark running on the minimal runner
-   */
-  public static final int WARM_UP_TIME_FOR_MINIMAL_RUNNER = 5;
-
-  /**
-   * Total duration for which the benchmark will run on the minimal runner
-   */
-  public static final int BENCHMARK_DURATION_FOR_MINIMAL_RUNNER = 5;
 }