Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Middle (2.09 sec)

  1. fess-crawler/src/test/resources/org/codelibs/fess/crawler/helper/robots_wildcard.txt

    User-agent: SameLengthBot
    Disallow: /page
    Allow: /page
    
    # Test multiple wildcards
    User-agent: MultiWildcardBot
    Disallow: /*.cgi*
    Disallow: /*?*id=*
    
    # Test literal $ in middle of pattern
    User-agent: DollarBot
    Disallow: /price$info
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 14:03:41 UTC 2025
    - 910 bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            assertTrue(robotsTxt.allows("/page?name=test", "MultiWildcardBot")); // no id=
    
            // Test DollarBot - literal $ in middle of pattern
            // Disallow: /price$info - $ in middle should be treated as literal
            assertFalse(robotsTxt.allows("/price$info", "DollarBot"));
            assertTrue(robotsTxt.allows("/priceinfo", "DollarBot"));
    
            // Test sitemaps
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java

                        // End-of-path: matches the end of the URL
                        if (i == pattern.length() - 1) {
                            regex.append("$");
                        } else {
                            // $ in the middle is treated as a literal character
                            regex.append("\\$");
                        }
                    } else {
                        // Escape special regex characters
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            this.connectionCheckInterval = connectionCheckInterval;
        }
    
        /**
         * Sets the idle connection timeout in milliseconds.
         *
         * @param idleConnectionTimeout The idle connection timeout
         */
        public void setIdleConnectionTimeout(final long idleConnectionTimeout) {
            this.idleConnectionTimeout = idleConnectionTimeout;
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 53.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    crawler.ignore.content.exception=true
    # HTTP status codes considered as failure URLs.
    crawler.failure.url.status.codes=404
    # Interval (seconds) for system monitor during crawling.
    crawler.system.monitor.interval=60
    # Whether to ignore idle threads in hot thread monitoring.
    crawler.hotthread.ignore_idle_threads=true
    # Interval for hot thread monitoring (e.g., 500ms).
    crawler.hotthread.interval=500ms
    # Number of snapshots for hot thread monitoring.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        Integer getCrawlerSystemMonitorIntervalAsInteger();
    
        /**
         * Get the value for the key 'crawler.hotthread.ignore_idle_threads'. <br>
         * The value is, e.g. true <br>
         * comment: Whether to ignore idle threads in hot thread monitoring.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerHotthreadIgnoreIdleThreads();
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
Back to top