Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 12 (0.13 sec)

  1. src/test/java/jcifs/tests/FileAttributesTest.java

            try ( SmbResource f = createTestFile() ) {
                try {
                    long time = System.currentTimeMillis() - 1000 * 60 * 60 * 12;
                    f.setLastModified(time);
    
                    if ( ( getContext().getConfig().getCapabilities() & SmbConstants.CAP_NT_SMBS ) == 0 ) {
                        // only have second precision
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                return null;
            }
            if ( this.smb2 ) {
                if ( key != -1 ) {
                    return null;
                }
                int cmd = Encdec.dec_uint16le(this.sbuf, 4 + 12) & 0xFFFF;
                if ( cmd == 0x12 ) {
                    return new Smb2OplockBreakNotification(getContext().getConfig());
                }
            }
            else {
                if ( key != 0xFFFF ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top