Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for partial (0.28 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

         */
        public long getQueryTime() {
            return queryTime;
        }
    
        /**
         * Checks whether the search results are partial due to timeout or other constraints.
         *
         * @return true if the results are partial, false if complete
         */
        public boolean isPartialResults() {
            return partialResults;
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        public void setPageNumberList(final List<String> pageNumberList) {
            this.pageNumberList = pageNumberList;
        }
    
        /**
         * Sets whether the results are partial due to timeout or other issues.
         *
         * @param partialResults true if results are partial
         */
        public void setPartialResults(final boolean partialResults) {
            this.partialResults = partialResults;
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/QueryResponseList.java

         */
        public FacetResponse getFacetResponse() {
            return facetResponse;
        }
    
        /**
         * Checks whether the search results are partial (not complete).
         *
         * @return true if the results are partial, false if complete
         */
        public boolean isPartialResults() {
            return partialResults;
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md

    - ✅ Whitespace and empty string handling
    
    ---
    
    ### 3. ArchiveExtractorErrorHandlingTest.java
    **Purpose**: Test improved error handling in archive extractors.
    
    **Key Test Areas**:
    - Enhanced error messages
    - Partial extraction (continues on failure)
    - Invalid archive handling
    - Empty archive handling
    - Mixed valid/invalid entries
    
    **Covered Extractors**:
    - ZipExtractor
    - TarExtractor
    
    **Test Count**: 12 tests
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/FessAppService.java

        /**
         * Default constructor.
         */
        public FessAppService() {
            // Default constructor
        }
    
        /**
         * Wraps a query string with wildcard characters to enable partial matching.
         * This method ensures that the query string is surrounded by asterisks (*)
         * to support prefix and suffix matching in search operations.
         *
         * @param query the query string to wrap with wildcards
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            /**
             * The list of page numbers for pagination.
             */
            protected List<String> pageNumbers;
            /**
             * Indicates if the search results are partial.
             */
            protected boolean partial;
            /**
             * The time taken for the search query in milliseconds.
             */
            protected long queryTime;
            /**
             * The search query string.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/trans/TransTransactNamedPipeTest.java

            // Assert
            assertEquals(TEST_LENGTH, bytesWritten);
            assertArrayEquals(TEST_DATA, dst);
        }
    
        @Test
        @DisplayName("Test writeDataWireFormat with partial data")
        void testWriteDataWireFormatPartialData() {
            // Arrange
            int partialOffset = 5;
            int partialLength = 8;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalControllerTest.java

            assertEquals(300L, controller.getDelayMillisBeforeProcessing());
            assertEquals(400L, controller.getDelayMillisForWaitingNewUrl());
        }
    
        /**
         * Test constructor with partial parameters uses defaults for missing values
         */
        public void test_constructorWithPartialParams() {
            final Map<String, Long> params = new HashMap<>();
            params.put("delayMillisAfterProcessing", 150L);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:58:39 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponseTest.java

            assertNotNull(result);
            assertTrue(result.startsWith("Trans2QueryPathInformationResponse["));
            assertTrue(result.endsWith("]"));
        }
    
        @Test
        @DisplayName("Test readDataWireFormat with partial buffer")
        void testReadDataWireFormatWithPartialBuffer() throws SMBProtocolDecodingException {
            response = new Trans2QueryPathInformationResponse(mockConfig, FileInformation.FILE_BASIC_INFO);
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java

                assertEquals(Integer.MAX_VALUE, response.getTotalBytesWritten());
            }
    
            @Test
            @DisplayName("Should handle partial copy operations")
            void testPartialCopyOperation() throws SMBProtocolDecodingException {
                // Simulate partial copy where not all requested bytes were copied
                byte[] buffer = createValidCopyChunkResponse(3, // Only 3 chunks written (maybe less than requested)
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.8K bytes
    - Viewed (0)
Back to top