Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for detect (0.08 sec)

  1. LanguageHelper.java

    String text) { L89: if (StringUtil.isBlank(text)) { L90: return null; L91: } L92: final String target = getDetectText(text); L93: final LanguageResult result = detector.detect(target); L94: if (logger.isDebugEnabled()) { L95: logger.debug("detected lang:{}({}) from {}", result, result.getRawScore(), target); L96: } L97: return getSupportedLanguage(result.getLanguage()); L98: } L99: L100: protected String getDetectText(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.5K bytes
  2. FessConfig.java

    getIndexerLanguageFields(); L3536: L3537: /** L3538: * Get the value for the key 'indexer.language.detect.length'. <br> L3539: * The value is, e.g. 1000 <br> L3540: * @return The value of found property. (NotNull: if not found, exception but basically no way) L3541: */ L3542: String getIndexerLanguageDetectLength(); L3543: L3544: /** L3545: * Get the value for the key 'indexer.language.detect.length' as {@link Integer}. <br> L3546: * The value is, e.g. 1000 <br> L3547: * @return...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
  3. ScheduledJobBhv.java

    } catch (final Exception e) { L54: if (logger.isDebugEnabled()) { L55: logger.debug("Failed to select a job by {}", id, e); L56: } L57: lastException = e; L58: ThreadUtil.sleep(RandomUtils.nextLong(500, 5000)); L59: } L60: } L61: logger.warn("Failed to select a job by {}", id, lastException); L62: return OptionalEntity.empty(); L63: } L64:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.2K bytes
  4. FessBaseAction.java

    alidatable; L48:import org.lastaflute.web.validation.VaMessenger; L49: L50:import jakarta.annotation.Resource; L51: L52:/** L53: * @author jflute L54: */ L55:public abstract class FessBaseAction extends TypicalAction // has several interfaces for direct use L56: implements LaValidatable<FessMessages>, FessHtmlPath { L57: L58: // =================================================================================== L59: // ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      9.3K bytes
  5. BsBoostDocumentRuleBhv.java

    source, RESULT result) { L91: return result; L92: } L93: L94: // =================================================================================== L95: // Select L96: // ====== L97: public int selectCount(CBCall<BoostDocumentRuleCB> cbLambda) { L98: return facadeSelectCount(createCB(cbLambda)); L99: } L100: L101: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.1K bytes
  6. BsRelatedContentBhv.java

    source, RESULT result) { L92: return result; L93: } L94: L95: // =================================================================================== L96: // Select L97: // ====== L98: public int selectCount(CBCall<RelatedContentCB> cbLambda) { L99: return facadeSelectCount(createCB(cbLambda)); L100: } L101: L102: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  7. BsWebAuthenticationBhv.java

    source, RESULT result) { L96: return result; L97: } L98: L99: // =================================================================================== L100: // Select L101: // ====== L102: public int selectCount(CBCall<WebAuthenticationCB> cbLambda) { L103: return facadeSelectCount(createCB(cbLambda)); L104: } L105: L106:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.4K bytes
  8. BsSearchLogBhv.java

    RESULT result) { L103: return result; L104: } L105: L106: // =================================================================================== L107: // Select L108: // ====== L109: public int selectCount(CBCall<SearchLogCB> cbLambda) { L110: return facadeSelectCount(createCB(cbLambda)); L111: } L112: L113: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.5K bytes
  9. BsUserBhv.java

    RESULT result) { L124: return result; L125: } L126: L127: // =================================================================================== L128: // Select L129: // ====== L130: public int selectCount(CBCall<UserCB> cbLambda) { L131: return facadeSelectCount(createCB(cbLambda)); L132: } L133: L134: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      12K bytes
  10. BsCrawlingInfoBhv.java

    source, RESULT result) { L88: return result; L89: } L90: L91: // =================================================================================== L92: // Select L93: // ====== L94: public int selectCount(CBCall<CrawlingInfoCB> cbLambda) { L95: return facadeSelectCount(createCB(cbLambda)); L96: } L97: L98: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.5K bytes
Back to top