Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for unavailable (0.43 sec)

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

        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
            return "FileConfig [available=" + available + ", boost=" + boost + ", configParameter=" + configParameter + ", createdBy="
                    + createdBy + ", createdTime=" + createdTime + ", depth=" + depth + ", excludedDocPaths=" + excludedDocPaths
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/admin/WebConfigTests.java

            requestBody.put("user_agent", "Mozilla/5.0");
            requestBody.put("num_of_thread", 5);
            requestBody.put("interval_time", 1000);
            requestBody.put("boost", id);
            requestBody.put("available", true);
            requestBody.put("sort_order", id);
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            requestBody.put("depth", 1);
            requestBody.put("num_of_thread", 1);
            requestBody.put("interval_time", 1000);
            requestBody.put("boost", 100);
            requestBody.put("available", true);
            requestBody.put("sort_order", 0);
            createWebConfig(requestBody);
        }
    
        private static void createJob() {
            final Map<String, Object> requestBody = new HashMap<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        @ValidateTypeFailure
        public Integer intervalTime;
    
        @Required
        @ValidateTypeFailure
        public Float boost;
    
        @Required
        @Size(max = 5)
        public String available;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String permissions;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String virtualHosts;
    
        @Required
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                }
                ThreadUtil.sleep(1000L);
            }
            final String message =
                    "Fesen (" + SystemUtil.getSearchEngineHttpAddress() + ") is not available. Check the state of your Fesen cluster ("
                            + clusterName + ") in " + (systemHelper.getCurrentTimeAsLong() - startTime) + "ms.";
            throw new ContainerInitFailureException(message, cause);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static List<Runnable> initProcesses = new ArrayList<>();
    
        private ComponentUtil() {
        }
    
        public static void processAfterContainerInit(final Runnable process) {
            if (available()) {
                process.run();
            } else {
                initProcesses.add(process);
            }
        }
    
        public static void doInitProcesses(final Consumer<? super Runnable> action) {
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. src/packaging/deb/init.d/fess

        fi
    done
    export JAVA_HOME
    
    # Directory where the Fess binary distribution resides
    FESS_HOME=${packaging.fess.home.dir}
    
    # Heap size defaults to 256m min, 1g max
    # Set FESS_HEAP_SIZE to 50% of available RAM, but no more than 31g
    #FESS_HEAP_SIZE=2g
    
    # Heap new generation
    #FESS_HEAP_NEWSIZE=
    
    # max direct memory
    #FESS_DIRECT_SIZE=
    
    # Additional Java OPTS
    #FESS_JAVA_OPTS=
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                            urlQueue.getUrl(), urlQueue.getDepth() != null ? urlQueue.getDepth() + 1 : 1);
                } catch (final Throwable t) {
                    if (!ComponentUtil.available()) {
                        throw new ContainerNotAvailableException(t);
                    }
                    throw t;
                }
            }
        }
    
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Realm */
        public static final String LABELS_AUTH_REALM = "{labels.authRealm}";
    
        /** The key of the message: Status */
        public static final String LABELS_AVAILABLE = "{labels.available}";
    
        /** The key of the message: Created by */
        public static final String LABELS_CREATED_BY = "{labels.createdBy}";
    
        /** The key of the message: Created Time */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_ru.properties

    labels.authRealm=Realm
    labels.available=Статус
    labels.createdBy=Создано
    labels.createdTime=Время создания
    labels.depth=Глубина
    labels.excludedPaths=Исключенные пути для сканирования
    labels.excludedUrls=Исключенные URLs для сканирования
    labels.excludedDocPaths=Исключенные пути для индексаци
    labels.excludedDocUrls=Исключенные URLs для индексации
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Включить путь для сканирования
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
Back to top