Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OC (0.17 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default Attribute getLdapAdminUserObjectClassAttribute() {
            final Attribute oc = new BasicAttribute("objectClass");
            split(getLdapAdminUserObjectClasses(), ",").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(s -> oc.add(s.trim())));
            return oc;
        }
    
        String getLdapAdminUserFilter();
    
        default String getLdapAdminUserFilter(final String name) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                } else {
                    final BasicAttributes entry = new BasicAttributes();
                    addUserAttributes(entry, user);
                    final Attribute oc = fessConfig.getLdapAdminUserObjectClassAttribute();
                    entry.put(oc);
                    insert(userDN, entry, adminEnv);
                }
            });
    
            // groups and roles
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/CopyUtil.java

         */
        protected static int copyInternal(final FileInputStream in, final FileOutputStream out) {
            final FileChannel ic = in.getChannel();
            final FileChannel oc = out.getChannel();
            return (int) ChannelUtil.transfer(ic, oc);
        }
    
        /**
         * リーダーの内容をライターにコピーします。
         * <p>
         * リーダー、ライターともクローズされません。
         * </p>
         *
         * @param in
         *            リーダー
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 52.4K bytes
    - Viewed (0)
Back to top