Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setRobotsTxtUrlSet (0.06 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java

            return robotsTxtUrlSet;
        }
    
        /**
         * Sets the set of robots.txt URLs.
         * @param robotsTxtUrlSet The set of robots.txt URLs.
         */
        public void setRobotsTxtUrlSet(final Set<String> robotsTxtUrlSet) {
            this.robotsTxtUrlSet = robotsTxtUrlSet;
        }
    
        /**
         * Returns the lock object for active thread count.
         * @return The lock object.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java

            newSet.add("http://new.com/robots.txt");
            crawlerContext.setRobotsTxtUrlSet(newSet);
            assertSame(newSet, crawlerContext.getRobotsTxtUrlSet());
            assertEquals(1, crawlerContext.getRobotsTxtUrlSet().size());
    
            // Set null
            crawlerContext.setRobotsTxtUrlSet(null);
            assertNull(crawlerContext.getRobotsTxtUrlSet());
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top