- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 1,293 for Constructors (1.71 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java
@BeforeEach public void setUp() { response = new SmbComQueryInformationResponse(serverTimeZoneOffset); } /** * Test of constructor, of class SmbComQueryInformationResponse. */ @Test public void testConstructor() { // The constructor sets the command and serverTimeZoneOffset. // We can't directly access serverTimeZoneOffset, but we can verify its effect.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/UniAddressTest.java
// Act UniAddress ua = new UniAddress(dummy); // Assert assertSame(dummy, ua.getAddress(), "constructor should store the supplied address"); } @Test void constructorRejectsNull() { // Expect constructor to throw IllegalArgumentException when passed null assertThrows(IllegalArgumentException.class, () -> new UniAddress(null)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
testHashAlgos = new int[] { PreauthIntegrityNegotiateContext.HASH_ALGO_SHA512 }; } @Test @DisplayName("Should create context with constructor parameters") void testConstructorWithParameters() { // Act context = new PreauthIntegrityNegotiateContext(mockConfig, testHashAlgos, testSalt); // Assert
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
testFileName = "test-file.txt"; response = new Smb2CloseResponse(mockConfig, testFileId, testFileName); } @Nested @DisplayName("Constructor Tests") class ConstructorTests { @Test @DisplayName("Constructor should initialize with config, fileId and fileName") void testConstructorWithAllParameters() { // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
@BeforeEach void setUp() { // Setup will be done per test as needed } @Test void testConstructorWithMinimalParameters() throws UnknownHostException { // Test the constructor with minimal parameters mockName = new Name(mockConfig, "TESTHOST", 0x20, null); NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE); assertNotNull(nbtAddress);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
private static final Logger logger = LogManager.getLogger(PurgeThumbnailJob.class); /** * Default constructor for PurgeThumbnailJob. * Creates a new instance of the thumbnail purging job with default expiry time (30 days). */ public PurgeThumbnailJob() { // Default constructor } /** Expiration time for thumbnails in milliseconds (default: 30 days) */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/ServerData.java
* Stores server-specific data obtained during SMB1 protocol negotiation. */ public class ServerData { /** * Default constructor for ServerData. * Creates an empty server data container to be populated during SMB negotiation. */ public ServerData() { // Default constructor } /** * Server flags from the SMB header. */ public byte sflags; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java
private int currentPageNumber; /** Character mapping ID for search filtering. */ public String id; /** * Default constructor for CharMappingPager. */ public CharMappingPager() { // Default constructor } /** * Clears all search criteria and resets pagination settings. */ public void clear() { allRecordCount = 0;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/PathMapPager.java
import org.codelibs.fess.util.ComponentUtil; /** * Pager for path mapping. */ public class PathMapPager implements Serializable { /** * Default constructor. */ public PathMapPager() { // Default constructor } private static final long serialVersionUID = 1L; /** Default page size. */ public static final int DEFAULT_PAGE_SIZE = 20;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
* This service handles the persistence and retrieval of favorite log entries in the search system. */ public class FavoriteLogService { /** * Default constructor. */ public FavoriteLogService() { // Default constructor } /** System helper for common system operations and utilities. */ @Resource protected SystemHelper systemHelper;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0)