Package org.opensolaris.opengrok.search

Examples of org.opensolaris.opengrok.search.SearchEngine.search()


    }

    if (valid) {
      long start = System.currentTimeMillis();
     
      int numResults = engine.search();
      int maxResults = MAX_RESULTS;
      String maxResultsParam = req.getParameter(PARAM_MAXRESULTS);
      if (maxResultsParam != null) {
        try {
          maxResults = Integer.parseInt(maxResultsParam);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.