Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            return this.domain;
        }
    
    
        /**
         * @param fullName
         *            the fullName to set
         */
        @Override
        public void setFullUNCPath ( String domain, String server, String fullName ) {
            this.domain = domain;
            this.server = server;
            this.fullName = fullName;
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * Strips a leading \
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 01 09:52:11 GMT 2019
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/RequestWithPath.java

    
        /**
         * @param path
         */
        void setPath ( String path );
    
    
        /**
         * 
         * @param domain
         * @param server
         * @param fullPath
         */
        void setFullUNCPath ( String domain, String server, String fullPath );
    
    
        /**
         * @param resolve
         * 
         */
        void setResolveInDfs ( boolean resolve );
    
    
        /**
         * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

            String fullPath = "\\" + loc.getServer() + "\\" + loc.getShare() + loc.getUNCPath();
            int maxRetries = this.ctx.getConfig().getMaxRequestRetries();
            for ( int retries = 1; retries <= maxRetries; retries++ ) {
    
                if ( rpath != null ) {
                    rpath.setFullUNCPath(null, null, fullPath);
                }
    
                try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  4. LICENSE

    convey the exclusion of warranty; and each file should have at least the
    "copyright" line and a pointer to where the full notice is found.
    
        {description}
        Copyright (C) {year} {fullname}
    
        This library is free software; you can redistribute it and/or
        modify it under the terms of the GNU Lesser General Public
        License as published by the Free Software Foundation; either
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         */
        @Override
        public void setFullUNCPath ( String domain, String server, String fullPath ) {
            this.domain = domain;
            this.server = server;
            this.fullPath = fullPath;
        }
    
    
        /**
         * @param path
         *            the path to set
         */
        @Override
        public final void setPath ( String path ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
Back to top