Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,026 for Results (0.18 sec)

  1. src/main/java/org/codelibs/fess/util/FacetResponse.java

    import org.opensearch.search.aggregations.bucket.terms.Terms;
    
    import com.google.common.io.BaseEncoding;
    
    /**
     * Response object for faceted search results containing query counts and field facets.
     * This class processes OpenSearch aggregations to provide structured facet information
     * for search result filtering and navigation.
     */
    public class FacetResponse {
        /**
         * Map containing query facet counts, where keys are decoded query strings
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

     * This class provides functionality to load, cache, and retrieve related queries
     * based on search terms and virtual hosts. Related queries are used to suggest
     * alternative or supplementary search terms to improve search results.
     */
    public class RelatedQueryHelper extends AbstractConfigHelper {
        private static final Logger logger = LogManager.getLogger(RelatedQueryHelper.class);
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  3. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt

              add(client.newCall(buildRequest(hostname, DnsRecordCodec.TYPE_AAAA)))
            }
          }
    
        val failures = ArrayList<Exception>(2)
        val results = ArrayList<InetAddress>(5)
        executeRequests(hostname, networkRequests, results, failures)
    
        return results.ifEmpty {
          throwBestFailure(hostname, failures)
        }
      }
    
      private fun executeRequests(
        hostname: String,
        networkRequests: List<Call>,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/DiscreteDomain.java

          checkNonnegative(distance, "distance");
          long result = origin + distance;
          if (result < 0) {
            checkArgument(origin < 0, "overflow");
          }
          return result;
        }
    
        @Override
        public long distance(Long start, Long end) {
          long result = end - start;
          if (end > start && result < 0) { // overflow
            return Long.MAX_VALUE;
          }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedPaths;
    
        /** The document paths to include in search results (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedDocPaths;
    
        /** The document paths to exclude from search results (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedDocPaths;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/DiscreteDomain.java

          checkNonnegative(distance, "distance");
          long result = origin + distance;
          if (result < 0) {
            checkArgument(origin < 0, "overflow");
          }
          return result;
        }
    
        @Override
        public long distance(Long start, Long end) {
          long result = end - start;
          if (end > start && result < 0) { // overflow
            return Long.MAX_VALUE;
          }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/internal/duplex/MockSocketHandler.kt

     * [receiveRequest] in the sequence they are run.
     */
    class MockSocketHandler : SocketHandler {
      private val actions = LinkedBlockingQueue<Action>()
      private val results = LinkedBlockingQueue<FutureTask<Void>>()
    
      fun receiveRequest(expected: String) =
        apply {
          actions += { stream ->
            val actual = stream.source.readUtf8(expected.utf8Size())
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

            assertSame(first, second);
            assertSame(invertibleCryptographer, first);
        }
    
        public void test_providePrimaryInvertibleCryptographer_consistency() {
            // Test multiple calls return consistent results
            for (int i = 0; i < 10; i++) {
                InvertibleCryptographer cryptographer = securityResourceProvider.providePrimaryInvertibleCryptographer();
                assertNotNull(cryptographer);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            String result3 = crawlingInfoHelper.generateId(input3);
            assertNotNull(result3);
            assertEquals(128, result3.length());
    
            // Test that different inputs produce different results
            assertFalse(result1.equals(result2));
            assertFalse(result2.equals(result3));
            assertFalse(result1.equals(result3));
        }
    
        public void test_generateId_consistentResults() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            });
        }
    
        /**
         * Sets up pagination data for the web authentication search results.
         * Registers web authentication items and determines if the create link should be displayed.
         *
         * @param data the render data to populate with search results
         * @param form the search form containing filter criteria
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
Back to top