Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for Account (0.14 sec)

  1. src/test/resources/before_script.sh

    temp_json_file=/tmp/fess-log.$$
    touch ${temp_json_file}
    error_count=0
    while true ; do
      status=$(curl -w '%{http_code}\n' -s -o ${temp_json_file} "http://localhost:8080/api/v1/health")
      cat ${temp_json_file}
      if [[ x"${status}" = x200 ]] ; then
        break
      else
        error_count=$((error_count + 1))
      fi
      if [[ ${error_count} -ge 60 ]] ; then
        echo "Fess is not available."
    Shell Script
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 10 03:25:34 GMT 2024
    - 863 bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/timer/TimeoutManagerTest.java

            assertNull(TimeoutManager.getInstance().thread);
            Thread.sleep(10);
            int count = expiredCount;
            task.stop();
            TimeoutManager.getInstance().start();
            assertNotNull(TimeoutManager.getInstance().thread);
            Thread.sleep(2000);
            assertEquals(count, expiredCount);
            assertEquals(1, TimeoutManager.getInstance().getTimeoutTaskCount());
            task.cancel();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/main/config/openapi/openapi-user.yaml

                      page_number:
                        type: integer
                        example: 1
                      record_count:
                        type: integer
                        format: int64
                        example: 31625
                      page_count:
                        type: integer
                        example: 1
                      highlight_params:
                        type: string
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

    public class CrawlingInfoHelper {
        private static final Logger logger = LogManager.getLogger(CrawlingInfoHelper.class);
    
        public static final String FACET_COUNT_KEY = "count";
    
        protected Map<String, String> infoMap;
    
        protected Long documentExpires;
    
        protected int maxSessionIdsInList;
    
        protected CrawlingInfoService getCrawlingInfoService() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    .setPreference(Constants.SEARCH_PREFERENCE_LOCAL)).execute().actionGet(fessConfig.getIndexScrollSearchTimeout());
    
            int count = 0;
            String scrollId = response.getScrollId();
            try {
                while (scrollId != null) {
                    final SearchHits searchHits = response.getHits();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                    final long count = indexingHelper.deleteDocumentByQuery(searchEngineClient,
                            QueryBuilders.prefixQuery(fessConfig.getIndexFieldUrl(), url));
                    if (logger.isDebugEnabled()) {
                        logger.debug("Deleted {} docs for {}*", count, url);
                    }
                } else {
                    deleteUrlList.add(url);
    
    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)
  7. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

                if (field.equals(f)) {
                    flag = true;
                }
            }
            return flag;
        }
    
        public boolean isFacetSortValue(final String sort) {
            return "count".equals(sort) || "index".equals(sort);
        }
    
        public void setApiResponseFields(final String[] fields) {
            apiResponseFieldSet = new HashSet<>();
            Collections.addAll(apiResponseFieldSet, fields);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsWebAuthenticationCA.java

            }
        }
    
        public void setAuthRealm_Count() {
            setAuthRealm_Count(null);
        }
    
        public void setAuthRealm_Count(ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            setAuthRealm_Count("authRealm", opLambda);
        }
    
        public void setAuthRealm_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
    - 76.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFileAuthenticationCA.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
    - 71.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsRelatedContentCA.java

            }
        }
    
        public void setContent_Count() {
            setContent_Count(null);
        }
    
        public void setContent_Count(ConditionOptionCall<ValueCountAggregationBuilder> opLambda) {
            setContent_Count("content", opLambda);
        }
    
        public void setContent_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
    - 55K bytes
    - Viewed (0)
Back to top