Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Truong (0.23 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/lang/vi.js

    b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a,b){"use strict";a.formUtils.registerLoadedModule("lang/vi"),a(b).bind("validatorsLoaded",function(){a.formUtils.LANG={errorTitle:"Có lỗi trong qua trình gửi dữ liệu!",requiredFields:"Bạn chưa nhập đủ các thông tin bắt buộc",badTime:"Thời gian chưa chính xác",badEmail:"Địa chỉ email chưa chính xác",badTelephone:"Số điện thoại chưa chính xác",badSecurityAnswer:"Câu hỏi bảo mật chưa chính xác",badDate:"Ngày...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 2.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

         */
        @Override
        public boolean verifySignature ( byte[] buffer, int i, int size ) {
            // observed too that signatures on error responses are sometimes wrong??
            // Looks like the failure case also is just reflecting back the signature we sent
    
            // with SMB3's negotiation validation it's no longer possible to ignore this (on the validation response)
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 7.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                 */
     
                if( wordCount > 2 ) {
                    readParameterWordsWireFormat( buffer, bufferIndex + 4 );
    
                    /* The SMB_COM_NT_CREATE_ANDX response wordCount is wrong. There's an
                     * extra 16 bytes for some "Offline Files (CSC or Client Side Caching)"
                     * junk. We need to bump up the wordCount here so that this method returns
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_message.properties

    constraints.TypeDouble.message              = {item} should be numeric.
    constraints.TypeAny.message                 = {item} cannot convert as {propertyType}.
    constraints.UriType.message                 = {item} has wrong URI.
    constraints.CronExpression.message          = {item} is invalid cron expression.
    
    # ----------------------------------------------------------
    #                                      Application Exception
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} cannot convert as {propertyType}. */
        public static final String CONSTRAINTS_TypeAny_MESSAGE = "{constraints.TypeAny.message}";
    
        /** The key of the message: {item} has wrong URI. */
        public static final String CONSTRAINTS_UriType_MESSAGE = "{constraints.UriType.message}";
    
        /** The key of the message: {item} is invalid cron expression. */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/DfsImpl.java

            }
            if ( this._domains != null )
                return this._domains.map;
            try {
                String authDomain = tf.getCredentials().getUserDomain();
                // otherwise you end up with a wrong server name for kerberos
                // seems to be correct according to
                // https://lists.samba.org/archive/samba-technical/2009-August/066486.html
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/TimeoutTest.java

            return new NSOverrideWrapper(ctx, wrapper);
        }
    
    
        @Test
        public void testMultiHostFailoverTimeout () throws MalformedURLException, CIFSException, UnknownHostException {
            // this could inject wrong DFS cache entries
            CIFSContext newContext = getNewContext();
            try ( SmbResource root = getDefaultShareRoot(failHostInjecting(medConnectTimeout(newContext), "10.255.255.1")) ) {
                root.exists();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NtStatus.java

        public static final int NT_STATUS_USER_EXISTS = 0xC0000063;
        public static final int NT_STATUS_NO_SUCH_USER = 0xC0000064;
        public static final int NT_STATUS_WRONG_PASSWORD = 0xC000006a;
        public static final int NT_STATUS_LOGON_FAILURE = 0xC000006d;
        public static final int NT_STATUS_ACCOUNT_RESTRICTION = 0xC000006e;
        public static final int NT_STATUS_INVALID_LOGON_HOURS = 0xC000006f;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_en.properties

    constraints.TypeDouble.message              = {item} should be numeric.
    constraints.TypeAny.message                 = {item} cannot convert as {propertyType}.
    constraints.UriType.message                 = {item} has wrong URI.
    constraints.CronExpression.message          = {item} is invalid cron expression.
    
    # ----------------------------------------------------------
    #                                      Application Exception
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportImpl.java

            }
            switch ( resp.getErrorCode() ) {
            case NtStatus.NT_STATUS_OK:
                cont = true;
                break;
            case NtStatus.NT_STATUS_ACCESS_DENIED:
            case NtStatus.NT_STATUS_WRONG_PASSWORD:
            case NtStatus.NT_STATUS_LOGON_FAILURE:
            case NtStatus.NT_STATUS_ACCOUNT_RESTRICTION:
            case NtStatus.NT_STATUS_INVALID_LOGON_HOURS:
            case NtStatus.NT_STATUS_INVALID_WORKSTATION:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top