Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for defaults (0.23 sec)

  1. src/main/java/jcifs/smb1/util/Encdec.java

                case TIME_1970_MILLIS_64BE:
                    return enc_uint64be( date.getTime(), dst, di );
                case TIME_1970_MILLIS_64LE:
                    return enc_uint64le( date.getTime(), dst, di );
                default:
                    throw new IllegalArgumentException( "Unsupported time encoding" );
            }
        }
    
        /* Decode times
         */
    
        public static Date dec_time( byte[] src, int si, int enc )
        {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

            case TIME_1970_MILLIS_64BE:
                return enc_uint64be(date.getTime(), dst, di);
            case TIME_1970_MILLIS_64LE:
                return enc_uint64le(date.getTime(), dst, di);
            default:
                throw new IllegalArgumentException("Unsupported time encoding");
            }
        }
    
    
        /*
         * Decode times
         */
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11K bytes
    - Viewed (0)
Back to top