- Sort Score
- Result 10 results
- Languages All
Results 701 - 710 of 1,736 for unprotected (0.13 sec)
-
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
import jakarta.annotation.PostConstruct; public class PopularWordHelper { private static final Logger logger = LogManager.getLogger(PopularWordHelper.class); protected static final char CACHE_KEY_SPLITTER = '\n'; protected Cache<String, List<String>> cache; protected FessConfig fessConfig; @PostConstruct public void init() { if (logger.isDebugEnabled()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/ConstructorDescImpl.java
public class ConstructorDescImpl implements ConstructorDesc { /** このメソッドを所有するクラスの{@link BeanDesc} */ protected final BeanDesc beanDesc; /** コンストラクタ */ protected final Constructor<?> constructor; /** コンストラクタの引数型の配列 */ protected final Class<?>[] parameterTypes; /** パラメータ化された引数型の情報 */ protected final ParameterizedClassDesc[] parameterizedClassDescs; /** * インスタンスを構築します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; public class BoostDocumentRuleService extends FessAppService { @Resource protected BoostDocumentRuleBhv boostDocumentRuleBhv; @Resource protected FessConfig fessConfig; public List<BoostDocumentRule> getBoostDocumentRuleList(final BoostDocPager boostDocumentRulePager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; public class RequestHeaderService { @Resource protected RequestHeaderBhv requestHeaderBhv; @Resource protected FessConfig fessConfig; public List<RequestHeader> getRequestHeaderList(final ReqHeaderPager requestHeaderPager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; public class WebAuthenticationService { @Resource protected WebAuthenticationBhv webAuthenticationBhv; @Resource protected FessConfig fessConfig; public List<WebAuthentication> getWebAuthenticationList(final WebAuthPager webAuthenticationPager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingQueueTest.java
private final Queue<T> backingQueue; StandardImplForwardingQueue(Queue<T> backingQueue) { this.backingQueue = backingQueue; } @Override protected Queue<T> delegate() { return backingQueue; } @Override public boolean addAll(Collection<? extends T> collection) { return standardAddAll(collection); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 19 19:24:36 UTC 2023 - 4.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/CompactHashSetTest.java
suite.addTestSuite(CompactHashSetTest.class); suite.addTest( SetTestSuiteBuilder.using( new TestStringSetGenerator() { @Override protected Set<String> create(String[] elements) { return CompactHashSet.create(asList(elements)); } }) .named("CompactHashSet") .withFeatures(allFeatures)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
public class CrawlingConfigHelper { private static final Logger logger = LogManager.getLogger(CrawlingConfigHelper.class); protected final Map<String, CrawlingConfig> crawlingConfigMap = new ConcurrentHashMap<>(); protected int count = 1; protected Cache<String, CrawlingConfig> crawlingConfigCache; @PostConstruct public void init() { if (logger.isDebugEnabled()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java
private static final long serialVersionUID = 1L; protected volatile Pattern[] includedDocPathPatterns; protected volatile Pattern[] excludedDocPathPatterns; protected transient volatile Map<ConfigName, Map<String, String>> configParameterMap; protected CrawlerClientFactory crawlerClientFactory = null; public FileConfig() { setBoost(1.0f); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/timer/TimeoutManager.java
/** * シングルトンのためのインスタンスです。 */ protected static final TimeoutManager instance = new TimeoutManager(); /** * Timerのための{@link Thread}です。 */ protected Thread thread; /** * {@link TimeoutTask}管理用のリストです。 */ protected final SLinkedList<TimeoutTask> timeoutTaskList = new SLinkedList<>(); private TimeoutManager() { }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8K bytes - Viewed (0)