Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for disallowed (0.18 sec)

  1. src/main/webapp/js/bootstrap.min.js.map

    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jan 11 06:54:28 GMT 2020
    - 189.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            if ( !selected.atLeast(getConfig().getMinimumVersion()) || !selected.atMost(getConfig().getMaximumVersion()) ) {
                log.error(
                    String.format(
                        "Server selected an disallowed dialect version %s (min: %s max: %s)",
                        selected,
                        getConfig().getMinimumVersion(),
                        getConfig().getMaximumVersion()));
                return false;
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/bootstrap.min.js.map

    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 185.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/BaseConfiguration.java

            if ( prop == null ) {
                return;
            }
            Set<String> disallow = new HashSet<>();
            StringTokenizer st = new StringTokenizer(prop, ",");
            while ( st.hasMoreTokens() ) {
                disallow.add(st.nextToken().trim());
            }
            this.disallowCompound = disallow;
        }
    
    
        protected void initDefaults () throws CIFSException {
    
            try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  5. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        public static final int FILE_NO_COMPRESSION = 0x8000;
        /**
         * 
         */
        public static final int FILE_OPEN_REQUIRING_OPLOCK = 0x10000;
        /**
         * 
         */
        public static final int FILE_DISALLOW_EXCLUSIVE = 0x20000;
        /**
         * 
         */
        public static final int FILE_RESERVE_OPFILTER = 0x100000;
        /**
         * 
         */
        public static final int FILE_OPEN_REPARSE_POINT = 0x200000;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 09:52:11 GMT 2019
    - 14.3K bytes
    - Viewed (0)
Back to top