- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 33 for modifiers (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
// Test that load method modifies the user object through apply User user = createTestUser("testuser", "password123"); testLdapManager.applyModifiesUser = true; User result = ldapChain.load(user); assertSame(user, result); assertEquals("modified", user.getName()); // Check that user was modified assertTrue(testLdapManager.applyCalled); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java
public void test_class_is_public() { assertTrue("Class should be public", java.lang.reflect.Modifier.isPublic(SystemMonitorTarget.class.getModifiers())); assertFalse("Class should not be abstract", java.lang.reflect.Modifier.isAbstract(SystemMonitorTarget.class.getModifiers())); assertFalse("Class should not be final", java.lang.reflect.Modifier.isFinal(SystemMonitorTarget.class.getModifiers())); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java
} @Test public void test_isPublicClass() { assertTrue("FessWebResourceRoot should be public", java.lang.reflect.Modifier.isPublic(FessWebResourceRoot.class.getModifiers())); assertFalse("FessWebResourceRoot should not be abstract", java.lang.reflect.Modifier.isAbstract(FessWebResourceRoot.class.getModifiers())); } @Test public void test_constructorSignature() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 4.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymItemTest.java
String[] returnedInputs = item.getInputs(); // Modifying returned array should not affect original returnedInputs[0] = "modified"; // Get again and verify not modified String[] inputs2 = item.getInputs(); assertEquals("a", inputs2[0]); assertEquals("b", inputs2[1]); assertEquals("c", inputs2[2]); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8K bytes - Click Count (1) -
src/packaging/deb/init.d/fess
# # Written by Miquel van Smoorenburg <******@****.***>. # Modified for Debian GNU/Linux by Ian Murdock <******@****.***>. # Modified for Tomcat by Stefan Gybas <******@****.***>. # Modified for Tomcat6 by Thierry Carrez <******@****.***>. # Additional improvements by Jason Brittain <******@****.***>. # Modified by Nicolas Huray for Fess <******@****.***>. # ### BEGIN INIT INFO
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 15 06:32:15 GMT 2023 - 5.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/storage/StorageItem.java
* Returns the size of the item in bytes. * * @return the item size */ public long getSize() { return size; } /** * Returns the last modified timestamp. * * @return the last modified timestamp */ public ZonedDateTime getLastModified() { return lastModified; } /** * Returns the base64-encoded ID of the item. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 2.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java
assertNotNull(configClass); assertEquals("SpnegoConfig", configClass.getSimpleName()); // Verify it's a static inner class assertTrue(java.lang.reflect.Modifier.isStatic(configClass.getModifiers())); } catch (ClassNotFoundException e) { fail("SpnegoConfig inner class should exist"); } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/FessLastaDocTest.java
String appWebPkg = ".app.web."; String actionSuffix = "Action"; // ## Act ## policeStoryOfJavaClassChase((srcFile, clazz) -> { if (clazz.isInterface() || Modifier.isAbstract(clazz.getModifiers())) { // e.g. BaseAction return; } final String className = clazz.getName();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 2.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java
public String id; /** * The version number of the user for optimistic locking. * This field is required to prevent concurrent modification conflicts * by ensuring the user hasn't been modified by another process. */ @Required @ValidateTypeFailure public Integer versionNo;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java
public String id; /** * The version number of the scheduler for optimistic locking. * This field is required to prevent concurrent modification conflicts * by ensuring the scheduler hasn't been modified by another process. */ @Required @ValidateTypeFailure public Integer versionNo;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.8K bytes - Click Count (0)