Searched refs:main (Results 1 - 25 of 79) sorted by relevance

1234

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/store/
H A DChecksumIndexInput.java30 IndexInput main; field in class:ChecksumIndexInput
33 public ChecksumIndexInput(IndexInput main) { argument
34 super("ChecksumIndexInput(" + main + ")");
35 this.main = main;
41 final byte b = main.readByte();
49 main.readBytes(b, offset, len);
60 main.close();
65 return main.getFilePointer();
75 return main
[all...]
H A DChecksumIndexOutput.java30 IndexOutput main; field in class:ChecksumIndexOutput
33 public ChecksumIndexOutput(IndexOutput main) { argument
34 this.main = main;
41 main.writeByte(b);
47 main.writeBytes(b, offset, length);
56 main.flush();
61 main.close();
66 return main.getFilePointer();
87 final long pos = main
[all...]
H A DLockStressTest.java34 public static void main(String[] args) throws Exception { method in class:LockStressTest
H A DLockVerifyServer.java42 public static void main(String[] args) throws IOException { method in class:LockVerifyServer
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/params/
H A DAppendedSolrParams.java31 public AppendedSolrParams(SolrParams main, SolrParams extra) { argument
32 super(main, extra);
37 String[] main = params.getParams(param);
40 return main;
42 if (null == main || 0 == main.length) {
45 String[] result = new String[main.length + extra.length];
46 System.arraycopy(main,0,result,0,main.length);
47 System.arraycopy(extra,0,result,main
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/request/
H A DAppendedSolrParams.java30 public AppendedSolrParams(SolrParams main, SolrParams extra) { argument
31 super(main, extra);
H A DDefaultSolrParams.java30 public DefaultSolrParams(SolrParams main, SolrParams extra) { argument
31 super(main, extra);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/grouping/
H A DGroupingSpecification.java39 private boolean main; field in class:GroupingSpecification
125 return main;
128 public void setMain(boolean main) { argument
129 this.main = main;
/lucene-3.6.0/lucene/contrib/queryparser/src/test/org/apache/lucene/queryParser/surround/query/
H A DTest01Exceptions.java27 public static void main(String args[]) { method in class:Test01Exceptions
/lucene-3.6.0/lucene/contrib/demo/src/test/org/apache/lucene/demo/
H A DTestDemo.java35 SearchFiles.main(new String[] {"-query", query, "-index", indexPath.getPath()});
47 IndexFiles.main(new String[] { "-create", "-docs", dir.getPath(), "-index", indexDir.getPath()});
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/charfilter/
H A Dhtmlentity.py21 def main(): function
530 main()
/lucene-3.6.0/lucene/contrib/facet/src/examples/org/apache/lucene/facet/example/multiCL/
H A DMultiCLMain.java41 public static void main(String[] args) throws Exception { method in class:MultiCLMain
/lucene-3.6.0/lucene/contrib/spellchecker/src/test/org/apache/lucene/search/suggest/fst/
H A DLargeInputFST.java29 public static void main(String[] args) throws IOException { method in class:LargeInputFST
/lucene-3.6.0/solr/solrj/src/test/org/apache/solr/client/solrj/
H A DStartSolrJetty.java30 public static void main( String[] args ) method in class:StartSolrJetty
/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/test/org/egothor/stemmer/
H A DTestCompile.java76 Compile.main(new String[] {"test", path});
87 Compile.main(new String[] {"-test", path});
98 Compile.main(new String[] {"Mtest", path});
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/facet/taxonomy/directory/
H A DTestAddTaxonomies.java168 // Check that all original categories in the main taxonomy remain in
188 // Check that all the new categories in the main taxonomy are in
207 TaxonomyReader main = new DirectoryTaxonomyReader(dirs[0]);
211 int otherord = main.getOrdinal(other.getPath(j));
223 for (int j=oldsize; j<main.getSize(); j++) {
225 CategoryPath path = main.getPath(j);
241 assertEquals(map[j], main.getOrdinal(others[i].getPath(j)));
249 main.close();
/lucene-3.6.0/lucene/contrib/facet/src/examples/org/apache/lucene/facet/example/adaptive/
H A DAdaptiveMain.java44 public static void main(String[] args) throws Exception { method in class:AdaptiveMain
/lucene-3.6.0/lucene/contrib/facet/src/examples/org/apache/lucene/facet/example/association/
H A DAssociationMain.java40 public static void main(String[] args) throws Exception { method in class:AssociationMain
/lucene-3.6.0/lucene/contrib/misc/src/java/org/apache/lucene/misc/
H A DGetTermInfo.java32 public static void main(String[] args) throws Exception { method in class:GetTermInfo
H A DIndexMergeTool.java35 public static void main(String[] args) throws IOException { method in class:IndexMergeTool
/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/
H A DDiffIt.java86 public static void main(java.lang.String[] args) { method in class:DiffIt
/lucene-3.6.0/dev-tools/scripts/
H A DbuildAndPushRelease.py155 def main(): function
178 main()
/lucene-3.6.0/lucene/contrib/analyzers/kuromoji/src/java/org/apache/lucene/analysis/ja/util/
H A DToStringUtil.java77 posTranslations.put("動詞-自立", "verb-main");
81 posTranslations.put("形容詞-自立", "adjective-main");
263 main: switch (ch) {
272 break main;
279 break main;
286 break main;
293 break main;
762 break main;
772 break main;
775 break main;
[all...]
/lucene-3.6.0/lucene/contrib/facet/src/examples/org/apache/lucene/facet/example/simple/
H A DSimpleMain.java43 public static void main(String[] args) throws Exception { method in class:SimpleMain
/lucene-3.6.0/lucene/contrib/icu/src/tools/java/org/apache/lucene/analysis/icu/
H A DRBBIRuleCompiler.java87 public static void main(String args[]) throws Exception { method in class:RBBIRuleCompiler

Completed in 120 milliseconds

1234