- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 409 for dangling (0.09 sec)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
import jakarta.annotation.PostConstruct; /** * Helper class for document processing and manipulation in the Fess search system. * This class provides utilities for processing document content, titles, and digests, * handling text normalization, content extraction, and similar document hash encoding/decoding. * It also manages document processing requests and integrates with the crawler system. * */ public class DocumentHelper {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/EventBus.java
* <p>Event subscriber methods must accept only one argument: the event. * * <p>Subscribers should not, in general, throw. If they do, the EventBus will catch and log the * exception. This is rarely the right solution for error handling and should not be relied upon; it * is intended solely to help find problems during development. * * <p>The EventBus guarantees that it will not call a subscriber method from multiple threads
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
} catch (final ClassNotFoundException e) { fail("ProcessDestroyer inner class should exist"); } } // Test exception handling scenarios public void test_exception_handling_scenarios() throws Exception { // Test various exception scenarios without triggering component dependencies // Test with null command list
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
import jcifs.internal.SMBProtocolDecodingException; import jcifs.smb.NtStatus; /** * Base class for SMB2/SMB3 response messages. * * This abstract class provides common functionality for handling * response messages in the SMB2/SMB3 protocol. * * @author mbechler */ public abstract class ServerMessageBlock2Response extends ServerMessageBlock2 implements CommonServerMessageBlockResponse {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Base64Util.java
* governing permissions and limitations under the License. */ package org.codelibs.core.misc; import org.codelibs.core.collection.ArrayUtil; import org.codelibs.core.lang.StringUtil; /** * Utility class for handling Base64 encoding and decoding. * * @author higa */ public abstract class Base64Util { /** * Do not instantiate. */ protected Base64Util() { }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 6.2K bytes - Viewed (0) -
cmd/metacache-manager.go
return errFileNotFound } if cache.status == scanStateSuccess || cache.status == scanStateStarted { if time.Since(cache.lastUpdate) > metacacheMaxRunningAge { // We got a stale entry, mark error on handling server. err := fmt.Errorf("timeout: list %s not updated", cache.id) cache.error = err.Error() cache.status = scanStateError rpc.UpdateMetacacheListing(ctx, cache) return err } return nil
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Oct 25 00:44:15 UTC 2022 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXTest.java
} } private static int invokeProtectedInt(Object target, String name, Object... params) { try { var cls = target.getClass(); // Build proper parameter types array, handling primitive types Class<?>[] paramTypes = new Class<?>[params.length]; for (int i = 0; i < params.length; i++) { if (params[i] instanceof byte[]) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlResponseTest.java
import java.util.HashMap; import java.util.List; import java.util.Map; import org.codelibs.curl.io.ContentCache; import org.junit.Test; /** * Test class for CurlResponse. * Tests response handling, header operations, and content access. */ public class CurlResponseTest { @Test public void testConstructor() { CurlResponse response = new CurlResponse(); assertNotNull(response);
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.core.message.UserMessages; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Query command for handling wildcard queries. * Converts Lucene WildcardQuery objects to OpenSearch QueryBuilder objects, * supporting wildcard pattern matching with configurable case sensitivity. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/SearchForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Base search form class that extends SearchRequestParams. * Provides form fields and methods for handling search requests in the web interface. * Contains validation constraints and convenience methods for parameter processing. */ public class SearchForm extends SearchRequestParams { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0)