- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 1,753 for constructed (1.55 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
* Provides structures and methods for DFS management and enumeration. */ public class netdfs { /** * Default constructor for netdfs */ public netdfs() { // Default constructor } /** * Gets the DCE/RPC syntax identifier for the DFS interface * @return the syntax identifier string */ public static String getSyntax() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenTarg.java
public static final int REQUEST_MIC = 3; private ASN1ObjectIdentifier mechanism; private int result = UNSPECIFIED_RESULT; /** * Default constructor for NegTokenTarg */ public NegTokenTarg() { } /** * Constructs a NegTokenTarg with the specified parameters * @param result the negotiation result code * @param mechanism the selected authentication mechanism OID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java
* */ public class FileNotifyInformationImpl implements FileNotifyInformation, Decodable { int nextEntryOffset; int action; int fileNameLength; String fileName; /** * Default constructor for decoding. */ public FileNotifyInformationImpl() { } @Override public int getAction() { return this.action; } @Override public String getFileName() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/Handler.java
private static final Logger log = LoggerFactory.getLogger(Handler.class); private CIFSContext transportContext; /** * Default constructor for SMB URL handler. */ public Handler() { } /** * Constructs an SMB URL handler with the specified CIFS context. * * @param tc the CIFS context to use */ public Handler(final CIFSContext tc) {
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/smb1/smb1/SmbShareInfo.java
protected int type; /** * A descriptive comment or remark about the share. */ protected String remark; /** * Default constructor for SMB share information. */ public SmbShareInfo() { } /** * Constructs SMB share information with specified properties. * * @param netName the network name of the share * @param type the type of the share
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
*/ public static <E> ImmutableList<E> of(E e1) { return construct(e1); } /** * Returns an immutable list containing the given elements, in order. * * @throws NullPointerException if any element is null */ public static <E> ImmutableList<E> of(E e1, E e2) { return construct(e1, e2); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.5K bytes - Viewed (0) -
src/test/java/jcifs/context/CIFSContextCredentialWrapperTest.java
assertEquals(mockCredentials, wrapper.getCredentials(), "Initial credentials should be set by constructor"); } @Test @DisplayName("Should return the credentials provided in the constructor") void testGetCredentials() { assertEquals(mockCredentials, wrapper.getCredentials(), "getCredentials should return the initially set credentials"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
protected int type; /** * The optional comment or description for the share. */ protected String remark; /** * Default constructor for SmbShareInfo. */ public SmbShareInfo() { } /** * Constructs an SmbShareInfo with the specified properties. * * @param netName the network name of the share * @param type the type of the share
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UUID.java
} private static byte B(final int i) { return (byte) (i & 0xFF); } private static short S(final int i) { return (short) (i & 0xFFFF); } /** * Constructs a UUID from an existing rpc.uuid_t object * * @param uuid * wrapped uuid object to copy values from */ public UUID(final rpc.uuid_t uuid) { this.time_low = uuid.time_low;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContext.java
*/ public PreauthIntegrityNegotiateContext(final Configuration config, final int[] hashAlgos, final byte[] salt) { this.hashAlgos = hashAlgos; this.salt = salt; } /** * Default constructor for deserialization. */ public PreauthIntegrityNegotiateContext() { } /** * Gets the salt value used for preauth integrity. * * @return the salt */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.4K bytes - Viewed (0)