Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for exposing (0.28 sec)

  1. src/main/java/jcifs/smb/DfsImpl.java

                        break;
                    }
                }
            }
    
            if ( dr != null && now > dr.getExpiration() ) {
                if ( log.isTraceEnabled() ) {
                    log.trace("Expiring links " + link);
                }
                links.map.remove(link);
                dr = null;
            }
    
            if ( dr == null ) {
                if ( tf.getConfig().isDfsConvertToFQDN()) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

            resp = new SmbComReadAndXResponse();
    
            connect0();
            dest.connect0();
    
                    /* At this point the maxBufferSize values are from the server
                     * exporting the volumes, not the one that we will actually
                     * end up performing IO with. If the server hosting the
                     * actual files has a smaller maxBufSize this could be
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  3. src/main/java/jcifs/SmbResource.java

         */
        ACE[] getSecurity ( boolean resolveSids ) throws IOException;
    
    
        /**
         * Return an array of Access Control Entry (ACE) objects representing
         * the share permissions on the share exporting this file or directory.
         * If no DACL is present, null is returned. If the DACL is empty, an array with 0 elements is returned.
         * <p>
         * Note that this is different from calling <tt>getSecurity</tt> on a
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpFilter.java

                        }
                        this.dcList[ i ] = null;
                    }
                }
    
                /*
                 * No DCs found, for retieval of list by expiring it and retry.
                 */
                this.dcListExpiration = 0;
            }
            while ( retry-- > 0 );
    
            this.dcListExpiration = now + 1000 * 60 * 15; /* 15 min */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbSession.java

                                }
                            }
                            dc_list[i] = null;
                        }
                    }
    
                    /* No DCs found, for retieval of list by expiring it and retry.
                     */
                    dc_list_expiration = 0;
                } while (retry-- > 0);
    
                dc_list_expiration = now + 1000 * 60 * 15; /* 15 min */
    }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
Back to top