- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 357 for 1L (0.44 sec)
-
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
} public void test_negativeQueryTime() { // Test with negative query time (edge case) SearchResult result = SearchResult.create().queryTime(-1L).build(); assertEquals(-1L, result.getQueryTime()); } public void test_documentListImmutability() { // Test that document list is not modified after creation Map<String, Object> doc1 = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/ExecutionListTest.java
assertEquals(3L, countDownLatch.getCount()); list.execute(); // Verify that all of the runnables execute in a reasonable amount of time. assertTrue(countDownLatch.await(1L, SECONDS)); } public void testExecute_idempotent() { AtomicInteger runCalled = new AtomicInteger(); list.add( new Runnable() { @Override public void run() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 4.7K bytes - Viewed (0) -
okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt
requestBody.contentType()?.let { if (headers["Content-Type"] == null) { logger.log("Content-Type: $it") } } if (requestBody.contentLength() != -1L) { if (headers["Content-Length"] == null) { logger.log("Content-Length: ${requestBody.contentLength()}") } } } for (i in 0 until headers.size) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 14:27:04 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
super.setUp(); // Create FessConfigImpl with overridden get method for testing fessConfig = new FessConfigImpl() { private static final long serialVersionUID = 1L; @Override public String get(String propertyKey) { // Check system properties first (with prefix)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileAuthentication.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class FileAuthentication extends BsFileAuthentication { private static final long serialVersionUID = 1L; private static final Logger logger = LogManager.getLogger(FileAuthentication.class); private FileConfig fileConfig; public String getId() { return asDocMeta().id(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsPagingResultBean.java
/** * @param <ENTITY> The type of entity. * @author ESFlute (using FreeGen) */ public class EsPagingResultBean<ENTITY> extends PagingResultBean<ENTITY> { private static final long serialVersionUID = 1L; protected long took; private int totalShards; private int successfulShards; private int failedShards; private TotalHits totalHits; private Aggregations aggregations;
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/core/lang/ThreadUtil.java
* @throws InterruptedRuntimeException * if any thread has interrupted the current thread. */ public static void sleep(final long millis) { if (millis < 1L) { return; } try { Thread.sleep(millis); } catch (final InterruptedException e) { throw new InterruptedRuntimeException(e); } }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
public long deleteByQuery(String index, QueryBuilder query) { deleteByQueryCalled = true; deleteIndex = index; deleteQuery = query; return 1L; } }; // Create mock FessConfig fessConfig = new TestFessConfig() { @Override public String getIndexFieldExpires() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/RequestHeader.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class RequestHeader extends BsRequestHeader { private static final long serialVersionUID = 1L; private static final Logger logger = LogManager.getLogger(RequestHeader.class); private WebConfig webConfig; public String getId() { return asDocMeta().id(); }
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/exception/InvalidQueryException.java
*/ public class InvalidQueryException extends FessSystemException { /** Serial version UID for serialization */ private static final long serialVersionUID = 1L; /** Message code for localized error messages */ private final transient VaMessenger<FessMessages> messageCode; /** * Creates a new InvalidQueryException with message code, message, and cause. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0)