Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for substr (0.06 seconds)

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

  1. src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java

            // Create test directory structure with subdirectory
            File baseDir = new File(tempDir.toFile(), "images");
            File subDir = new File(baseDir, "icons");
            subDir.mkdirs();
            File validFile = new File(subDir, "icon.png");
    
            Boolean result = invokeIsValidUploadPath(validFile, baseDir);
            assertTrue("Valid path in subdirectory should be allowed", result);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

         *
         * @param offset the starting index for pagination (0-based)
         * @param size the maximum number of items to return
         * @return a PagingList containing the requested subset of mapping items
         */
        @Override
        public synchronized PagingList<CharMappingItem> selectList(final int offset, final int size) {
            if (mappingItemList == null) {
                reload(null);
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java

        }
    
        @Test
        public void test_isLogFilename_withPathSeparators() {
            // isLogFilename only checks the file extension, not path components
            assertTrue(AdminLogAction.isLogFilename("subdir/fess.log"));
            assertTrue(AdminLogAction.isLogFilename("../fess.log"));
        }
    
        // ==================================================================================
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

            final FessAdminAction action = createAction();
            System.setProperty("fess.var.path", varDir.toString());
            assertThrows(IllegalArgumentException.class, () -> action.validateFilePath(varDir.toString() + "/subdir/../../.."));
        }
    
        // ===================================================================================
        //                                                              fess.var.path Tests
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                    mainResult.getQueryTime(), mainResult.isPartialResults(), mainResult.getFacetResponse(), startPosition, pageSize, offset);
        }
    
        /**
         * Extracts a subset of documents from the full result list based on pagination parameters.
         * Applies proper bounds checking to ensure the extracted range is within the document list size.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 25 02:13:14 GMT 2025
    - 28K bytes
    - Click Count (0)
Back to Top