Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,837 for construct (0.74 sec)

  1. src/main/java/jcifs/internal/fscc/FileEndOfFileInformation.java

        public byte getFileInformationLevel() {
            return FileInformation.FILE_ENDOFFILE_INFO;
        }
    
        /**
         * Constructs file end of file information.
         *
         * @param eofOfFile the end of file position
         */
        public FileEndOfFileInformation(final long eofOfFile) {
            this.endOfFile = eofOfFile;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Decodable#decode(byte[], int, int)
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java

        /** Pattern V1 compression */
        public static final int COMPRESSION_PATTERN_V1 = 0x4;
    
        private int[] compressionAlgorithms;
        private int flags;
    
        /**
         * Constructs a compression negotiate context with the specified algorithms.
         *
         * @param config the configuration
         * @param compressionAlgorithms the supported compression algorithms
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SecurityBlobTest.java

            // Assert
            assertEquals(expected, actual, "Hex string should match expected format");
        }
    
        // Ensures a default-constructed blob starts empty and stable across APIs
        @Test
        @DisplayName("Default constructor yields empty state")
        void defaultConstructor_initialState() {
            // Arrange & Act
            SecurityBlob blob = new SecurityBlob();
    
            // Assert
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/fscc/FileRenameInformation2.java

    public class FileRenameInformation2 implements FileInformation {
    
        private boolean replaceIfExists;
        private String fileName;
    
        /**
         * Default constructor for decoding.
         */
        public FileRenameInformation2() {
        }
    
        /**
         * Constructs file rename information.
         *
         * @param name the new file name
         * @param replaceIfExists whether to replace if the target file exists
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  5. 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)
  6. CHANGELOG/CHANGELOG-1.31.md

      
      The API does include a few breaking changes:
      - The "extraArgs" component construct is now a list of "name"/"value" pairs instead of a string/string map. This has been done to support duplicate args where needed.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java

         * Gets the offset to the next entry.
         *
         * @return the next entry offset in bytes
         */
        public int getNextEntryOffset() {
            return this.nextEntryOffset;
        }
    
        /**
         * Constructs a file notify information from the given buffer.
         *
         * @param buffer the buffer containing the notification data
         * @param bufferIndex the starting index in the buffer
         * @param len the length of data to decode
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top