Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 351 - 360 of 987 for new1 (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

            FieldConfigs fieldConfigs = new FieldConfigs(params);
            final Map<String, Object> dataMap = Map.of(//
                    "foo", new String[] { "aaa", "bbb" }, //
                    "bar", new String[] { "ccc", "ddd" }, //
                    "baz", new String[] { "eee", "fff" });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/pager/StemmerOverridePagerTest.java

            List<Integer> pageNumberList = new ArrayList<Integer>(1);
            stemmerOverridePager.setPageNumberList(pageNumberList);
            assertEquals(pageNumberList, stemmerOverridePager.getPageNumberList());
    
        }
    
        public void test_clear() {
            StemmerOverridePager stemmerOverridePager = new StemmerOverridePager();
            stemmerOverridePager.id = "testId";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceActionTest.java

            final AdminMaintenanceAction action = new AdminMaintenanceAction();
            assertTrue(action.isLogFilename("fess.log"));
            assertTrue(action.isLogFilename("crawler.log"));
            assertTrue(action.isLogFilename("audit.log"));
        }
    
        @Test
        public void test_isLogFilename_logGzExtension() {
            final AdminMaintenanceAction action = new AdminMaintenanceAction();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Adds a URL to a user's favorite list.
         * This method looks up the user by their code and creates a new favorite log entry
         * using the provided lambda function to populate the favorite log data.
         *
         * @param userCode the unique code identifying the user
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsDuplicateHostCA.java

            DuplicateHostCQ cq = new DuplicateHostCQ();
            if (queryLambda != null) {
                queryLambda.callback(cq);
            }
            FilterAggregationBuilder builder = regFilterA(name, cq.getQuery());
            if (opLambda != null) {
                opLambda.callback(builder);
            }
            if (aggsLambda != null) {
                DuplicateHostCA ca = new DuplicateHostCA();
                aggsLambda.callback(ca);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 50.7K bytes
    - Click Count (1)
  6. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsBoostDocumentRuleCA.java

            BoostDocumentRuleCQ cq = new BoostDocumentRuleCQ();
            if (queryLambda != null) {
                queryLambda.callback(cq);
            }
            FilterAggregationBuilder builder = regFilterA(name, cq.getQuery());
            if (opLambda != null) {
                opLambda.callback(builder);
            }
            if (aggsLambda != null) {
                BoostDocumentRuleCA ca = new BoostDocumentRuleCA();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 50.6K bytes
    - Click Count (1)
  7. src/test/java/org/codelibs/fess/llm/LlmChatResponseTest.java

            final LlmChatResponse response = new LlmChatResponse();
            response.setContent("Test content");
            assertEquals("Test content", response.getContent());
    
            response.setContent("Updated content");
            assertEquals("Updated content", response.getContent());
        }
    
        @Test
        public void test_setFinishReason() {
            final LlmChatResponse response = new LlmChatResponse();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

            super.setUp(testInfo);
            corsFilter = new CorsFilter();
            corsHandlerFactory = new TestCorsHandlerFactory();
            // Initialize mocks
            mockRequest = new TestHttpServletRequest();
            mockResponse = new TestHttpServletResponse();
            mockFilterChain = new TestFilterChain();
            ComponentUtil.register(corsHandlerFactory, "corsHandlerFactory");
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java

            Map<String, String> searchParams = new HashMap<>();
            searchParams.put("q", "*");
            String searchResponse = checkMethodBase(new HashMap<>()).params(searchParams).get("/api/v1/documents").asString();
            String queryId = JsonPath.from(searchResponse).getString("query_id");
    
            // Try to set favorite with invalid docId
            Map<String, String> params = new HashMap<>();
            params.put("queryId", queryId);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            if (values.length == 0) {
                // invalid?
                return new PathInfo(StringUtil.EMPTY, StringUtil.EMPTY);
            }
            if (values.length == 1) {
                return new PathInfo(StringUtil.EMPTY, values[0]);
            }
            final StringBuilder buf = new StringBuilder();
            for (int i = 0; i < values.length - 1; i++) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 22.1K bytes
    - Click Count (0)
Back to Top