Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetUserInfo (0.04 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

         * as a file or directory from a {@code URL} object.
         *
         * @param   url The URL of the target resource
         */
        public SmbFile(final URL url) {
            this(url, new NtlmPasswordAuthentication(url.getUserInfo()));
        }
    
        /**
         * Constructs an SmbFile representing a resource on an SMB network such
         * as a file or directory from a {@code URL} object and an
         * {@code NtlmPasswordAuthentication} object.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    	if change == nil {
    		return errSRInvalidRequest(errInvalidArgument)
    	}
    	// skip overwrite of local update if peer sent stale info
    	if !updatedAt.IsZero() {
    		if ui, err := globalIAMSys.GetUserInfo(ctx, change.AccessKey); err == nil && ui.UpdatedAt.After(updatedAt) {
    			return nil
    		}
    	}
    
    	var err error
    	if change.IsDeleteReq {
    		err = globalIAMSys.DeleteUser(ctx, change.AccessKey, true)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 184.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

        public SmbFile(final URL url) throws MalformedURLException {
            this(url, SingletonContext.getInstance()
                    .withCredentials(new NtlmPasswordAuthentication(SingletonContext.getInstance(), url.getUserInfo())));
        }
    
        /**
         * Constructs an SmbFile representing a resource on an SMB network such
         * as a file or directory. The second parameter is a relative path from
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top