- Sort Score
- Result 10 results
- Languages All
Results 641 - 650 of 1,868 for construct (0.13 sec)
-
src/main/java/jcifs/pac/kerberos/KerberosRelevantAuthData.java
/** * Kerberos relevant authorization data container. */ public class KerberosRelevantAuthData extends KerberosAuthData { private List<KerberosAuthData> authorizations; /** * Constructs KerberosRelevantAuthData from token bytes. * * @param token the authorization data token * @param keys map of Kerberos keys indexed by key type * @throws PACDecodingException if decoding fails */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotification.java
* * @author mbechler * */ public class Smb2OplockBreakNotification extends ServerMessageBlock2Response { private byte oplockLevel; private byte[] fileId; /** * Constructs an SMB2 oplock break notification with the given configuration. * * @param config the configuration for this notification */ public Smb2OplockBreakNotification(final Configuration config) {
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/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)