Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for fails (0.02 sec)

  1. DefaultQueryBuilderTest.java

    public void test_invalid_null() { L23: try { L24: new DefaultQueryBuilder(null); L25: fail(); L26: } catch (IllegalArgumentException e) { L27: // nothing L28: } L29: } L30: L31: public void test_invalid_query() { L32: try { L33: new DefaultQueryBuilder(QueryBuilders.matchAllQuery()); L34: fail(); L35: } catch (IllegalArgumentException e) { L36: // nothing L37: } L38: } L39:}...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Jul 11 08:26:36 UTC 2024
      1.2K bytes
  2. TermQueryCommandTest.java

    imestamp\":{\"order\":\"asc\"}}", "sort:timestamp.asc"); L117: assertQueryBuilder("{\"timestamp\":{\"order\":\"desc\"}}", "sort:timestamp.desc"); L118: L119: try { L120: assertQueryBuilder("", "sort:xxx"); L121: fail(); L122: } catch (InvalidQueryException e) { L123: // nothing L124: } L125: } L126: L127: public void test_convertTermQuery_dismax() throws Exception { L128: setQueryType("dismax"); L129: assertQueryBui...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Jul 11 08:26:36 UTC 2024
      9.2K bytes
  3. QueryHelperTest.java

    buildQuery("sort:timestamp.desc sort:last_modified.desc")); L376: L377: try { L378: buildQuery("sort:timestamp.xxx"); L379: fail(); L380: } catch (InvalidQueryException e) { L381: // ok L382: } L383: L384: try { L385: buildQuery("sort:aaa"); L386: fail(); L387: } catch (InvalidQueryException e) { L388: // ok L389: } L390: } L391: L392: public void test_build_fuzzy() { L393: ...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Jul 11 08:26:36 UTC 2024
      39.8K bytes
  4. Crawler.java

    if (Constants.TRUE.equalsIgnoreCase(infoMap.get(Constants.CRAWLER_STATUS))) { L449: postcard.setStatus(Constants.OK); L450: } else { L451: postcard.setStatus(Constants.FAIL); L452: } L453: postcard.setJobname(systemProperties.getProperty("job.runtime.name", StringUtil.EMPTY)); L454: }); L455: } finally { L456: SMailCallbackContext.clearPre...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      24K bytes
  5. FessXpathTransformerTest.java

    Data("X-Robots-Tag", "noindex,nofollow"); L322: L323: try { L324: transformer.processXRobotsTag(responseData, new ResultData()); L325: fail(); L326: } catch (ChildUrlsException e) { L327: assertTrue(e.getChildUrlList().isEmpty()); L328: } catch (Exception e) { L329: fail(); L330: } L331: } L332: L333: public void test_processXRobotsTag_noindex() throws Exception { L334: final String data = "<meta name=\"robots\"...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      41.3K bytes
  6. Constants.java

    static final String READY = "ready"; L45: L46: public static final String RUNNING = "running"; L47: L48: public static final String DONE = "done"; L49: L50: public static final String OK = "ok"; L51: L52: public static final String FAIL = "fail"; L53: L54: public static final String STOP = "stop"; L55: L56: public static final String AUTO = "auto"; L57: L58: public static final String NONE = "none"; L59: L60: public static final String ITEM_LABEL = "label"; L61: L62: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Aug 22 12:43:18 UTC 2024
      16.6K bytes
Back to top