Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Darwin (0.21 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEXER_FAVORITE_COUNT_ENABLED = "indexer.favorite.count.enabled";
    
        /** The key of the configuration. e.g. 5000 */
        String INDEXER_WEBFS_COMMIT_MARGIN_TIME = "indexer.webfs.commit.margin.time";
    
        /** The key of the configuration. e.g. 3600 */
        String INDEXER_WEBFS_MAX_EMPTY_LIST_COUNT = "indexer.webfs.max.empty.list.count";
    
        /** The key of the configuration. e.g. 10000 */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  2. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

                // System.out.println(resultData.toString());
            }
    
            long margin = 5000000L;
            System.gc();
            for (int i = 0; i < 30; i++) {
                if (MemoryUtil.getUsedMemory() < current + margin) {
                    break;
                }
                System.gc();
                Thread.sleep(1000L);
            }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 38.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    crawler.document.cache.html.mimetypes=text/html
    
    # indexer
    indexer.thread.dump.enabled=true
    indexer.unprocessed.document.size=1000
    indexer.click.count.enabled=true
    indexer.favorite.count.enabled=true
    indexer.webfs.commit.margin.time=5000
    indexer.webfs.max.empty.list.count=3600
    indexer.webfs.update.interval=10000
    indexer.webfs.max.document.cache.size=10
    indexer.webfs.max.document.request.size=1048576
    indexer.data.max.document.cache.size=10000
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
Back to top