- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 1,022 for resource (0.72 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java
import org.codelibs.fess.crawler.exception.CrawlerSystemException; import org.codelibs.fess.crawler.exception.MaxLengthExceededException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jakarta.annotation.Resource; /** * @author shinsuke * */ public abstract class AbstractCrawlerClient implements CrawlerClient { private static final Logger logger = LoggerFactory.getLogger(AbstractCrawlerClient.class);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 5.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
import org.codelibs.fess.crawler.util.AccessResultCallback; import jakarta.annotation.Resource; /** * @author shinsuke * */ public class DataServiceImpl implements DataService<AccessResultImpl<Long>> { protected static volatile long idCount = 0L; private static Object idCountLock = new Object(); @Resource protected MemoryDataHelper dataHelper; /* * (non-Javadoc) *
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.cbean.result.PagingResultBean; import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; public class JobLogService { @Resource protected JobLogBhv jobLogBhv; @Resource protected FessConfig fessConfig; protected long expiredJobInterval = 2 * 60 * 60 * 1000L; // 2hours
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
import org.dbflute.optional.OptionalEntity; import org.lastaflute.job.LaCron; import jakarta.annotation.Resource; public class ScheduledJobService { private static final Logger logger = LogManager.getLogger(ScheduledJobService.class); @Resource protected ScheduledJobBhv scheduledJobBhv; @Resource protected FessConfig fessConfig;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.7K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueServiceTest.java
import org.opensearch.index.query.QueryBuilders; import jakarta.annotation.Resource; /** * @author shinsuke * */ public class OpenSearchUrlQueueServiceTest extends LastaDiTestCase { @Resource private OpenSearchUrlQueueService urlQueueService; @Resource private FesenClient fesenClient; private OpenSearchRunner runner; @Override
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java
// ========= @Resource private CrawlingInfoService crawlingInfoService; @Resource private CrawlingInfoPager crawlingInfoPager; @Resource protected ProcessHelper processHelper; // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
@Resource private SearchLogBhv searchLogBhv; @Resource private ClickLogBhv clickLogBhv; @Resource private FavoriteLogBhv favoriteLogBhv; @Resource private UserInfoBhv userInfoBhv; @Resource private SystemHelper systemHelper; @Resource protected FessConfig fessConfig;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 28.4K bytes - Viewed (0) -
cmd/httprange.go
Start, End int64 } // GetLength - get length of range func (h *HTTPRangeSpec) GetLength(resourceSize int64) (rangeLength int64, err error) { switch { case resourceSize < 0: return 0, errors.New("Resource size cannot be negative") case h == nil: rangeLength = resourceSize case h.IsSuffixLength: specifiedLen := -h.Start rangeLength = specifiedLen if specifiedLen > resourceSize {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu May 09 08:44:07 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dashboard/AdminDashboardAction.java
import org.codelibs.fess.util.RenderDataUtil; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; import org.lastaflute.web.ruts.process.ActionRuntime; import jakarta.annotation.Resource; /** * @author shinsuke * @author Keiichi Watanabe */ public class AdminDashboardAction extends FessAdminAction { public static final String ROLE = "admin-dashboard";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/AbstractRule.java
import org.codelibs.fess.crawler.rule.RuleManager; import jakarta.annotation.Resource; /** * @author shinsuke * */ public abstract class AbstractRule implements Rule { private static final long serialVersionUID = 1L; protected String ruleId; protected ResponseProcessor responseProcessor; @Resource protected CrawlerContainer crawlerContainer;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 1.8K bytes - Viewed (0)