Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for SET (0.02 sec)

  1. src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java

            this.fileId = fileId;
        }
    
    
        /**
         * @param padding
         *            the padding to set
         */
        public void setPadding ( byte padding ) {
            this.padding = padding;
        }
    
    
        /**
         * @param readFlags
         *            the readFlags to set
         */
        public void setReadFlags ( byte readFlags ) {
            this.readFlags = readFlags;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java

            this.fileId = fileId;
        }
    
    
        /**
         * @param infoType
         *            the infoType to set
         */
        public final void setInfoType ( byte infoType ) {
            this.infoType = infoType;
        }
    
    
        /**
         * @param fileInfoClass
         *            the fileInfoClass to set
         */
        public final void setFileInfoClass ( byte fileInfoClass ) {
            setInfoType(Smb2Constants.SMB2_0_INFO_FILE);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 10:41:31 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

         *            the subCommand to set
         */
        public final void setSubCommand ( byte subCommand ) {
            this.subCommand = subCommand;
        }
    
    
        /**
         * @return the status
         */
        public final int getStatus () {
            return this.status;
        }
    
    
        /**
         * @param status
         *            the status to set
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 9.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/transport/Response.java

    
    /**
     *
     */
    public interface Response extends Message {
    
        /**
         * 
         * @return whether the response is received
         */
        boolean isReceived ();
    
    
        /**
         * Set received status
         */
        void received ();
    
    
        /**
         * Unset received status
         */
        void clearReceived ();
    
    
        /**
         * 
         * @return number of credits granted by the server
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/DcerpcMessage.java

        /**
         * 
         * @param flag
         * @return whether flag is set
         */
        public boolean isFlagSet ( int flag ) {
            return ( this.flags & flag ) == flag;
        }
    
    
        /**
         * Remove flag
         * 
         * @param flag
         */
        public void unsetFlag ( int flag ) {
            this.flags &= ~flag;
        }
    
    
        /**
         * Set flag
         * 
         * @param flag
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeImpl.java

     */
    
    package jcifs.smb;
    
    
    import java.io.IOException;
    import java.util.Arrays;
    import java.util.Collections;
    import java.util.EnumSet;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicBoolean;
    import java.util.concurrent.atomic.AtomicInteger;
    import java.util.concurrent.atomic.AtomicLong;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/Kerb5Authenticator.java

            to.canFallback = from.canFallback;
            to.forceFallback = from.forceFallback;
        }
    
    
        /**
         * Set the user name which is used to setup <code>GSSContext</code>. If null
         * is set, the default user will be used which is retrieved from the first
         * TGT found in <code>Subject</code> .
         *
         * @param name
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        }
    
    
        /**
         * @param securityFlags
         *            the securityFlags to set
         */
        public void setSecurityFlags ( byte securityFlags ) {
            this.securityFlags = securityFlags;
        }
    
    
        /**
         * @param requestedOplockLevel
         *            the requestedOplockLevel to set
         */
        public void setRequestedOplockLevel ( byte requestedOplockLevel ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 09:52:11 UTC 2019
    - 14.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/config/BaseConfiguration.java

        public int getBatchLimit ( String cmd ) {
            Integer set = this.batchLimits.get(cmd);
            if ( set != null ) {
                return set;
            }
    
            set = doGetBatchLimit(cmd);
            if ( set != null ) {
                this.batchLimits.put(cmd, set);
                return set;
            }
    
            set = DEFAULT_BATCH_LIMITS.get(cmd);
            if ( set != null ) {
                return set;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/net/NetShareEnum.java

            super(config, SMB_COM_TRANSACTION, NET_SHARE_ENUM);
            this.name = new String("\\PIPE\\LANMAN");
            this.maxParameterCount = 8;
    
            // maxDataCount = 4096; why was this set?
            this.maxSetupCount = (byte) 0x00;
            this.setupCount = 0;
            this.timeout = 5000;
        }
    
    
        @Override
        protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.9K bytes
    - Viewed (0)
Back to top