Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 223 for Gerber (0.18 sec)

  1. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        /**
         * Sent by the server in the Type 2 message to indicate that the
         * target authentication realm is a server.
         */
        public static final int NTLMSSP_TARGET_TYPE_SERVER = 0x00020000;
    
        /**
         * Sent by the server in the Type 2 message to indicate that the
         * target authentication realm is a share (presumably for share-level
         * authentication).
         */
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. dbflute_fess/_readme.txt

    For example, if a table called "MEMBER" exists,
    you can use these classes like this:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    memberBhv.selectEntity(cb -> {
        cb.query().setMemberId_Equal(3);
    }).alwaysPresent(member -> {
        ... = member.getMemberName();
    });
    // memberBhv      : Behavior (instance)
    // MemberCB(cb)   : ConditionBean
    // Member(member) : Entity
    - - - - - - - - - -/
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java

    /**
     * This InputStream can read bytes from a file on an SMB file server. Offsets are 64 bits.
     */
    
    public class SmbFileInputStream extends InputStream {
    
        private long fp;
        private int readSize, openFlags, access;
        private byte[] tmp = new byte[1];
    
        SmbFile file;
    
    /**
     * Creates an {@link java.io.InputStream} for reading bytes from a file on
     * an SMB server addressed by the <code>url</code> parameter. See {@link
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/LsaPolicyHandle.java

        private boolean opened;
    
    
        public LsaPolicyHandle ( DcerpcHandle handle, String server, int access ) throws IOException {
            this.handle = handle;
            if ( server == null ) {
                server = "\\\\";
            }
            MsrpcLsarOpenPolicy2 rpc = new MsrpcLsarOpenPolicy2(server, access, this);
            handle.sendrecv(rpc);
            if ( rpc.retval != 0 ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/DosFileFilter.java

     * specified for this filter. The wildcard has no influence on this
     * method as the server should have performed that filtering already. The
     * attributes are asserted here only because server file systems may not
     * support filtering by all attributes (e.g. even though ATTR_DIRECTORY was
     * specified the server may still return objects that are not directories).
     */
        public boolean accept( SmbFile file ) throws SmbException {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.9K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

        #}
        # example for table classification
        #; MemberStatus = list:{
        #    ; map:{topComment=status of member from entry to withdrawal; codeType=String}
        #    ; map:{
        #        ; table=MEMBER_STATUS
        #        ; code=MEMBER_STATUS_CODE; name=MEMBER_STATUS_NAME
        #        ; comment=DESCRIPTION; orderBy=DISPLAY_ORDER
        #    }
        #}
    }
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                        this.primaryDomain = a.getUserDomain() != null ? a.getUserDomain().toUpperCase() : "?";
                        if ( server.encryptedPasswords ) {
                            this.lmHash = a.getAnsiHash(tc, server.encryptionKey);
                            this.ntHash = a.getUnicodeHash(tc, server.encryptionKey);
                            // prohibit HTTP auth attempts for the null session
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Mar 17 10:20:23 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SigningDigest.java

                    auth.getUserSessionKey(transport.server.encryptionKey, macSigningKey, 0);
                    System.arraycopy(auth.getUnicodeHash(transport.server.encryptionKey),
                                0, macSigningKey, 16, 24);
                    break;
                case 3:
                case 4:
                case 5:
                    macSigningKey = new byte[16];
                    auth.getUserSessionKey(transport.server.encryptionKey, macSigningKey, 0);
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/Type2Message.java

                }
            }
            int domainLength = domain.length;
            byte[] server = new byte[0];
            String host = tc.getNameServiceClient().getLocalHost().getHostName();
            if ( host != null ) {
                try {
                    server = host.getBytes(UNI_ENCODING);
                }
                catch ( IOException ex ) {
                    log.debug("Failed to get host bytes", ex);
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbSession.java

            } else {
                SmbSession ssn = trans.getSmbSession( NtlmPasswordAuthentication.DEFAULT );
                ssn.getSmbTree( LOGON_SHARE, null ).treeConnect( null, null );
            }
            return new NtlmChallenge( trans.server.encryptionKey, dc );
        }
        public static NtlmChallenge getChallengeForDomain()
                    throws SmbException, UnknownHostException {
            if( DOMAIN == null ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
Back to top