Searched refs:index (Results 1 - 25 of 35) sorted by relevance

12

/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DIndexerException.java24 package org.opensolaris.opengrok.index;
H A DIgnoredNames.java23 package org.opensolaris.opengrok.index;
H A DIndexChangedListener.java23 package org.opensolaris.opengrok.index;
26 * The changes in an index database may be monitored through this interface.
32 * A file is to be added to the index database
38 * A file is to be added to the index database
44 * A file is to be removed from the index database
49 * A file is to be removed from the index database
54 * A file is to be updated in the index database
H A DDefaultIndexChangedListener.java23 package org.opensolaris.opengrok.index;
29 * Print the index modifications to the standard output stream when running
H A DFilter.java25 package org.opensolaris.opengrok.index;
H A DIndexDatabase.java24 package org.opensolaris.opengrok.index;
45 import org.apache.lucene.index.IndexReader;
46 import org.apache.lucene.index.IndexWriter;
47 import org.apache.lucene.index.IndexWriterConfig;
48 import org.apache.lucene.index.IndexWriterConfig.OpenMode;
49 import org.apache.lucene.index.Term;
50 import org.apache.lucene.index.TermEnum;
77 * This class is used to create / update the index databases. Currently we use
78 * one index database per project.
127 * Update the index databas
[all...]
H A DCommandLineOptions.java25 package org.opensolaris.opengrok.index;
92 options.add(new Option('l', ON_OFF, "Turn on/off locking of the Lucene database during index generation"));
93 options.add(new Option('m', NUMBER, "The maximum words to index in a file"));
96 options.add(new Option('O', ON_OFF, "Turn on/off the optimization of the index database as part of the indexing step"));
106 options.add(new Option('T', NUMBER, "The number of threads to use for index generation. By default the number of threads will be set to the number of available CPUs"));
/opengrok-jel/src/org/opensolaris/opengrok/management/
H A DAgentIndexRunnerMBean.java36 * Last index time in System.currentmillis
37 * of successful index update
43 * Last index time in System.currentmillis
49 * Last index time usage for successful indexing (no exceptions)
50 * @return long how long the last index lasted
58 void index(boolean waitForFinished); method in interface:AgentIndexRunnerMBean
H A DAgentIndexRunner.java44 import org.opensolaris.opengrok.index.IndexChangedListener;
45 import org.opensolaris.opengrok.index.Indexer;
160 log.log(Level.INFO, "Starting index, update {0} noThreads {1} subfiles {2}",
176 "Published index", publishhost);
217 index(false);
228 * The index method starts a thread that will
234 public void index(boolean waitForFinished) { method in class:AgentIndexRunner
260 log.log(Level.FINE, "index", e);
/opengrok-jel/src/org/opensolaris/opengrok/
H A DFileLogFormatter.java50 int index = name.lastIndexOf('.') + 1;
51 return name.substring(index);
H A DSimpleFileLogFormatter.java50 int index = name.lastIndexOf('.') + 1;
51 return name.substring(index);
/opengrok-jel/platform/solaris/smf/
H A Dogindexd77 org.opensolaris.opengrok.index.Indexer \
/opengrok-jel/test/org/opensolaris/opengrok/index/
H A DCommandLineOptionsTest.java24 package org.opensolaris.opengrok.index;
H A DIndexDatabaseTest.java24 package org.opensolaris.opengrok.index;
H A DIgnoredNamesTest.java24 package org.opensolaris.opengrok.index;
/opengrok-jel/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
H A Dswing-layout-0.9.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jdesktop/ org/jdesktop/layout/ org/jdesktop/layout/AquaBaseline ...
/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DQueryMatchers.java31 import org.apache.lucene.index.Term;
/opengrok-jel/test/org/opensolaris/opengrok/util/
H A DFileUtilities.java37 import org.opensolaris.opengrok.index.IgnoredNames;
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DDirectoryHistoryReader.java40 import org.apache.lucene.index.IndexReader;
51 import org.opensolaris.opengrok.index.IndexDatabase;
95 throw new IOException("Could not locate index database");
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DSearchHelper.java40 import org.apache.lucene.index.IndexReader;
41 import org.apache.lucene.index.MultiReader;
70 /** opengrok's data root: used to find the search index file */
79 /** the result cursor start index, i.e. where to start displaying results */
101 /** the searcher used to open/search the index. Automatically set via
150 * setup is assumed (i.e. DATA_ROOT/index will be used instead of possible
151 * multiple DATA_ROOT/$project/index).
167 File indexDir = new File(dataRoot, "index");
/opengrok-jel/test/org/opensolaris/opengrok/search/
H A DSearchTest.java40 import org.opensolaris.opengrok.index.Indexer;
41 import org.opensolaris.opengrok.index.IndexerTest;
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DArchiveParser.java554 final public Token getToken(int index) { argument
556 for (int i = 0; i < index; i++) {
/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DSearchEngine.java41 import org.apache.lucene.index.IndexReader;
42 import org.apache.lucene.index.MultiReader;
65 * This is an encapsulation of the details on how to seach in the index
80 //old index and we need to ask for reindex
81 /** version of lucene index common for whole app*/
208 File droot = new File(RuntimeEnvironment.getConfig().getDataRootFile(), "index");
268 File root = new File(cfg.getDataRootFile(), "index");
277 // search the index database
H A DResults.java40 import org.apache.lucene.index.CorruptIndexException;
66 * @param startIdx the index of the first hit to check
67 * @param stopIdx the index of the last hit to check
135 * @param start index of the first hit to print
136 * @param end index of the last hit to print

Completed in 33 milliseconds

12