Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for SET (0.08 sec)

  1. 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)
  2. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        /**
         * @param flags
         *            the flags to set
         */
        public final void setFlags ( byte flags ) {
            this.flags = flags;
        }
    
    
        /**
         * @return the flags2
         */
        public final int getFlags2 () {
            return this.flags2;
        }
    
    
        /**
         * @param fl
         *            the flags2 to set
         */
        public final void setFlags2 ( int fl ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/TimeoutTest.java

                        timeout < 1.5 * ( ctx.getConfig().getConnTimeout() + ctx.getConfig().getResponseTimeout() ));
    
                    Set<Thread> threadsAfter = new HashSet<>(Thread.getAllStackTraces().keySet());
                    threadsAfter.removeAll(threadsBefore);
    
                    Set<Thread> leaked = new HashSet<>();
                    for ( Thread t : threadsAfter ) {
                        if ( t.getName().startsWith("Transport") ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

        }
    
    
        /**
         * @param maxBufferSize
         *            the maxBufferSize to set
         */
        public final void setMaxBufferSize ( int maxBufferSize ) {
            this.maxBufferSize = maxBufferSize;
        }
    
    
        /**
         * @param maxDataCount
         *            the maxDataCount to set
         */
        public final void setMaxDataCount ( int maxDataCount ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top