- Sort Score
- Result 10 results
- Languages All
Results 1431 - 1440 of 3,473 for final (0.02 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/SmbjEngine.java
* @return The Type 3 message. * @throws NTLMEngineException if an NTLM engine error occurs. */ @Override public String generateType3Msg(final String username, final String password, final String domain, final String workstation, final String challenge) throws NTLMEngineException { // TODO Auto-generated method stub return null; }Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/outside/DeepInterfaceTest.java
final List<Object> annotatedIn1Events = new ArrayList<>(); final List<Object> annotatedIn1And2Events = new ArrayList<>(); final List<Object> annotatedIn1And2AndClassEvents = new ArrayList<>(); final List<Object> declaredIn1AnnotatedIn2Events = new ArrayList<>(); final List<Object> declaredIn1AnnotatedInClassEvents = new ArrayList<>();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/LongConversionUtil.java
*/ public static Long toLong(final Object o) { return toLong(o, null); } /** * Converts the given object to a {@link Long}. * * @param o * the object to convert * @param pattern * the pattern string * @return the converted {@link Long} */ public static Long toLong(final Object o, final String pattern) { return switch (o) {Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/impl/AuthenticationImpl.java
* @param credentials The credentials. * @param authScheme The authentication scheme. */ public AuthenticationImpl(final AuthScope authScope, final Credentials credentials, final AuthScheme authScheme) { this.authScope = authScope; this.credentials = credentials; this.authScheme = authScheme; } /* * (non-Javadoc) *Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/UserInfoDbm.java
protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // =================================================================================== // Singleton // ========= private static final UserInfoDbm _instance = new UserInfoDbm();Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
public void test_sitemaps_threadLocal() throws Exception { final String[] thread1Sitemaps = new String[] { "http://thread1.com/sitemap.xml" }; final String[] thread2Sitemaps = new String[] { "http://thread2.com/sitemap.xml" }; final CountDownLatch startLatch = new CountDownLatch(1); final CountDownLatch endLatch = new CountDownLatch(2); final AtomicInteger successCount = new AtomicInteger(0);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/FullWidthToHalfWidthAlphabetNormalizer.java
public FullWidthToHalfWidthAlphabetNormalizer() { // nothing } @Override public String normalize(final String text, final String field, final String... langs) { final char[] chars = new char[text.length()]; for (int i = 0; i < chars.length; i++) { final char c = text.charAt(i); if (c >= 'a' && c <= 'z') { chars[i] = (char) (c - 'a' + 'a');
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsPagingResultBean.java
private static final long serialVersionUID = 1L; protected long took; private int totalShards; private int successfulShards; private int failedShards; private TotalHits totalHits; private Aggregations aggregations; private SearchRequestBuilder builder; public EsPagingResultBean(final SearchRequestBuilder builder) { this.builder = builder;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/cq/bs/BsUserCQ.java
public void functionScore(OperatorCall<UserCQ> queryLambda, ScoreFunctionCall<ScoreFunctionCreator<UserCQ>> functionsLambda, final ConditionOptionCall<FunctionScoreQueryBuilder> opLambda) { UserCQ cq = new UserCQ(); queryLambda.callback(cq); final Collection<FilterFunctionBuilder> list = new ArrayList<>(); if (functionsLambda != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 326.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
* @return List of boost document rules matching the criteria. */ public List<BoostDocumentRule> getBoostDocumentRuleList(final BoostDocPager boostDocumentRulePager) { final PagingResultBean<BoostDocumentRule> boostDocumentRuleList = boostDocumentRuleBhv.selectPage(cb -> { cb.paging(boostDocumentRulePager.getPageSize(), boostDocumentRulePager.getCurrentPageNumber());Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0)