Searched defs:dataRoot (Results 1 - 5 of 5) sorted by relevance

/opengrok/test/org/opensolaris/opengrok/util/
H A DTestRepository.java44 private File dataRoot; field in class:TestRepository
50 dataRoot = FileUtilities.createTemporaryDirectory("data");
63 RuntimeEnvironment.getInstance().setDataRoot(dataRoot.getAbsolutePath());
79 if (dataRoot != null) {
80 FileUtilities.removeDirs(dataRoot);
89 return dataRoot.getAbsolutePath();
/opengrok/src/org/opensolaris/opengrok/web/
H A DSearchHelper.java88 public File dataRoot; field in class:SearchHelper
230 * <li>{@link #builder}</li> <li>{@link #dataRoot}</li>
248 indexDir = new File(dataRoot, IndexDatabase.INDEX_DIR);
382 * <li>{@link #projects}</li> <li>{@link #dataRoot}</li>
H A DPageConfig.java119 private File dataRoot; field in class:PageConfig
1188 if (dataRoot == null) {
1191 throw new InvalidParameterException("dataRoot parameter is not "
1194 dataRoot = new File(tmp);
1195 if (!(dataRoot.isDirectory() && dataRoot.canRead())) {
1196 throw new InvalidParameterException("The configured dataRoot '"
1201 return dataRoot;
1226 sh.dataRoot = getDataRoot(); // throws Exception if none-existent
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java89 private String dataRoot; field in class:Configuration
493 return dataRoot;
496 public void setDataRoot(String dataRoot) { argument
498 this.pluginDirectory = dataRoot + "/../" + PLUGIN_DIRECTORY_DEFAULT;
500 this.dataRoot = dataRoot;
H A DRuntimeEnvironment.java295 * @param dataRoot the index database
297 public void setDataRoot(String dataRoot) { argument
298 threadConfig.get().setDataRoot(getCanonicalPath(dataRoot));

Completed in 197 milliseconds