Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for void (0.02 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java

         * Test basic initialization with session ID
         */
        public void test_init_withSessionId() {
            String sessionId = "test-session-001";
            urlFilter.init(sessionId);
            // Initialization should complete without errors
            assertNotNull(urlFilter);
        }
    
        /**
         * Test initialization with null session ID
         */
        public void test_init_withNullSessionId() {
            urlFilter.init(null);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java

            } finally {
                server.stop();
            }
        }
    
        public void test_parseLastModified() {
            final String value = "Mon, 01 Jun 2009 21:02:45 GMT";
            final Date date = httpClient.parseLastModifiedDate(value);
            assertNotNull(date);
        }
    
        public void test_processRobotsTxt() {
            final CrawlerWebServer server = new CrawlerWebServer(7070);
            server.start();
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java

                return lastResponseData;
            }
    
            public void setReturnedResultData(ResultData resultData) {
                this.returnedResultData = resultData;
            }
    
            public void setThrowException(boolean throwException) {
                this.throwException = throwException;
            }
    
            public void reset() {
                transformCallCount = 0;
                lastResponseData = null;
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

         *
         * @param charset the charset to set
         */
        public void setCharset(final String charset) {
            this.charset = charset;
        }
    
        /**
         * Sets the SMB1 authentication holder.
         *
         * @param smbAuthenticationHolder the SMB1 authentication holder to set
         */
        public void setSmbAuthenticationHolder(final SmbAuthenticationHolder smbAuthenticationHolder) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 23K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

            public int getId() {
                return id;
            }
    
            public boolean isDestroyed() {
                return destroyed;
            }
    
            public void destroy() {
                this.destroyed = true;
            }
    
            public static void resetCounter() {
                instanceCounter.set(0);
            }
        }
    
        /**
         * Singleton test component for testing singleton behavior
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java

                return matchResult;
            }
    
            public void setMatchResult(boolean matchResult) {
                this.matchResult = matchResult;
            }
    
            public int getMatchCallCount() {
                return matchCallCount;
            }
    
            public ResponseData getLastResponseData() {
                return lastResponseData;
            }
    
            public void resetCounters() {
                matchCallCount = 0;
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java

         */
        public void test_constructor_withNullMessage() {
            CrawlerSystemException exception = new CrawlerSystemException((String) null);
    
            assertNotNull(exception);
            assertNull(exception.getMessage());
            assertNull(exception.getCause());
        }
    
        /**
         * Test constructor with empty message
         */
        public void test_constructor_withEmptyMessage() {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 20K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java

            public ExceptionThrowingTransformer(String name) {
                this.name = name;
            }
    
            public void setThrowInTransform(boolean throwInTransform) {
                this.throwInTransform = throwInTransform;
            }
    
            public void setThrowInGetData(boolean throwInGetData) {
                this.throwInGetData = throwInGetData;
            }
    
            @Override
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 28K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java

                return responseProcessor;
            }
    
            public void setRuleId(String ruleId) {
                this.ruleId = ruleId;
            }
    
            public void setResponseProcessor(ResponseProcessor responseProcessor) {
                this.responseProcessor = responseProcessor;
            }
    
            public void addCondition(String key, String value) {
                conditions.put(key, value);
            }
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerStatusTest.java

         */
        public void test_valueOf_valid() {
            assertEquals(CrawlerStatus.INITIALIZING, CrawlerStatus.valueOf("INITIALIZING"));
            assertEquals(CrawlerStatus.RUNNING, CrawlerStatus.valueOf("RUNNING"));
            assertEquals(CrawlerStatus.DONE, CrawlerStatus.valueOf("DONE"));
        }
    
        /**
         * Test valueOf method with invalid values
         */
        public void test_valueOf_invalid() {
            try {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top