Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 314 for type (0.19 sec)

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

         * 
         * @param tc
         *            context to use
         * @param type1
         *            The Type-1 message which this represents a response to.
         */
        public Type2Message ( CIFSContext tc, Type1Message type1 ) {
            this(tc, type1, null, null);
        }
    
    
        /**
         * Creates a Type-2 message in response to the given Type-1 message.
         * 
         * @param tc
         *            context to use
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

                            0xffffffff);
                }
                byte[] type1 = new byte[hostInfo ?
                        (32 + domain.length + workstation.length) : 16];
                System.arraycopy(NTLMSSP_SIGNATURE, 0, type1, 0, 8);
                writeULong(type1, 8, 1);
                writeULong(type1, 12, flags);
                if (hostInfo) {
                    writeSecurityBuffer(type1, 16, 32, domain);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SambaHelper.java

        public static final int SID_TYPE_ALIAS = 4;
    
        public static final int SID_TYPE_DELETED = 6;
    
        public static final int SID_TYPE_DOM_GRP = 2;
    
        public static final int SID_TYPE_DOMAIN = 3;
    
        public static final int SID_TYPE_INVALID = 7;
    
        public static final int SID_TYPE_UNKNOWN = 8;
    
        public static final int SID_TYPE_USE_NONE = 0;
    
        public static final int SID_TYPE_USER = 1;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

            if (SearchLogPager.LOG_TYPE_CLICK.equalsIgnoreCase(logType)) {
                return clickLogBhv.selectByPK(id);
            }
            if (SearchLogPager.LOG_TYPE_FAVORITE.equalsIgnoreCase(logType)) {
                return favoriteLogBhv.selectByPK(id);
            }
            if (SearchLogPager.LOG_TYPE_USERINFO.equalsIgnoreCase(logType)) {
                return userInfoBhv.selectByPK(id);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

         */
        public void testGetTypeVariableMap() throws Exception {
            final Map<TypeVariable<?>, Type> map = GenericsUtil.getTypeVariableMap(Hoge.class);
            assertThat(map.size(), is(4));
            final Iterator<Entry<TypeVariable<?>, Type>> it = map.entrySet().iterator();
            Entry<TypeVariable<?>, Type> entry = it.next();
            assertThat(entry.getKey().getName(), is("T1"));
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/BaseApiManager.java

                return FormatType.FAVORITE;
            }
            if (FormatType.FAVORITES.name().equals(type)) {
                return FormatType.FAVORITES;
            }
            if (FormatType.PING.name().equals(type)) {
                return FormatType.PING;
            }
            if (FormatType.SCROLL.name().equals(type)) {
                return FormatType.SCROLL;
            }
            if (FormatType.SUGGEST.name().equals(type)) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java

            final Class<?> rowClass = getActualClass(type, map);
            if (rowClass == null) {
                return null;
            }
            final ParameterizedClassDescImpl desc = new ParameterizedClassDescImpl(rowClass);
            final Type[] parameterTypes = getGenericParameters(type);
            if (parameterTypes == null) {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 7.9K bytes
    - Viewed (1)
  8. src/test/java/jcifs/tests/DelegatingNameServiceClient.java

        @Override
        public NetbiosAddress getNbtByName ( String host, int type, String scope ) throws UnknownHostException {
            return this.nscl.getNbtByName(host, type, scope);
        }
    
    
        @Override
        public NetbiosAddress getNbtByName ( String host, int type, String scope, InetAddress svr ) throws UnknownHostException {
            return this.nscl.getNbtByName(host, type, scope, svr);
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  9. 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 domain.
         */
        public static final int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000;
    
        /**
         * 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;
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java

            String name;
            int versionMajor;
            int versionMinor;
            int type;
            String commentOrMasterBrowser;
    
            public String getName() {
                return name;
            }
            public int getType() {
                return (type & 0x80000000) != 0 ? SmbFile.TYPE_WORKGROUP : SmbFile.TYPE_SERVER;
            }
            public int getAttributes() {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (0)
Back to top