Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for country (8.17 sec)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final StringBuilder buf = new StringBuilder(100);
            buf.append("/WEB-INF/view/").append(page);
            if (StringUtil.isNotBlank(lang)) {
                buf.append('_').append(lang);
                if (StringUtil.isNotBlank(country)) {
                    buf.append('_').append(country);
                }
            }
            buf.append(".jsp");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                long counter = 0;
                final Deque<String> urlQueue = new LinkedList<>();
                final Set<String> processedUrls = new HashSet<>();
                urlQueue.offer(url);
                while (!urlQueue.isEmpty() && (maxAccessCount < 0 || counter < maxAccessCount)) {
                    counter++;
                    final Map<String, Object> localDataMap =
    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)
  3. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFailureUrlCA.java

            }
        }
    
        public void setConfigId_Count() {
            setConfigId_Count(null);
        }
    
        public void setConfigId_Count(ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            setConfigId_Count("configId", opLambda);
        }
    
        public void setConfigId_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 46.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsRequestHeaderCA.java

            }
        }
    
        public void setCreatedBy_Count() {
            setCreatedBy_Count(null);
        }
    
        public void setCreatedBy_Count(ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            setCreatedBy_Count("createdBy", opLambda);
        }
    
        public void setCreatedBy_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 46.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsGroupCA.java

            }
        }
    
        public void setGidNumber_Count() {
            setGidNumber_Count(null);
        }
    
        public void setGidNumber_Count(ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            setGidNumber_Count("gidNumber", opLambda);
        }
    
        public void setGidNumber_Count(String name, ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/CrawlJob.java

                        }
                        counter.incrementAndGet();
                    } else if (logger.isDebugEnabled()) {
                        logger.debug("{} is not running.", scheduledJob.getId());
                    }
                }
            });
            return counter.get();
        }
    
        protected void executeCrawler() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ru.properties

    labels.searchlog_log_type_search_reqtimeavg_day=Request Time Avg. by Day
    labels.searchlog_log_type_click_count=Click Count
    labels.searchlog_log_type_favorite_count=Favorite Count
    labels.searchlog_log_message=Message
    labels.searchlog_requested_time=Time
    labels.searchlog_value=Value
    labels.searchlog_count=Count
    labels.searchlog_configuration_details=Log Details
    labels.searchlog_configuration_link_top=Search Log
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_config.properties

    index.user.initial_password=admin
    
    # field names
    index.field.favorite_count=favorite_count
    index.field.click_count=click_count
    index.field.config_id=config_id
    index.field.expires=expires
    index.field.url=url
    index.field.doc_id=doc_id
    index.field.id=_id
    index.field.version=_version
    index.field.seq_no=_seq_no
    index.field.primary_term=_primary_term
    index.field.lang=lang
    index.field.has_cache=has_cache
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            }
        }
    
        public void waitForNoWaitingThreads() {
            int count = waitingThreadNames.size();
            while (count > 0) {
                if (logger.isInfoEnabled()) {
                    logger.info("{} waiting thread(s).", count);
                }
                ThreadUtil.sleep(systemCpuCheckInterval);
                count = waitingThreadNames.size();
            }
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  10. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                                            final Integer count = clickCountMap.get(docId);
                                            final Script script = ComponentUtil.getLanguageHelper().createScript(doc,
                                                    "ctx._source." + fessConfig.getIndexFieldClickCount() + "+=" + count.toString());
    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)
Back to top