Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 161 - 170 of 224 for accent (0.03 seconds)

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

  1. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

                if (lFileName.endsWith("." + ext)) {
                    return true;
                }
            }
            return false;
        }
    
        /**
         * Download a design file.
         * @param form The file access form.
         * @return The stream response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public StreamResponse download(final FileAccessForm form) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 20.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

            // Note: ResourceUtil.getPluginJarFiles is a static method, so we can't mock it directly
            // The test will verify the method works with the actual ResourceUtil implementation
    
            // Test with reflection to access protected method
            List<String> names = testFactory.loadDataStoreNameList();
            assertTrue(names.isEmpty() || names.size() >= 0); // Will be empty due to ResourceUtil static method
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

                assertNotNull(instance);
    
            } catch (NoSuchMethodException | InstantiationException | IllegalAccessException | InvocationTargetException e) {
                fail("Should be able to access private constructor: " + e.getMessage());
            }
        }
    
        @Test
        public void test_class_isFinal() {
            // Verify that WebApiUtil is a final class
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

                    }
                }
            }
            return roleTypeList;
        }
    
        /**
         * Extracts role type information from file system response data.
         * Processes ACL (Access Control List) or POSIX file attributes to extract user and group information.
         *
         * @param responseData the response data containing file system metadata
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 13 05:54:52 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/job/PythonJob.java

     * Python scripts with proper environment setup and argument passing.
     *
     * <p>Python scripts are executed in the WEB-INF/env/python/resources directory
     * and have access to the Fess system environment including OpenSearch URL and session ID.</p>
     */
    public class PythonJob extends ExecJob {
        /** Logger instance for this class */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java

        //                                                         =========================
    
        @Test
        public void test_security_pathTraversalWithLogExtension() {
            // These patterns attempt to access files outside the log directory
            // but must end with .log to pass isLogFilename check
    
            String sanitized1 = AdminLogAction.sanitizeFilename("../../../var/log/auth.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)
  7. src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java

    /**
     * Unit tests for IpAddressUtil class.
     */
    public class IpAddressUtilTest {
    
        @Test
        public void testCompressIPv6() {
            // Test IPv6 compression (using reflection to access protected method)
            try {
                java.lang.reflect.Method method = IpAddressUtil.class.getDeclaredMethod("compressIPv6", String.class);
                method.setAccessible(true);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            final List<Map<String, Object>> fileList = new ArrayList<>();
    
            try (final StorageClient client = StorageClientFactory.createClient(fessConfig)) {
                // Ensure bucket exists on first access
                client.ensureBucketExists();
    
                final List<StorageItem> items = client.listObjects(prefix, fessConfig.getStorageMaxItemsInPageAsInteger());
    
                for (final StorageItem item : items) {
    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)
  9. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

         * This provides database operations for RelatedQuery entities.
         */
        @Resource
        protected RelatedQueryBhv relatedQueryBhv;
    
        /**
         * Configuration properties for Fess application.
         * Used to access various configuration settings like paging parameters.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of related queries based on the provided pager parameters.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.4K bytes
    - Click Count (0)
  10. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AlphabeticalAcceptedApiChangesTaskIntegrationTest.kt

                )
            )
        }
    
        @Test
        fun `verify AlphabeticalAcceptedApiChangesTask accepts properly ordered changes`() {
            //language=JSON
            firstAcceptedApiChangesFile.writeText(
                """
                    {
                        "acceptedApiChanges": [
                            {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 14 02:17:00 GMT 2025
    - 8.4K bytes
    - Click Count (0)
Back to Top