Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 645 for usar (0.02 sec)

  1. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

            permissionList.add("2aaa");
    
            allowEmptyPermission.set(true);
            assertTrue(ldapManager.allowEmptyGroupAndRole(user));
            allowEmptyPermission.set(false);
            assertTrue(ldapManager.allowEmptyGroupAndRole(user));
    
            permissionList.clear();
            permissionList.add("Raaa");
    
            allowEmptyPermission.set(true);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/SambaHelperTest.java

                public boolean isLdapIgnoreNetbiosName() {
                    return false;
                }
            });
            sambaHelper.init();
    
            // Test User SID (type 1)
            assertEquals("1Test User", sambaHelper.getAccountId(createMockSID(1, "Test User")));
    
            // Test Domain Group SID (type 2)
            assertEquals("2Domain Group", sambaHelper.getAccountId(createMockSID(2, "Domain Group")));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/UserAgentHelper.java

        }
    
        /** The HTTP header name for User-Agent */
        protected static final String USER_AGENT = "user-agent";
    
        /** The request attribute key for storing cached user agent type */
        protected static final String USER_AGENT_TYPE = "ViewHelper.UserAgent";
    
        /**
         * Determines the user agent type from the current HTTP request.
         * The method analyzes the User-Agent header to categorize the browser type
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/PurgeLogJob.java

                resultBuf.append(e.getMessage()).append("\n");
            }
    
            // purge user info
            try {
                final int days = ComponentUtil.getFessConfig().getPurgeUserInfoDay();
                if (days >= 0) {
                    userInfoService.deleteBefore(days);
                } else {
                    resultBuf.append("Skipped to purge user info logs.\n");
                }
            } catch (final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/user/cbean/ca/bs/BsRoleCA.java

     */
    package org.codelibs.fess.opensearch.user.cbean.ca.bs;
    
    import org.codelibs.fess.opensearch.user.allcommon.EsAbstractConditionAggregation;
    import org.codelibs.fess.opensearch.user.allcommon.EsAbstractConditionQuery;
    import org.codelibs.fess.opensearch.user.cbean.ca.RoleCA;
    import org.codelibs.fess.opensearch.user.cbean.cq.RoleCQ;
    import org.codelibs.fess.opensearch.user.cbean.cq.bs.BsRoleCQ;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

    import org.codelibs.fess.exception.CommandExecutionException;
    import org.codelibs.fess.opensearch.user.exentity.User;
    
    /**
     * Authentication chain implementation that executes external commands for user operations.
     * Provides user management through command-line tool execution for password changes and user deletion.
     */
    public class CommandChain implements AuthenticationChain {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java

        /**
         * The attributes map for the user.
         */
        public Map<String, String> attributes = new HashMap<>();
    
        /**
         * The roles assigned to the user.
         */
        public String[] roles;
    
        /**
         * The groups assigned to the user.
         */
        public String[] groups;
    
        /**
         * Initializes the form with default values for creating a new user.
         */
        public void initialize() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java

            assertNull(exception.getCause());
        }
    
        public void test_constructor_withLongUsername() {
            // Test with a very long username
            String username = "verylongusername".repeat(10);
            FessUserNotFoundException exception = new FessUserNotFoundException(username);
    
            assertNotNull(exception);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/Constants.java

        // ============================================================
    
        /** Property key for user information configuration. */
        public static final String USER_INFO_PROPERTY = "user.info";
    
        /** Property key for user favorite functionality configuration. */
        public static final String USER_FAVORITE_PROPERTY = "user.favorite";
    
        /** Property key for search log configuration. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  10. src/packaging/common/systemd/fess.service

    Wants=network-online.target
    After=network-online.target opensearch.service
    Requires=opensearch.service
    
    [Service]
    Environment=FESS_HOME=${packaging.fess.home.dir}
    EnvironmentFile=-${packaging.env.file}
    
    User=${packaging.fess.user}
    Group=${packaging.fess.group}
    
    ExecStart=${packaging.fess.bin.dir}/fess
    
    # Connects standard output to /dev/null
    StandardOutput=null
    
    # Connects standard error to journal
    StandardError=journal
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top