Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for detect (0.05 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. 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
  5. BsElevateWordToLabelBhv.java

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

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

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

    source, RESULT result) { L90: return result; L91: } L92: L93: // =================================================================================== L94: // Select L95: // ====== L96: public int selectCount(CBCall<ThumbnailQueueCB> cbLambda) { L97: return facadeSelectCount(createCB(cbLambda)); L98: } L99: L100: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.8K bytes
  9. 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
  10. BsFileAuthenticationBhv.java

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