Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for things (0.34 sec)

  1. src/main/webapp/WEB-INF/fe.tld

        <function-signature>java.lang.String sdh(java.lang.String)</function-signature>
        <example>${fe:sdh(doc.similar_docs_hash)}</example>
      </function>
    
      <function>
        <description>Concatenate strings.</description>
        <name>join</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String join(java.lang.Object)</function-signature>
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu May 28 07:49:35 GMT 2020
    - 10K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

            synonymItem.setNewInputs(StringUtil.EMPTY_STRINGS);
            synonymItem.setNewOutputs(StringUtil.EMPTY_STRINGS);
            try (SynonymUpdater updater = new SynonymUpdater(item)) {
                reload(updater);
            }
        }
    
        protected void reload(final SynonymUpdater updater) {
            try (CurlResponse curlResponse = dictionaryManager.getContentResponse(this)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE, form.dictId);
            validate(form, messages -> {}, this::asEditHtml);
            verifyToken(this::asEditHtml);
            createCharMappingItem(form, this::asEditHtml).ifPresent(entity -> {
                try {
                    charMappingService.store(form.dictId, entity);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        }
    
        public void setUserCheckInterval(final long userCheckInterval) {
            this.userCheckInterval = userCheckInterval;
        }
    
        public void setUserInfoCacheSize(final int userInfoCacheSize) {
            this.userInfoCacheSize = userInfoCacheSize;
        }
    
        public void setLoggerName(final String loggerName) {
            this.loggerName = loggerName;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                this.basePath = basePath;
                this.imageExtention = imageExtention;
                this.expiry = expiry;
                this.fessConfig = ComponentUtil.getFessConfig();
                this.maxPurgeSize = fessConfig.getPageThumbnailPurgeMaxFetchSizeAsInteger();
                this.searchEngineClient = ComponentUtil.getSearchEngineClient();
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                });
            } catch (final ExecutionException e) {
                logger.warn("Failed to process a group cache.", e);
                return new Pair<>(StringUtil.EMPTY_STRINGS, StringUtil.EMPTY_STRINGS);
            }
        }
    
        protected void processGroup(final AzureAdUser user, final List<String> groupList, final List<String> roleList, final String id) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/Crawler.java

                    final String[] toAddresses;
                    if (StringUtil.isNotBlank(toStrs)) {
                        toAddresses = toStrs.split(",");
                    } else {
                        toAddresses = StringUtil.EMPTY_STRINGS;
                    }
                    final NotificationHelper notificationHelper = ComponentUtil.getNotificationHelper();
                    SMailCallbackContext.setPreparedMessageHookOnThread(notificationHelper::send);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE, form.dictId);
            validate(form, messages -> {}, this::asEditHtml);
            verifyToken(this::asEditHtml);
            createSynonymItem(form, this::asEditHtml).ifPresent(entity -> {
                try {
                    synonymService.store(form.dictId, entity);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

            mappingItem.setNewInputs(StringUtil.EMPTY_STRINGS);
            mappingItem.setNewOutput(StringUtil.EMPTY);
            try (MappingUpdater updater = new MappingUpdater(item)) {
                reload(updater);
            }
        }
    
        protected void reload(final MappingUpdater updater) {
            try (CurlResponse curlResponse = dictionaryManager.getContentResponse(this)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                    }
                    if (!langSet.isEmpty()) {
                        return langSet.toArray(new String[langSet.size()]);
                    }
                }
            }
            return StringUtil.EMPTY_STRINGS;
        }
    
        public OptionalEntity<Map<String, Object>> getDocumentByDocId(final String docId, final String[] fields,
                final OptionalThing<FessUserBean> userBean) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
Back to top