Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for getCanonicalName (0.12 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    webConfig.setId("01T");
                    webConfig.setName("__TEMPLATE__");
                    return OptionalEntity.of(webConfig);
                }
            }, WebConfigService.class.getCanonicalName());
            ComponentUtil.register(new FileConfigService() {
                @Override
                public OptionalEntity<FileConfig> getFileConfig(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

            ComponentUtil.register(crawlingInfoService, CrawlingInfoService.class.getCanonicalName());
            ComponentUtil.register(searchLogService, SearchLogService.class.getCanonicalName());
            ComponentUtil.register(jobLogService, JobLogService.class.getCanonicalName());
            ComponentUtil.register(userInfoService, UserInfoService.class.getCanonicalName());
            ComponentUtil.register(systemHelper, "systemHelper");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

                String errorName;
                final Throwable cause = t.getCause();
                if (cause != null) {
                    errorName = cause.getClass().getCanonicalName();
                } else {
                    errorName = t.getClass().getCanonicalName();
                }
                final FailureUrl failureUrl = storeFailureUrl(crawlerContext, urlQueue, errorName, t);
                if (failureUrl != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                @Override
                public void storeInfo(List<CrawlingInfoParam> crawlingInfoParamList) {
                    storedParams = crawlingInfoParamList;
                }
            }, CrawlingInfoService.class.getCanonicalName());
    
            // Add some info to map
            crawlingInfoHelper.putToInfoMap("url_count", "100");
            crawlingInfoHelper.putToInfoMap("error_count", "5");
    
            // Store with create=true
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

            ComponentUtil.register(new FastMockIndexUpdateCallback(), IndexUpdateCallback.class.getCanonicalName());
            ComponentUtil.register(new FastMockDataStoreFactory(), "dataStoreFactory");
            ComponentUtil.register(new FastMockFailureUrlService(), FailureUrlService.class.getCanonicalName());
            ComponentUtil.register(new FastMockSearchEngineClient(), "searchEngineClient");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java

                try {
                    client.close();
                } catch (final Exception e) {
                    logger.warn("Failed to close {}.", client.getClass().getCanonicalName(), e);
                }
            });
        }
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

            super.setUp();
            jobHelper = new JobHelper();
            ComponentUtil.register(new SystemHelper(), "systemHelper");
            ComponentUtil.register(new MockJobLogBhv(), JobLogBhv.class.getCanonicalName());
        }
    
        public void test_register_with_null_scheduledJob() {
            try {
                jobHelper.register((ScheduledJob) null);
                fail("Should throw ScheduledJobException");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/ComponentUtil.java

                    throw new ContainerNotAvailableException(clazz.getCanonicalName(), e);
                }
                throw new ContainerNotAvailableException(clazz.getCanonicalName());
            } catch (final ComponentNotFoundException | AutoBindingFailureException e) {
                if (componentMap.containsKey(clazz.getCanonicalName())) {
                    return (T) componentMap.get(clazz.getCanonicalName());
                }
                throw e;
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

                // Expected
            }
        }
    
        public void test_getComponent_byClass_fromMap() {
            String testInstance = "test_instance";
            ComponentUtil.register(testInstance, String.class.getCanonicalName());
    
            String retrieved = ComponentUtil.getComponent(String.class);
            assertSame(testInstance, retrieved);
        }
    
        public void test_getComponent_byName_fromMap() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

            try {
                parser.parseArgument(args);
            } catch (final CmdLineException e) {
                System.err.println(e.getMessage());
                System.err.println("java " + ThumbnailGenerator.class.getCanonicalName() + " [options...] arguments...");
                parser.printUsage(System.err);
                return;
            }
    
            if (logger.isDebugEnabled()) {
                try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top