Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 160 for Queries (0.8 sec)

  1. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * KeyMatchHelper is a helper class for KeyMatch feature.
     * It manages KeyMatch instances and provides methods to build queries for boosting documents.
     */
    public class KeyMatchHelper extends AbstractConfigHelper {
        private static final Logger logger = LogManager.getLogger(KeyMatchHelper.class);
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("../..", simplifyPath("./../../"));
        assertEquals("../..", simplifyPath("./.././../"));
      }
    
      /*
       * We co-opt some URI resolution tests for our purposes.
       * Some of the tests have queries and anchors that are a little silly here.
       */
    
      /** http://gbiv.com/protocols/uri/rfc/rfc2396.html#rfc.section.C.1 */
      public void testRfc2396Normal() {
        assertEquals("/a/b/c/g", simplifyPath("/a/b/c/g"));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/FacetInfoTest.java

            assertNotNull(facetInfo.query);
            assertEquals(1, facetInfo.query.length);
            assertEquals("query1", facetInfo.query[0]);
        }
    
        // Test addQuery with existing queries
        public void test_addQuery_existingQueries() {
            facetInfo.query = new String[] { "query1", "query2" };
            facetInfo.addQuery("query3");
            assertNotNull(facetInfo.query);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

        // Attribute
        // =========
    
        /** Client for interacting with the search engine. */
        @Resource
        protected SearchEngineClient searchEngineClient;
    
        /** Helper for building and parsing search queries. */
        @Resource
        protected QueryHelper queryHelper;
    
        /** Helper for executing search operations. */
        @Resource
        protected SearchHelper searchHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

        //
    
        /**
         * The helper for related content.
         */
        @Resource
        protected RelatedContentHelper relatedContentHelper;
    
        /**
         * The helper for related queries.
         */
        @Resource
        protected RelatedQueryHelper relatedQueryHelper;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractService.java

              }
            });
      }
    
      /**
       * An immutable snapshot of the current state of the service. This class represents a consistent
       * snapshot of the state and therefore it can be used to answer simple queries without needing to
       * grab a lock.
       */
      // @Immutable except that Throwable is mutable (initCause(), setStackTrace(), mutable subclasses).
      private static final class StateSnapshot {
        /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            }
            return childUrlSet;
        }
    
        /**
         * Retrieves child URLs for a given document ID from the search engine index.
         * This method queries the search engine for child documents and extracts their URLs.
         *
         * @param searchEngineClient the search engine client to query
         * @param id the parent document ID to find children for
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/CrawlJob.java

                    timeoutTask.cancel();
                }
            }
    
            return resultBuf.toString();
    
        }
    
        /**
         * Gets the count of currently running crawler jobs.
         * This method queries the scheduled jobs to count active crawler processes.
         * Used to enforce maximum concurrent crawler limits.
         *
         * @return the number of currently running crawler jobs
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

        return new ImmutableSortedMap<K, V>(delegate, comparator);
      }
    
      /*
       * We don't permit nulls, but we wrap every comparator with nullsFirst().
       * Why? We want for queries like containsKey(null) to return false, but the
       * GWT SortedMap implementation that we delegate to throws
       * NullPointerException if the comparator does. Since our construction
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.prev_page=Prev
    labels.next_page=Next
    labels.did_not_match=Your search - <b>{0}</b> - did not match any documents.
    labels.search_title=Fess
    labels.search_popular_word_word=Popular Words:
    labels.search_related_queries=Related Queries:
    labels.search_result_select_sort=-  Sort  -
    labels.search_result_select_num=- Display Count -
    labels.search_result_sort_score_desc=by Score
    labels.search_result_sort_filename_asc=by Filename (asc)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
Back to top