Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for QThread (0.19 sec)

  1. src/main/java/org/codelibs/fess/exec/Crawler.java

                SingletonLaContainerFactory.init();
    
                final Thread shutdownCallback = new Thread("ShutdownHook") {
                    @Override
                    public void run() {
                        destroyContainer();
                    }
    
                };
                Runtime.getRuntime().addShutdownHook(shutdownCallback);
    
                commandThread = new Thread(() -> {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

                        throwValidationError(messages -> messages.addErrorsFailedToInstallPlugin(GLOBAL, filename), this::asListHtml);
                    }
                    new Thread(() -> {
                        try {
                            final PluginHelper pluginHelper = ComponentUtil.getPluginHelper();
                            final Artifact artifact =
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/main/resources/crawler_es+crawlerThread.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" 
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<!-- Crawler Thread -->
    	<component name="crawlerThread" class="org.codelibs.fess.crawler.FessCrawlerThread" instance="prototype" >
    	</component>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Jan 28 04:42:09 GMT 2016
    - 342 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/Constants.java

        public static final int DEFAULT_INTERVAL_TIME_FOR_FS = 1000;
    
        public static final int DEFAULT_INTERVAL_TIME_FOR_WEB = 10000;
    
        public static final int DEFAULT_NUM_OF_THREAD_FOR_FS = 5;
    
        public static final int DEFAULT_NUM_OF_THREAD_FOR_WEB = 1;
    
        public static final long DEFAULT_CRAWLING_EXECUTION_INTERVAL = 5000L;
    
        public static final String CRAWLING_USER_AGENT_PREFIX = "Mozilla/5.0 (compatible; Fess/";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_message.properties

    errors.invalid_header_for_request_file=Invalid header: {0}
    errors.could_not_delete_logged_in_user=Could not delete logged in user.
    errors.unauthorized_request=Unauthorized request.
    errors.failed_to_print_thread_dump=Failed to print thread dump.
    errors.file_is_not_supported={0} is not supported.
    errors.plugin_file_is_not_found={0} is not found.
    errors.failed_to_install_plugin=Failed to install {0}.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/InputStreamThread.java

    import java.util.LinkedList;
    import java.util.List;
    import java.util.function.Consumer;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    
    public class InputStreamThread extends Thread {
        private static final Logger logger = LogManager.getLogger(InputStreamThread.class);
    
        private final BufferedReader br;
    
        public static final int MAX_BUFFER_SIZE = 1000;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/WebConfigTests.java

            final String urls = "http://" + NAME_PREFIX + id;
            requestBody.put(KEY_PROPERTY, keyProp);
            requestBody.put("urls", urls);
            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;
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

        }
    
        protected ExecutorService newFixedThreadPool(final int nThreads) {
            if (logger.isDebugEnabled()) {
                logger.debug("Executor Thread Pool: {}", nThreads);
            }
            return new ThreadPoolExecutor(nThreads, nThreads, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<>(nThreads),
                    new ThreadPoolExecutor.CallerRunsPolicy());
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_de.properties

    labels.excluded_doc_paths=Ausgeschlossene Pfade bei der Indizierung
    labels.config_parameter=Konfigurationsparameter
    labels.max_access_count=Max. Anzahl an Zugriffen
    labels.number_of_thread=Thread-Anzahl
    labels.interval_time=Zeitintervall
    labels.millisec=ms
    labels.permissions=Berechtigungen
    labels.virtual_hosts=Virtuelle Hosts
    labels.virtual_host=Virtueller Host
    labels.label_type=Label
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/it/admin/WebAuthTests.java

            requestBody.put("name", "test_webconfig");
            requestBody.put("urls", "http://www.example.com");
            requestBody.put("user_agent", "Mozilla/5.0");
            requestBody.put("num_of_thread", 5);
            requestBody.put("interval_time", 1000);
            requestBody.put("boost", 100.0);
            requestBody.put("available", true);
            requestBody.put("sort_order", 1);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
Back to top