Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for kime (0.03 sec)

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

            "The specified user does not exist.", "The specified network password is not correct.", "Logon failure: unknown user name or bad password.",
            "Logon failure: user account restriction.", "Logon failure: account logon time restriction violation.",
            "Logon failure: user not allowed to log on to this computer.", "Logon failure: the specified account password has expired.",
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 10:09:29 UTC 2019
    - 11.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

            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 ) {
            long t;
    
            switch ( enc ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  3. LICENSE

    excluded.  In such case, this License incorporates the limitation as if
    written in the body of this License.
    
      13. The Free Software Foundation may publish revised and/or new
    versions of the Lesser General Public License from time to time.
    Such new versions will be similar in spirit to the present version,
    but may differ in detail to address new problems or concerns.
    
    Each version is given a distinguishing version number.  If the Library
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

         * and well as their responses for each type however the actuall implementations
         * of the readXxxWireFormat and writeXxxWireFormat methods may not be in
         * place. For example at the time of this writing the readXxxWireFormat
         * for requests and the writeXxxWireFormat for responses are not implemented
         * and simply return 0. These would need to be completed for a server
         * implementation.
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/Kerb5Authenticator.java

            return this.userLifetime;
        }
    
    
        /**
         * Set lifetime of current user.
         *
         * @param time
         *            the lifetime in seconds
         *
         */
        public void setUserLifeTime ( int time ) {
            this.userLifetime = time;
        }
    
    
        /**
         * Get lifetime of this context.
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

                    break;
                case 4: // Transited Encoding
                    break;
                case 5: // Kerberos Time
                    // DERGeneralizedTime derTime = KerberosUtil.readAs(tagged,
                    // DERGeneralizedTime.class);
                    break;
                case 6: // Kerberos Time
                    // DERGeneralizedTime derTime = KerberosUtil.readAs(tagged,
                    // DERGeneralizedTime.class);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbResource.java

    
        /**
         * Set the last access time of the file. The time is specified as milliseconds
         * from Jan 1, 1970 which is the same as that which is returned by the
         * <tt>lastAccess()</tt> method.
         * <br>
         * This method does not apply to workgroups, servers, or shares.
         *
         * @param time
         *            the last access time as milliseconds since Jan 1, 1970
         * @throws CIFSException
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/FileAttributesTest.java

                        int diff = Math.abs((int) ( ( time / 1000 ) - ( f.lastModified() / 1000 ) ));
                        Assert.assertTrue("Have set time correctly", diff < 2);
                    }
                    else {
                        assertEquals(time, f.lastModified());
                        assertEquals(time, f.lastAccess());
                        assertEquals(time, f.createTime());
                    }
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/Kerb5Context.java

        }
    
        /*
         * Prepare reflective access to ExtendedGSSContext. The reflective access
         * abstracts the access so far, that Oracle JDK, Open JDK and IBM JDK are
         * supported.
         * 
         * At the time of the first implementation only a test on Oracle JDK was
         * done.
         */
    
        private static final String OPENJDK_JGSS_INQUIRE_TYPE_CLASS = "com.sun.security.jgss.InquireType";
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:22:42 UTC 2018
    - 13.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/util/Encdec.java

                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 )
        {
            long t;
        
            switch( enc ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
Back to top