Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 242 for bundle (0.63 sec)

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

    /**
     * Helper class for managing crawling information and statistics.
     * Provides functionality to track crawling sessions, manage document expiration,
     * and handle crawling information storage and retrieval.
     */
    public class CrawlingInfoHelper {
    
        /**
         * Creates a new instance of CrawlingInfoHelper.
         */
        public CrawlingInfoHelper() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

                    parentEncodingMap.put(key, enc);
                    return enc;
                }
            }
            return null;
        }
    
        /**
         * Processes field configurations to handle field overwriting rules.
         * Creates a new data map with fields processed according to their configuration.
         *
         * @param dataMap the original data map to process
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_1x.md

       `X-Android-Selected-Transport` to read the negotiated transport.
    
    
    ## Version 1.0.2
    
    _2013-05-11_
    
     * Fix: Remove use of Java 6-only APIs.
     * Fix: Properly handle exceptions from `NetworkInterface` when querying MTU.
     * Fix: Ensure MTU has a reasonable default and upper-bound.
    
    
    ## Version 1.0.1
    
    _2013-05-06_
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_2x.md

    _2016-02-06_
    
     *  Fix: Permit the trusted CA root to be pinned by `CertificatePinner`.
    
    
    ## Version 2.7.2
    
    _2016-01-07_
    
     *  Fix: Don't eagerly release stream allocations on cache hits. We might still
        need them to handle redirects.
    
    
    ## Version 2.7.1
    
    _2016-01-01_
    
     *  Fix: Don't do a health check on newly-created connections. This is
        unnecessary work that could put the client in an inconsistent state if the
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/cs/stopwords.txt

    až
    bez
    také
    pouze
    první
    vaše
    která
    nás
    nový
    tipy
    pokud
    může
    strana
    jeho
    své
    jiné
    zprávy
    nové
    není
    vás
    jen
    podle
    zde
    už
    být
    více
    bude
    již
    než
    který
    by
    které
    co
    nebo
    ten
    tak
    má
    při
    od
    po
    jsou
    jak
    další
    ale
    si
    se
    ve
    to
    jako
    za
    zpět
    ze
    do
    pro
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 992 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

            }
        }
    
        /**
         * Exports all crawling information parameters to CSV format.
         * The CSV output includes: SessionId, SessionCreatedTime, Key, Value, CreatedTime.
         * Uses cursor-based selection to handle large datasets efficiently.
         *
         * @param writer the Writer to output CSV data to
         */
        public void exportCsv(final Writer writer) {
            final CsvConfig cfg = new CsvConfig(',', '"', '"');
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  7. mockwebserver/README.md

    assertEquals("{}", request.body!!.utf8())
    ```
    
    #### Dispatcher
    
    By default MockWebServer uses a queue to specify a series of responses. Use a
    Dispatcher (`import okhttp3.mockwebserver.Dispatcher`) to handle requests using another policy. One natural policy is to
    dispatch on the request path.
    You can, for example, filter the request instead of using `server.enqueue()`.
    
    ### Java
    ```java
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 19 13:40:52 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

        }
    
        // Test case conversion through ParamMap (camelCase to snake_case)
        public void test_caseConversion() {
            dataStoreParams.put("camelCaseKey", "value1");
            // ParamMap should handle case conversion
            assertNotNull(dataStoreParams.get("camelCaseKey"));
    
            dataStoreParams.put("snake_case_key", "value2");
            assertNotNull(dataStoreParams.get("snake_case_key"));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractBehavior.java

                    docMeta.id(hit.getId());
                    docMeta.version(hit.getVersion());
                    docMeta.seqNo(hit.getSeqNo());
                    docMeta.primaryTerm(hit.getPrimaryTerm());
                    handler.handle(entity);
                });
    
                return !handler.isBreakCursor();
            });
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

        }
    
        public void test_highlightedFields_withNull() {
            queryFieldConfig.highlightedFields = null;
    
            // When highlightedFields is null, the method should handle it gracefully
            // or throw an exception. Test the actual behavior.
            queryFieldConfig.highlightedFields(stream -> {
                // If it doesn't throw NPE, it should provide an empty stream
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
Back to top