Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 160 for Queries (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            protected long requestedTime;
            /**
             * The list of facet fields and their values.
             */
            protected List<Map<String, Object>> facetField;
            /**
             * The list of facet queries and their counts.
             */
            protected List<Map<String, Object>> facetQuery;
    
            /**
             * Populates this response with search render data.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_en.properties

    labels.related_content_term=Term
    labels.related_content_title_details=Related Content
    labels.related_query_configuration=Related Query
    labels.related_query_list_term=Term
    labels.related_query_queries=Queries
    labels.related_query_term=Term
    labels.related_query_title_details=Related Query
    labels.crud_button_create=Create
    labels.crud_button_update=Update
    labels.crud_button_delete=Delete
    labels.crud_button_back=Back
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Monitor.java

       * enter this monitor. This method is designed primarily for use in monitoring of the system
       * state.
       */
      public boolean hasQueuedThreads() {
        return lock.hasQueuedThreads();
      }
    
      /**
       * Queries whether the given thread is waiting to enter this monitor. Note that because
       * cancellations may occur at any time, a {@code true} return does not guarantee that this thread
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SearchHelper.java

         *
         * This method handles the complete search workflow including parameter processing,
         * query execution, result formatting, and logging. It supports automatic retry
         * with escaped queries if the initial search fails.
         *
         * @param searchRequestParams The search request parameters
         * @param data The search render data to populate with results
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

     *
     * <p>This class uses the life cycle methods to read in a list of starting URIs and save the set of
     * outstanding URIs when shutting down. Also, it takes advantage of the scheduling functionality to
     * rate limit the number of queries we perform.
     *
     * @author Luke Sandberg
     * @since 11.0
     */
    @GwtIncompatible
    @J2ktIncompatible
    public abstract class AbstractScheduledService implements Service {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

     *
     * <p>This class uses the life cycle methods to read in a list of starting URIs and save the set of
     * outstanding URIs when shutting down. Also, it takes advantage of the scheduling functionality to
     * rate limit the number of queries we perform.
     *
     * @author Luke Sandberg
     * @since 11.0
     */
    @GwtIncompatible
    @J2ktIncompatible
    public abstract class AbstractScheduledService implements Service {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSet.java

         * e.g. hash codes adversarially designed to go into ascending table locations, which keeps
         * construction O(n) (as desired) but then can have O(n) queries later.
         *
         * <p>If this returns false, then no query can take more than O(log n).
         *
         * <p>Note that for a RegularImmutableSet with elements with truly random hash codes, contains
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/BloomFilter.java

         */
        <T extends @Nullable Object> boolean put(
            @ParametricNullness T object,
            Funnel<? super T> funnel,
            int numHashFunctions,
            LockFreeBitArray bits);
    
        /**
         * Queries {@code numHashFunctions} bits of the given bit array, by hashing a user element;
         * returns {@code true} if and only if all selected bits are set.
         */
        <T extends @Nullable Object> boolean mightContain(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_nl.properties

    labels.related_content_term=Zoekterm
    labels.related_content_title_details=Gerelateerde inhoud
    labels.related_query_configuration=Gerelateerde query
    labels.related_query_list_term=Zoekterm
    labels.related_query_queries=Queries
    labels.related_query_term=Zoekterm
    labels.related_query_title_details=Gerelateerde query
    labels.crud_button_create=Maken
    labels.crud_button_update=Bijwerken
    labels.crud_button_delete=Verwijderen
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/base/CharMatcher.java

       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
       * constructs an eight-kilobyte bit array and queries that. In many situations this produces a
       * matcher which is faster to query than the original.
       */
      @GwtIncompatible // SmallCharMatcher
      CharMatcher precomputedInternal() {
        BitSet table = new BitSet();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 53.9K bytes
    - Viewed (0)
Back to top