Searched defs:Throttling (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/store/
H A DMockDirectoryWrapper.java78 private Throttling throttling = Throttling.SOMETIMES;
150 public static enum Throttling { enum in class:MockDirectoryWrapper
159 public void setThrottling(Throttling throttling) {
452 if (throttling == Throttling.ALWAYS ||
453 (throttling == Throttling.SOMETIMES && randomState.nextInt(50) == 0)) {
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/store/
H A DMockDirectoryWrapper.java75 private Throttling throttling = Throttling.SOMETIMES;
147 public static enum Throttling { enum in class:MockDirectoryWrapper
156 public void setThrottling(Throttling throttling) {
408 if (throttling == Throttling.ALWAYS ||
409 (throttling == Throttling.SOMETIMES && randomState.nextInt(50) == 0)) {

Completed in 49 milliseconds