Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Accent (0.42 sec)

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

         * as the specified wildcard and attributes are passed to the server for
         * filtering there (although attributes are largely ignored by servers
         * they are filtered locally by the default accept method).
         * 
         * @param wildcard
         * @param attributes
         */
        public DosFileFilter ( String wildcard, int attributes ) {
            this.wildcard = wildcard;
            this.attributes = attributes;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SpnegoContext.java

                // already established, but server hasn't completed yet
                NegTokenTarg targ = (NegTokenTarg) spToken;
    
                if ( targ.getResult() == NegTokenTarg.ACCEPT_INCOMPLETE && targ.getMechanismToken() == null && targ.getMechanismListMIC() != null ) {
                    // this indicates that mechlistMIC is required by the server
                    verifyMechListMIC(targ.getMechanismListMIC());
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ResourceNameFilter.java

    public interface ResourceNameFilter {
    
        /**
         * 
         * @param parent
         * @param name
         * @return whether the given filename should be included
         * @throws CIFSException
         */
        public boolean accept ( SmbResource parent, String name ) throws CIFSException;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFileFilter.java

    /**
     * 
     * 
     */
    public interface SmbFileFilter {
    
        /**
         * 
         * @param file
         * @return whether the given file should be included
         * @throws SmbException
         */
        public boolean accept ( SmbFile file ) throws SmbException;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/FileEntryAdapterIterator.java

                        log.error("Failed to create child URL", e);
                        continue;
                    }
                }
    
                try ( SmbResource r = adapt(fe) ) {
                    if ( this.filter.accept(r) ) {
                        return r;
                    }
                }
                catch ( MalformedURLException e ) {
                    log.error("Failed to create child URL", e);
                    continue;
                }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/ShareEnumIterator.java

                        log.error("Failed to create child URL", e);
                        continue;
                    }
                }
                try ( SmbResource nr = adapt(n) ) {
                    if ( !this.filter.accept(nr) ) {
                        continue;
                    }
                    return nr;
                }
                catch ( CIFSException e ) {
                    log.error("Failed to apply filter", e);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NetServerEnumIterator.java

        private final boolean filter ( FileEntry fe ) {
            String name = fe.getName();
            if ( this.nameFilter == null ) {
                return true;
            }
            try {
                if ( !this.nameFilter.accept(this.parent, name) ) {
                    return false;
                }
                return true;
            }
            catch ( CIFSException e ) {
                log.error("Failed to apply name filter", e);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

                        return false;
                }
            }
            if ( this.nameFilter == null ) {
                return true;
            }
            try {
                if ( !this.nameFilter.accept(this.parent, name) ) {
                    return false;
                }
                return true;
            }
            catch ( CIFSException e ) {
                log.error("Failed to apply name filter", e);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

                if (fnf != null && fnf.accept(this, name) == false)
                    continue;
                if (name.length() > 0) {
                    // if !files we don't need to create SmbFiles here
                    SmbFile f = new SmbFile(this, name, e.getType(),
                                ATTR_READONLY | ATTR_DIRECTORY, 0L, 0L, 0L );
                    if (ff != null && ff.accept(f) == false)
                        continue;
    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)
  10. src/main/java/jcifs/smb/NtStatus.java

            "No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.",
            "Indicates a Windows NT Server could not be contacted or that objects within the domain are protected such that necessary information could not be retrieved.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
Back to top