Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 627 for Results (0.19 sec)

  1. src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java

            String[] results = relatedQueryHelper.getRelatedQueries("java");
            assertEquals(2, results.length);
            assertEquals("programming", results[0]);
            assertEquals("tutorial", results[1]);
    
            results = relatedQueryHelper.getRelatedQueries("python");
            assertEquals(2, results.length);
            assertEquals("scripting", results[0]);
            assertEquals("data science", results[1]);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java

            String[] results = relatedContentHelper.getRelatedContents("testing");
            assertEquals(1, results.length);
            assertEquals("Test Content for testing", results[0]);
    
            results = relatedContentHelper.getRelatedContents("123");
            assertEquals(1, results.length);
            assertEquals("Number: 123", results[0]);
    
            results = relatedContentHelper.getRelatedContents("abc");
            assertEquals(0, results.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

            List<String> results = new ArrayList<>();
            Runnable process = () -> results.add("executed");
    
            ComponentUtil.processAfterContainerInit(process);
    
            assertEquals(0, results.size());
        }
    
        public void test_processAfterContainerInit_notAvailable() {
            List<String> results = new ArrayList<>();
            Runnable process = () -> results.add("executed");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

         * @param partialResults whether the results are partial due to timeout or other constraints
         * @param facetResponse the facet information for the search results
         * @param start the starting position for pagination
         * @param pageSize the size of the current page
         * @param offset the offset applied to the results
         * @return QueryResponseList containing the search results and metadata
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

    import org.codelibs.fess.util.FacetResponse;
    
    /**
     * Data container for search results rendering.
     *
     * This class holds all the data needed to render search results in the UI,
     * including the actual search results, pagination information, facet data,
     * execution timing, and highlighting parameters.
     */
    public class SearchRenderData {
    
        /** List of search result documents. */
        protected List<Map<String, Object>> documentItems;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

        protected final long queryTime;
    
        /** Flag indicating whether the search results are partial due to timeout or other constraints. */
        protected final boolean partialResults;
    
        /** The facet response containing aggregated facet information for the search results. */
        protected final FacetResponse facetResponse;
    
        /**
         * Constructs a new SearchResult with the specified parameters.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

        // Enqueue more than enough tasks to force reentrancy.
        for (int i = 0; i < 5; i++) {
          results.add(serializer.submit(Callables.returning(null), directExecutor()));
        }
    
        manualExecutorTask[0].run();
    
        for (Future<?> result : results) {
          if (!result.isCancelled()) {
            result.get(10, SECONDS);
          }
          // TODO(cpovirk): Verify that the cancelled futures are exactly ones that we expect.
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  8. .github/workflows/scorecard.yml

              publish_results: true
    
          # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
          # format to the repository Actions tab.
          - name: "Upload artifact"
            uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
            with:
              name: SARIF file
              path: results.sarif
              retention-days: 5
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 19:19:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            /**
             * The total number of pages in the search results.
             */
            protected int pageCount;
            /**
             * Indicates if there is a next page of search results.
             */
            protected boolean nextPage;
            /**
             * Indicates if there is a previous page of search results.
             */
            protected boolean prevPage;
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

         * This optional field helps track which result position was clicked.
         */
        public Integer order;
    
        // for error page
    
        /**
         * Query string parameter for error page fallback.
         * Contains the original search query if redirection fails.
         */
        public String q;
    
        /**
         * Number of results parameter for error page fallback.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
Back to top