Home
last modified time | relevance | path

Searched refs:DIRBASED (Results 1 – 4 of 4) sorted by relevance

/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/main/java/org/opengrok/indexer/index/
H A DIndexer.java95 private static final String DIRBASED = "dirbased"; field in Indexer
395 final String[] REMOTE_REPO_CHOICES = {ON, OFF, DIRBASED, UIONLY}; in parseOptions()
678 } else if (option.equalsIgnoreCase(DIRBASED)) { in parseOptions()
679 cfg.setRemoteScmSupported(Configuration.RemoteSCM.DIRBASED); in parseOptions()
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/main/java/org/opengrok/indexer/history/
H A DHistoryGuru.java252 … || (ui || ((rscm == RemoteSCM.DIRBASED) && (repo != null) && repo.hasHistoryForDirectories())); in getHistory()
325 || (env.getRemoteScmSupported() == RemoteSCM.DIRBASED) in hasHistory()
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/test/java/org/opengrok/indexer/configuration/
H A DRuntimeEnvironmentTest.java424 instance.setRemoteScmSupported(Configuration.RemoteSCM.DIRBASED); in testRemoteScmSupported()
425 assertEquals(Configuration.RemoteSCM.DIRBASED, instance.getRemoteScmSupported()); in testRemoteScmSupported()
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/
H A DConfiguration.java314 ON, OFF, DIRBASED, UIONLY enumConstant