Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 409 for dangling (0.05 sec)

  1. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

     * support for common types like String.</p>
     *
     * <p>This class is commonly used to pass configuration parameters to data store
     * implementations during crawling operations, allowing for flexible parameter
     * handling without tight coupling to specific parameter schemas.</p>
     */
    public class DataStoreParams {
    
        /**
         * Internal map storing parameter key-value pairs.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketRecorder.kt

    class WebSocketRecorder(
      private val name: String,
    ) : WebSocketListener() {
      private val events = LinkedBlockingQueue<Any>()
      private var delegate: WebSocketListener? = null
    
      /** Sets a delegate for handling the next callback to this listener. Cleared after invoked.  */
      fun setNextEventDelegate(delegate: WebSocketListener?) {
        this.delegate = delegate
      }
    
      override fun onOpen(
        webSocket: WebSocket,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/RuntimeCIFSExceptionTest.java

            // Test that it can be caught specifically
            assertThrows(RuntimeCIFSException.class, () -> {
                throw new RuntimeCIFSException("Test exception");
            });
    
            // Test exception handling behavior
            try {
                throw new RuntimeCIFSException("Original message", new IllegalStateException("Cause"));
            } catch (RuntimeCIFSException e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/middleware.md

    The following arguments are supported:
    
    * `minimum_size` - Do not GZip responses that are smaller than this minimum size in bytes. Defaults to `500`.
    * `compresslevel` - Used during GZip compression. It is an integer ranging from 1 to 9. Defaults to `9`. Lower value results in faster compression but larger file sizes, while higher value results in slower compression but smaller file sizes.
    
    ## Other middlewares { #other-middlewares }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:59:07 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            // Test null input handling
            try {
                KuromojiCSVUtil.quoteEscape(null);
                fail("Should throw NullPointerException for null input");
            } catch (NullPointerException e) {
                // Expected behavior
            }
        }
    
        public void test_parse_null_input() {
            // Test null input handling
            try {
                KuromojiCSVUtil.parse(null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

    /**
     * Helper class for indexing operations in the Fess search engine.
     * This class provides functionality for sending documents to the search engine,
     * managing document lifecycle operations (create, update, delete), and handling
     * thumbnail processing during indexing.
     *
     * <p>The IndexingHelper manages bulk operations, handles retries on failures,
     * and provides various query-based operations for document management.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/dcerpc/DcerpcBindTest.java

                // Then
                assertEquals(0, opnum, "Opnum should be 0 even with parameterized constructor");
            }
        }
    
        @Nested
        @DisplayName("Result Handling Tests")
        class ResultHandlingTests {
    
            @Test
            @DisplayName("getResult should return null when result is 0")
            void testGetResultSuccess() throws Exception {
                // Given
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

    import jakarta.servlet.ServletRequest;
    import jakarta.servlet.ServletResponse;
    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * Servlet filter for handling character encoding conversion and URL redirection.
     * This filter processes requests with specific encoding requirements and converts
     * character encodings according to configured mapping rules.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java

    import org.codelibs.fess.util.ComponentUtil;
    
    import com.esotericsoftware.kryo.Kryo;
    import com.esotericsoftware.kryo.io.Input;
    import com.esotericsoftware.kryo.io.Output;
    
    /**
     * A serializer class for handling object serialization and deserialization.
     * <p>
     * This class provides serialization capabilities using different serializers,
     * currently supporting Kryo and JavaBin serialization formats. The serializer
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/MethodDesc.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans;
    
    import java.lang.reflect.Method;
    import java.util.Collection;
    import java.util.Map;
    
    /**
     * Interface for handling methods.
     *
     * @author koichik
     */
    public interface MethodDesc {
    
        /**
         * Returns the {@link BeanDesc} of the class that owns this method.
         *
         * @return {@link BeanDesc}
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top