Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for ok (0.12 sec)

  1. src/test/java/org/codelibs/fess/validation/UriTypeValidatorTest.java

     */
    package org.codelibs.fess.validation;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class UriTypeValidatorTest extends UnitFessTestCase {
        public void test_check_ok() {
            String[] protocols;
            String values;
    
            protocols = new String[] { "http:" };
            values = "http://www.foo.com/";
            assertTrue(UriTypeValidator.check(protocols, values));
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

        @Execute
        public JsonResponse<ApiResult> files() {
            final List<Map<String, String>> list = getBackupItems();
            return asJson(new ApiBackupFilesResponse().files(list).total(list.size()).status(ApiResult.Status.OK).result());
        }
    
        // GET /api/admin/backup/file/{id}
        @Execute
        public StreamResponse get$file(final String id) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/packaging/common/scripts/postinst

        # this tries to start the fess service on these
        # as well without failing this script
        elif [ -x /etc/rc.d/init.d/fess ] ; then
            /etc/rc.d/init.d/fess restart || true
        fi
        echo " OK"
    fi
    
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

        @Execute
        @Secured({ ROLE })
        public HtmlResponse deleteall() {
            verifyToken(this::asListHtml);
            final List<String> jobStatusList = new ArrayList<>();
            jobStatusList.add(Constants.OK);
            jobStatusList.add(Constants.FAIL);
            jobLogService.deleteByJobStatus(jobStatusList);
            jobLogPager.clear();
            saveInfo(messages -> messages.addSuccessJobLogDeleteAll(GLOBAL));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exec/Crawler.java

                }
                if (hotThreadMonitorTask != null) {
                    hotThreadMonitorTask.cancel();
                }
                destroyContainer();
            }
    
            if (exitCode != Constants.EXIT_OK) {
                System.exit(exitCode);
            }
        }
    
        private static void destroyContainer() {
            if (running.getAndSet(false)) {
                TimeoutManager.getInstance().stop();
    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)
  6. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp

                                                            <c:when test="${data.jobStatus == 'ok'}">
    																		<span class="badge bg-primary"><la:message
                                                                                    key="labels.joblog_status_ok"/></span>
                                                            </c:when>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 11.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/Constants.java

        public static final String READY = "ready";
    
        public static final String RUNNING = "running";
    
        public static final String DONE = "done";
    
        public static final String OK = "ok";
    
        public static final String FAIL = "fail";
    
        public static final String STOP = "stop";
    
        public static final String AUTO = "auto";
    
        public static final String NONE = "none";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

            }
            if (Files.exists(filePath)) {
                try (InputStream in = Files.newInputStream(filePath); ServletOutputStream out = response.getOutputStream()) {
                    response.setStatus(HttpServletResponse.SC_OK);
                    writeHeaders(response);
                    CopyUtil.copy(in, out);
                } catch (final ClientAbortException e) {
                    logger.debug("Client aborts this request.", e);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

                            .map(stopwordsItem -> createEditBody(stopwordsItem, dictId)).collect(Collectors.toList()))
                    .status(ApiResult.Status.OK).result());
        }
    
        // GET /api/admin/dict/stopwords/setting/{dictId}/{id}
        @Execute
        public JsonResponse<ApiResult> get$setting(final String dictId, final long id) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                                    .filter(QueryBuilders.termQuery(EsAccessResult.STATUS, org.codelibs.fess.crawler.Constants.OK_STATUS));
                    builder.setQuery(queryBuilder);
                    builder.setFrom(0);
                    final int maxDocumentCacheSize = fessConfig.getIndexerWebfsMaxDocumentCacheSizeAsInteger();
    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)
Back to top