Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for isEmpty (0.41 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

                        ftpAuthList.add(ftpAuth);
                    }
                }
                if (!smbAuthList.isEmpty()) {
                    factoryParamMap.put(SmbClient.SMB_AUTHENTICATIONS_PROPERTY, smbAuthList.toArray(new SmbAuthentication[smbAuthList.size()]));
                }
                if (!smb1AuthList.isEmpty()) {
                    factoryParamMap.put(org.codelibs.fess.crawler.client.smb1.SmbClient.SMB_AUTHENTICATIONS_PROPERTY,
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

            if (entityList.isEmpty()) {
                return new int[] {};
            }
            return delegateBatchRequest(entityList, esEntity -> {
                return createInsertRequest(esEntity);
            });
        }
    
        protected int[] delegateBatchUpdate(List<? extends Entity> entityList, UpdateOption<? extends ConditionBean> option) {
            if (entityList.isEmpty()) {
                return new int[] {};
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

                    if (resultsPerPage instanceof Integer) {
                        form.num = (Integer) resultsPerPage;
                    }
                }
            }
    
            if (StringUtil.isBlank(form.q) && form.fields.isEmpty() && !form.hasConditionQuery()) {
                // redirect to index page
                form.q = null;
                return redirectToRoot();
            }
    
            try {
                buildFormParams(form);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

        }
    
        public void clearModifiedInfo() {
            __modifiedProperties.clear();
        }
    
        public boolean hasModification() {
            return !__modifiedProperties.isEmpty();
        }
    
        protected EntityModifiedProperties newModifiedProperties() {
            return new EntityModifiedProperties();
        }
    
        protected void registerModifiedProperty(String propertyName) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

        public void crawl(final String sessionId) {
            final List<DataConfig> configList = ComponentUtil.getCrawlingConfigHelper().getAllDataConfigList();
    
            if (configList.isEmpty()) {
                // nothing
                if (logger.isInfoEnabled()) {
                    logger.info("No crawling target data.");
                }
                return;
            }
    
            doCrawl(sessionId, configList);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            }
    
            final List<Map<String, String>> itemList = new ArrayList<>();
            final Set<String> roleSet = ComponentUtil.getRoleQueryHelper().build(searchRequestType);
            if (roleSet.isEmpty()) {
                for (final LabelTypeItem item : labelList) {
                    if (item.getPermissions().length == 0) {
                        final Map<String, String> map = new HashMap<>(2);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (2)
  7. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                anchorList.add(obj.toString());
            } else if (obj instanceof List<?>) {
                anchorList = (List<String>) obj;
            } else {
                return null;
            }
    
            if (anchorList.isEmpty()) {
                return null;
            }
    
            final Set<RequestData> childUrlSet = new LinkedHashSet<>();
            for (final String anchor : anchorList) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

                cb.query().setConfigId_Equal(configId);
                cb.query().setErrorCount_GreaterEqual(count);
                cb.fetchFirst(fessConfig.getPageFailureUrlMaxFetchSizeAsInteger());
            });
            if (list.isEmpty()) {
                return Collections.emptyList();
            }
    
            Pattern pattern = null;
            if (StringUtil.isNotBlank(ignoreFailureType)) {
                pattern = Pattern.compile(ignoreFailureType);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                        if (arList.isEmpty()) {
                            emptyListCount++;
                        } else {
                            emptyListCount = 0; // reset
                        }
                        long hitCount = ((EsResultList<EsAccessResult>) arList).getTotalHits();
                        while (hitCount > 0) {
                            if (arList.isEmpty()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

            runtime.registerData("labelTypeItems", labelTypeItems);
            runtime.registerData("displayLabelTypeItems", labelTypeItems != null && !labelTypeItems.isEmpty());
    
            Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            if (locale == null) {
                locale = Locale.ENGLISH;
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top