Searched refs:repo (Results 1 - 7 of 7) sorted by relevance
/opengrok/test/org/opensolaris/opengrok/history/ |
H A D | FileHistoryCacheTest.java | 134 Repository repo = RepositoryFactory.getRepository(reposRoot); 135 History historyToStore = repo.getHistory(reposRoot); 137 cache.store(historyToStore, repo); 141 assertEquals("9:8b340409b3a8", cache.getLatestCachedRevision(repo)); 145 cache.store(historyNull, repo); 147 assertEquals("9:8b340409b3a8", cache.getLatestCachedRevision(repo)); 165 Repository repo = RepositoryFactory.getRepository(reposRoot); 166 History historyToStore = repo.getHistory(reposRoot); 169 cache.store(historyToStore, repo); 176 repo [all...] |
/opengrok/src/org/opensolaris/opengrok/history/ |
H A D | HistoryGuru.java | 139 Repository repo = getRepository(file); 140 if (repo != null) { 141 ret = repo.annotate(file, rev); 144 hist = repo.getHistory(file); 160 String short_rev = repo.getRevisionForAnnotate(hist_rev); 228 final Repository repo = getRepository(dir); 234 || (ui || ((rscm == RemoteSCM.DIRBASED) && (repo != null) && repo.hasHistoryForDirectories())); 236 if (repo != null && repo [all...] |
H A D | SSCMRepository.java | 148 String repo = props.getProperty(REPOSITORY_PROPERTY); 149 if (repo != null && !repo.isEmpty()) { 150 argv.add("-p" + repo); 200 String repo = props.getProperty(REPOSITORY_PROPERTY); 201 if (repo != null && !repo.isEmpty()) { 202 argv.add("-p" + repo); 308 String repo = props.getProperty(REPOSITORY_PROPERTY); 309 if (repo ! [all...] |
H A D | RCSHistoryParser.java | 61 String repo = readFirstLine(repository); 62 String dir = cvsroot + File.separatorChar + repo;
|
H A D | FileHistoryCache.java | 219 * @param repo repository for the file 222 private void storeFile(History histNew, File file, Repository repo) throws HistoryException { argument 254 if (env.isTagsEnabled() && repo.hasFileBasedTags()) { 258 repo.assignTagsInHistory(history); 311 "Done storing history for repo {0}", 339 "Storing history for repo {0}", 347 * history/log command executed for top-level directory of the repo
|
/opengrok/test/org/opensolaris/opengrok/web/ |
H A D | ProjectHelperTest.java | 87 Project repo = new Project(); 88 repo.setDescription("some random name not in any other group"); 91 info.setParent(repo.getDescription()); 94 List<RepositoryInfo> infos = getRepositoriesMap().get(repo); 100 getRepositoriesMap().put(repo, infos); 103 env.getProjects().add(repo);
|
/opengrok/src/org/opensolaris/opengrok/index/ |
H A D | Indexer.java | 685 for (String repo : zapCache) { 686 if ("*".equals(repo)) { 690 if (repo.startsWith(prefix)) { 691 repo = repo.substring(prefix.length()); 693 toZap.add(repo);
|
Completed in 1398 milliseconds