Home
last modified time | relevance | path

Searched refs:scanningDepth (Results 1 – 3 of 3) sorted by relevance

/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/
H A DConfiguration.java208 private int scanningDepth; field in Configuration
342 return scanningDepth; in getScanningDepth()
351 public void setScanningDepth(int scanningDepth) throws IllegalArgumentException { in setScanningDepth() argument
352 if (scanningDepth < 0) { in setScanningDepth()
354 String.format(NEGATIVE_NUMBER_ERROR, "scanningDepth", scanningDepth)); in setScanningDepth()
356 this.scanningDepth = scanningDepth; in setScanningDepth()
H A DRuntimeEnvironment.java213 public void setScanningDepth(int scanningDepth) {
214 syncWriteConfiguration(scanningDepth, Configuration::setScanningDepth);
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/main/java/org/opengrok/indexer/history/
H A DHistoryGuru.java89 private final int scanningDepth; field in HistoryGuru
97 scanningDepth = env.getScanningDepth(); in HistoryGuru()
437 } else if (depth <= scanningDepth) { in addRepositories()
455 } else if (depth <= scanningDepth) { in addRepositories()