- Sort Score
- Result 10 results
- Languages All
Results 1511 - 1520 of 3,547 for Signal (0.04 sec)
-
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) -
guava-tests/test/com/google/common/collect/CollectionBenchmarkSampleData.java
* * @author Nicholaus Shupe */ @NullUnmarked class CollectionBenchmarkSampleData { private final boolean isUserTypeFast; private final SpecialRandom random; private final double hitRate; private final int size; private final Set<Element> valuesInSet; private final Element[] queries; CollectionBenchmarkSampleData(int size) { this(true, new SpecialRandom(), 1.0, size); }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/lang/SystemUtil.java
*/ public static final String PATH_SEPARATOR = System.getProperty("path.separator"); /** * <code>os.name</code> system property. Example: <code>Mac OS X</code> */ public static final String OS_NAME = System.getProperty("os.name"); /** * <code>java.io.tmpdir</code> system property. Example: /tmp */Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Parameter.java
/** * Represents a method or constructor parameter. * * @author Ben Yu * @since 14.0 */ public final class Parameter implements AnnotatedElement { private final Invokable<?, ?> declaration; private final int position; private final TypeToken<?> type; private final ImmutableList<Annotation> annotations; /**Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/InvalidQueryException.java
* @param message the detailed error message * @param cause the cause of the exception */ public InvalidQueryException(final VaMessenger<FessMessages> messageCode, final String message, final Throwable cause) { super(message, cause); this.messageCode = messageCode; } /** * Creates a new InvalidQueryException with message code and message. *Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/BackupTests.java
@Tag("it") public class BackupTests extends CrudTestBase { private static final String NAME_PREFIX = "backupTest_"; private static final String API_PATH = "/api/admin/backup"; private static final String LIST_ENDPOINT_SUFFIX = "files"; private static final String ITEM_ENDPOINT_SUFFIX = "file"; private static final String KEY_PROPERTY = ""; @Override protected String getNamePrefix() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.5K bytes - Viewed (0)