Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mime (0.13 sec)

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

                            new Trans2SetFileInformationResponse(th.getConfig()),
                            RequestParam.NO_RETRY);
                    }
                }
                else {
                    if ( ctime != 0 || atime != 0 ) {
                        throw new SmbUnsupportedOperationException("Cannot set creation or access time without CAP_NT_SMBS");
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                            else {
                                if ( !this.credits.tryAcquire(cost, timeout, TimeUnit.MILLISECONDS) ) {
                                    throw new SmbException("Failed to acquire credits in time");
                                }
                            }
                            totalSize += size;
                            // split off first request
    
                            synchronized ( chain ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

        }
    
    
        /**
         * @return this session's UID
         */
        public int getUid () {
            return this.uid;
        }
    
    
        /**
         * @return this session's expiration time
         */
        public Long getExpiration () {
            return this.expiration > 0 ? this.expiration : null;
        }
    
    
        /**
         * @return this session's credentials
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top