- Sort Score
- Result 10 results
- Languages All
Results 781 - 790 of 1,857 for constructs (0.22 sec)
-
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
/** * Pager for KeyMatch. */ public class KeyMatchPager implements Serializable { private static final long serialVersionUID = 1L; /** * Default constructor. */ public KeyMatchPager() { // Default constructor } /** The default page size. */ public static final int DEFAULT_PAGE_SIZE = 20; /** The default current page number. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
protected FessConfig fessConfig; /** Behavior class for user database operations */ @Resource protected UserBhv userBhv; /** * Default constructor for GroupService. */ public GroupService() { // Default constructor } /** * Retrieves a paginated list of groups based on the provided pager criteria.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/netbios/SessionServicePacket.java
*/ public abstract class SessionServicePacket { /** * Default constructor for SessionServicePacket. * Creates a new session service packet instance. */ public SessionServicePacket() { // Default constructor } // session service packet types static final int SESSION_MESSAGE = 0x00; static final int SESSION_REQUEST = 0x81;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Lmhosts.java
import jcifs.smb1.util.LogStream; /** * Lmhosts file handling for NetBIOS name resolution. */ public class Lmhosts { /** * Default constructor for Lmhosts. */ public Lmhosts() { // Default constructor } private static final String FILENAME = Config.getProperty("jcifs.smb1.netbios.lmhosts"); private static final Hashtable TAB = new Hashtable();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
} // Test constructor public void test_constructor() { FessTimeResourceProvider testProvider = new FessTimeResourceProvider(mockConfig); assertNotNull(testProvider); } // Test constructor with null config public void test_constructor_nullConfig() { try { new FessTimeResourceProvider(null); // Constructor may accept null, so test continues
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
import org.junit.jupiter.params.provider.ValueSource; import jcifs.internal.util.SMBUtil; /** * Test class for FsctlPipeWaitRequest */ class FsctlPipeWaitRequestTest { @Test @DisplayName("Test constructor with name only sets correct fields") void testConstructorWithNameOnly() { // Test with simple pipe name String pipeName = "TestPipe";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
private DataStoreParams dataStoreParams; @Override public void setUp() throws Exception { super.setUp(); dataStoreParams = new DataStoreParams(); } // Test default constructor public void test_defaultConstructor() { DataStoreParams params = new DataStoreParams(); assertNotNull(params); assertNotNull(params.params); } // Test put and get operations
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/CustomSizeValidator.java
* Validator implementation for the CustomSize constraint. */ public class CustomSizeValidator implements ConstraintValidator<CustomSize, CharSequence> { /** * Default constructor. */ public CustomSizeValidator() { // Empty constructor } private int min = 0; private int max = Integer.MAX_VALUE; private String message; @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
*/ public abstract class JobExecutor { /** Listener to handle shutdown events */ protected ShutdownListener shutdownListener; /** * Default constructor. */ public JobExecutor() { // Default constructor } /** * Executes a script with the specified script type and content. * * @param scriptType the type of script to execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrHyperTest.java
} @Test void testConstructorAndGetValue() { // Test that the constructor correctly initializes the value long expectedValue = 123456789012345L; NdrHyper ndrHyper = new NdrHyper(expectedValue); assertEquals(expectedValue, ndrHyper.value, "Constructor should set the correct value."); } @Test void testEncode() throws NdrException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.2K bytes - Viewed (0)