Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for lM (5.61 sec)

  1. cmd/storage-datatypes.go

    	// Name of the volume.
    	Volume string `msg:"v,omitempty"`
    
    	// Name of the file.
    	Name string `msg:"n,omitempty"`
    
    	// Represents the latest mod time of the
    	// latest version.
    	LatestModTime time.Time `msg:"lm"`
    
    	Versions     []FileInfo `msg:"vs"`
    	FreeVersions []FileInfo `msg:"fvs"`
    }
    
    // findVersionIndex will return the version index where the version
    // was found. Returns -1 if not found.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Configuration.java

        /**
         * Lanman compatibility level
         * 
         * {@href https://technet.microsoft.com/en-us/library/cc960646.aspx}
         * 
         * 
         * <table>
         * <tr>
         * <td>0 or 1</td>
         * <td>LM and NTLM</td>
         * </tr>
         * <tr>
         * <td>2</td>
         * <td>NTLM only</td>
         * </tr>
         * <tr>
         * <td>3-5</td>
         * <td>NTLMv2 only</td>
         * </tr>
         * </table>
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                throw new RuntimeException("Try setting jcifs.smb1.encoding=US-ASCII", uee);
            }
            int passwordLength = passwordBytes.length;
    
            // Only encrypt the first 14 bytes of the password for Pre 0.12 NT LM
            if( passwordLength > 14) {
                passwordLength = 14;
            }
            System.arraycopy( passwordBytes, 0, p14, 0, passwordLength );
            E( p14, S8, p21);
            E( p21, challenge, p24);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gccgo.go

    		// because it doesn't define any symbols that will
    		// cause the contents to be pulled in; it's just
    		// initialization code.
    		//
    		// The user remains responsible for linking against
    		// -lgo -lpthread -lm in the final link. We can't use
    		// -r to pick them up because we can't combine
    		// split-stack and non-split-stack code in a single -r
    		// link, and libgo picks up non-split-stack code from
    		// libffi.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndGiven

    00000140  99 ce cd aa 86 0a 00 bd  56 f1 98 d9 c8 d2 c1 c0  |........V.......|
    00000150  df 16 c2 6f 78 da 66 3f  cc 43 c7 38 33 1b 3b 5b  |...ox.f?.C.83.;[|
    00000160  f8 7e d8 b7 ef 4c 6d c7  f6 84 56 8d 76 f7 0d 83  |.~...Lm...V.v...|
    00000170  94 e6 ad c5 f3 05 5c f4  17 69 d5 83 98 c3 43 8e  |......\..i....C.|
    00000180  9f a5 5c 7b 12 ea f4 1f  39 ce 0d 83 15 b1 e6 ce  |..\{....9.......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. src/regexp/testdata/re2-exhaustive.txt.bz2

    Nu���N��s��G]�'X����G]�"'X�舋�ɮ��ܚ舗K&�-im��m&I��HPSd�H$%���3em�51��F�6��+�[+(���[ahF�V�)�1$�i��F�ئ�kf��UU��IF6S�� � �h�"$��j�6Ð�����iV� 4��)�i &�U����[%�����$�iX��T��ڷ �m4c "�V�f��M�i@�G& �Fb[&�,��"c lnl͛8`���l�1����0���lm��3cM��dٛ6C�lm雜��ڵ2��mN&-�"��` K^/�������+�z�H~m[Z����D$ �$4Hj$5� H� H�"�H����m���Lę��{�ͫ2G!]�2�l�I�rM#�I$�#��}���F�>������T�-BV�I$�TB�O{4�C���h�j�}��w�Yin�*�P�v�$�E$mĦ(�rIM%�q ���bće�XQ��ŨJ�r�$�j�Q �f�...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 418.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/Type3Message.java

         * @param targetName
         *            SPN of the target system, optional
         * @param passwordHash
         *            The NT password hash, takes precedence over password (which is no longer required unless legacy LM
         *            authentication is needed)
         * @param password
         *            The password to use when constructing the response.
         * @param domain
         *            The domain in which the user has an account.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    subset for the chosen linking mode.
    
    Example
    
    As a simple example, consider a package that uses cgo to call C.sin.
    The following code will be generated by cgo:
    
    	// compiled by gc
    
    	//go:cgo_ldflag "-lm"
    
    	type _Ctype_double float64
    
    	//go:cgo_import_static _cgo_gcc_Cfunc_sin
    	//go:linkname __cgo_gcc_Cfunc_sin _cgo_gcc_Cfunc_sin
    	var __cgo_gcc_Cfunc_sin byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  9. src/unicode/tables.go

    	Nd     = _Nd // Nd is the set of Unicode characters in category Nd (Number, decimal digit).
    	Letter = _L  // Letter/L is the set of Unicode letters, category L.
    	L      = _L
    	Lm     = _Lm // Lm is the set of Unicode characters in category Lm (Letter, modifier).
    	Lo     = _Lo // Lo is the set of Unicode characters in category Lo (Letter, other).
    	Lower  = _Ll // Lower is the set of Unicode lower case letters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwice

    000000d0  cf 0b 92 5f 6b 1f 1c b0  70 80 2e 87 57 ef 52 b0  |..._k...p...W.R.|
    000000e0  2b 7d 66 06 cb a1 78 a7  5a e2 af 4c fc a4 8b 99  |+}f...x.Z..L....|
    000000f0  af 6c 6d 0e 07 7e da 11  5a b7 89 af 3c ce 1e 22  |.lm..~..Z...<.."|
    00000100  1f 7d 97 d5 d4 78 09 c4  e7 fb 33 bf 36 ee 6e 5a  |.}...x....3.6.nZ|
    00000110  af f0 5b 0f 00 eb cc 3d  76 35 41 98 4c 65 81 34  |..[....=v5A.Le.4|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top