Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 91 for SET (0.03 sec)

  1. 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)
  2. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        }
    
    
        /**
         * @param notifyFlags
         *            the notifyFlags to set
         */
        public void setNotifyFlags ( int notifyFlags ) {
            this.notifyFlags = notifyFlags;
        }
    
    
        /**
         * @param completionFilter
         *            the completionFilter to set
         */
        public void setCompletionFilter ( int completionFilter ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

                            log.debug("sessionSetup: " + this.credentials);
                        }
    
                        /*
                         * We explicitly set uid to 0 here to prevent a new
                         * SMB_COM_SESSION_SETUP_ANDX from having it's uid set to an
                         * old value when the session is re-established. Otherwise a
                         * "The parameter is incorrect" error can occur.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmAuthenticator.java

    public abstract class NtlmAuthenticator {
    
        private static NtlmAuthenticator auth;
    
        private String url;
        private SmbAuthException sae;
    
    
        /**
         * Set the default <tt>NtlmAuthenticator</tt>. Once the default authenticator is set it cannot be changed. Calling
         * this metho again will have no effect.
         * 
         * @param a
         */
    
        public synchronized static void setDefault ( NtlmAuthenticator a ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/KerberosTest.java

    import java.net.MalformedURLException;
    import java.security.Principal;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.HashSet;
    import java.util.Map;
    import java.util.Set;
    
    import javax.security.auth.Subject;
    import javax.security.auth.kerberos.KerberosPrincipal;
    import javax.security.auth.kerberos.KerberosTicket;
    import javax.security.auth.kerberos.KeyTab;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 11.5K bytes
    - Viewed (0)
  6. 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)
  7. src/test/java/jcifs/tests/AllTests.java

                Map<String, String> map = toMap(props);
                String cfgname = fname.substring(0, fname.length() - 5);
                configs.put(cfgname, map);
                Set<String> apply = new HashSet<>(Arrays.asList(applyMutations));
    
                Set<String> excludes = new HashSet<>();
                if ( map.get(TestProperties.EXCLUDE_TEST_MUTATIONS) != null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/Config.java

        // supress javadoc constructor summary by removing 'protected'
        Config() {}
    
        /**
         * Set the default properties of the static Properties used by <tt>Config</tt>. This permits
         * a different Properties object/file to be used as the source of properties for
         * use by the jCIFS library. The Properties must be set <i>before jCIFS
         * classes are accessed</i> as most jCIFS classes load properties statically once.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java

         */
        @Override
        public final Integer getOverrideTimeout () {
            return this.overrideTimeout;
        }
    
    
        /**
         * @param overrideTimeout
         *            the overrideTimeout to set
         */
        public final void setOverrideTimeout ( Integer overrideTimeout ) {
            this.overrideTimeout = overrideTimeout;
        }
    
    
        /**
         * 
         * @return create response
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

         * @param readSize
         *            the readSize to set
         */
        public void setReadSize ( int readSize ) {
            this.readSize = readSize;
        }
    
    
        /**
         * @return the async
         */
        public boolean isAsync () {
            return this.async;
        }
    
    
        /**
         * @param command
         *            the command to set
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
Back to top