Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for anymatch (1 sec)

  1. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            assertFalse(result);
            assertEquals(1, chain1.changePasswordCallCount);
            assertEquals(1, chain2.changePasswordCallCount);
            // allMatch may short-circuit, so chain3 might not be called
            assertTrue(chain3.changePasswordCallCount <= 1);
        }
    
        // Test delete with no chains
        public void test_delete_noChains() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java

    import org.codelibs.fess.app.web.admin.general.AdminGeneralAction;
    import org.codelibs.fess.app.web.admin.group.AdminGroupAction;
    import org.codelibs.fess.app.web.admin.joblog.AdminJoblogAction;
    import org.codelibs.fess.app.web.admin.keymatch.AdminKeymatchAction;
    import org.codelibs.fess.app.web.admin.labeltype.AdminLabeltypeAction;
    import org.codelibs.fess.app.web.admin.log.AdminLogAction;
    import org.codelibs.fess.app.web.admin.maintenance.AdminMaintenanceAction;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'page.keymatch.max.fetch.size'. <br>
         * The value is, e.g. 1000 <br>
         * comment: Maximum number of keymatch records to fetch per page.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getPageKeymatchMaxFetchSize();
    
        /**
         * Get the value for the key 'page.keymatch.max.fetch.size' as {@link Integer}. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            updateConfigListenerMap.put("RelatedQuery", () -> Integer.toString(ComponentUtil.getRelatedQueryHelper().load()));
            updateConfigListenerMap.put("KeyMatch", () -> Integer.toString(ComponentUtil.getKeyMatchHelper().load()));
        }
    
        /**
         * Parses project properties from the given path.
         *
         * @param propPath The path to the project properties file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top