Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Chen (0.01 sec)

  1. FessEnv.java

    not found, exception) L57: * @throws ConfigPropertyNotFoundException When the property is not found. L58: */ L59: String get(String propertyKey); L60: L61: /** L62: * Is the property true? L63: * @param propertyKey The key of the property which is boolean type. (NotNull) L64: * @return The determination, true or false. (if not found, exception) L65: * @throws ConfigPropertyNotFoundException When the property is not found. L66: */ L67: boolean is(String propertyKey);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  2. EsAbstractEntity.java

    propertyName); // synchronize if exists, basically for user's manual call L89: } L90: L91: public void modifiedToSpecified() { L92: if (__modifiedProperties.isEmpty()) { L93: return; // basically no way when called in Framework (because called when SpecifyColumn exists) L94: } L95: __specifiedProperties = newModifiedProperties(); L96: __specifiedProperties.accept(__modifiedProperties); L97: } L98: L99: // ========================================...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.9K bytes
  3. FessMultipartRequestHandler.java

    ========= L70: // keeping parsed request parameters, normal texts or uploaded files L71: // keys are requested parameter names (treated as field name here) L72: protected Map<String, Object> elementsAll; // lazy-loaded, then after not null L73: protected Map<String, MultipartFormFile> elementsFile; // me too L74: protected Map<String, String[]> elementsText; // me too L75: L76: // ===================================================================================...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Oct 23 13:27:21 UTC 2024
      18.6K bytes
  4. EsAbstractEntity.java

    propertyName); // synchronize if exists, basically for user's manual call L89: } L90: L91: public void modifiedToSpecified() { L92: if (__modifiedProperties.isEmpty()) { L93: return; // basically no way when called in Framework (because called when SpecifyColumn exists) L94: } L95: __specifiedProperties = newModifiedProperties(); L96: __specifiedProperties.accept(__modifiedProperties); L97: } L98: L99: // ========================================...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.9K bytes
  5. SuggestHelper.java

    Count())); L238: reader.addSort(SortBuilders.scoreSort()); L239: return reader; L240: }, docPerReq, () -> { L241: systemHelper.calibrateCpuLoad(); L242: ThreadUtil.sleep(interval); L243: }).then(response -> { L244: refresh(); L245: success.accept(true); L246: }).error(t -> error.accept(t)); L247: } L248: L249: public void purgeDocumentSuggest(final LocalDateTime time) { L250: final BoolQueryBuilder...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.1K bytes
  6. CrawlTestBase.java

    ase.class); L38: L39: private static final String DOC_INDEX_NAME = "fess.search"; L40: L41: protected static void createJob(final Map<String, Object> requestBody) { L42: checkMethodBase(requestBody).put("/api/admin/scheduler/setting").then().body("response.created", equalTo(true)) L43: .body("response.status", equalTo(0)); L44: } L45: L46: protected static void startJob(final String namePrefix) { L47: for (int i = 0; i < 30; i++) { L48: final Map<String,...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  7. EsAbstractEntity.java

    propertyName); // synchronize if exists, basically for user's manual call L89: } L90: L91: public void modifiedToSpecified() { L92: if (__modifiedProperties.isEmpty()) { L93: return; // basically no way when called in Framework (because called when SpecifyColumn exists) L94: } L95: __specifiedProperties = newModifiedProperties(); L96: __specifiedProperties.accept(__modifiedProperties); L97: } L98: L99: // ========================================...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.9K bytes
Back to top