- Sort Score
- Result 10 results
- Languages All
Results 1811 - 1820 of 1,878 for constructor (0.11 sec)
-
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
private long endOfFile; private int fileAttributes; private final byte[] fileId = new byte[16]; private CreateContextResponse[] createContexts; private final String fileName; /** * Constructs an SMB2 create response * @param config the client configuration * @param name the file name */ public Smb2CreateResponse(final Configuration config, final String name) { super(config);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 15.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java
private final Map<String, ComponentDef<?>> prototypeMap = new ConcurrentHashMap<>(); private boolean available = true; /** * Constructs a new StandardCrawlerContainer and initializes it. */ public StandardCrawlerContainer() { initialize(); } @Override public <T> T getComponent(final String name) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
private long authenticationTimestamp = System.currentTimeMillis(); /** Flag to track if this authenticator has been closed */ private volatile boolean closed = false; /** * Construct anonymous credentials */ public NtlmPasswordAuthenticator() { this(AuthenticationType.NULL); } /** * Create an NtlmPasswordAuthenticator with the specified authentication type.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
void testNullPath() { // When creating with null path Smb2TreeConnectRequest reqWithNull = new Smb2TreeConnectRequest(mockConfig, null); // Then - should not throw during construction assertNotNull(reqWithNull); // But should throw when trying to use the null path assertThrows(NullPointerException.class, () -> { reqWithNull.size(); }); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
cmd/bucket-lifecycle.go
type restoreObjStatus struct { ongoing bool expiry time.Time } // ongoingRestoreObj constructs restoreObjStatus for an ongoing restore-object. func ongoingRestoreObj() restoreObjStatus { return restoreObjStatus{ ongoing: true, } } // completedRestoreObj constructs restoreObjStatus for a completed restore-object with given expiry. func completedRestoreObj(expiry time.Time) restoreObjStatus {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 33.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
protected int maxBufferSize; // set in SmbTransport.sendTransaction() before nextElement called private byte[] txn_buf; /** * Constructs a transaction request. * * @param config the configuration to use * @param command the SMB command code * @param subCommand the transaction subcommand code */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
} } /** * Creates a Type-2 message using the given raw Type-2 material. * * @param material * The raw Type-2 material used to construct this message. * @throws IOException * If an error occurs while parsing the material. */ public Type2Message(final byte[] material) throws IOException { parse(material); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/netbios/LmhostsTest.java
}); })) { lmhosts.populate(new StringReader(content), mockContext); // Verify include was attempted assertTrue(mockedConstruction.constructed().size() > 0); // Access the internal table to verify main entry was added Field tableField = Lmhosts.class.getDeclaredField("table"); tableField.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
/** * The length of data in the buffer. */ public int length; /** * Buffer for deferred data processing. */ public NdrBuffer deferred; /** * Constructs an NdrBuffer with the specified byte array and starting position. * * @param buf the byte array to use as the buffer * @param start the starting position in the buffer */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
*/ public class SIDCacheImpl implements SidResolver { private static Logger log = LoggerFactory.getLogger(SIDCacheImpl.class); private final Map<SID, SID> sidCache = new HashMap<>(); /** * Constructs a SID cache implementation. * * @param baseContext the CIFS context for this cache */ public SIDCacheImpl(final CIFSContext baseContext) { }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0)