Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 90 for unser (0.02 seconds)

  1. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

            return new ActivityHelper() {
                @Override
                public void accessDenied(final OptionalThing<FessUserBean> user, final String path) {
                    final Map<String, String> log = new LinkedHashMap<>();
                    log.put("user", user.map(FessUserBean::getUserId).orElse("-"));
                    log.put("path", path);
                    capturedLogs.add(log);
                }
            };
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        }
    
        /**
         * Sets the user check interval.
         *
         * @param userCheckInterval The user check interval.
         */
        public void setUserCheckInterval(final long userCheckInterval) {
            this.userCheckInterval = userCheckInterval;
        }
    
        /**
         * Sets the user information cache size.
         *
         * @param userInfoCacheSize The user information cache size.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 29.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            activityHelper.accessDenied(createUser("testuser", new String[0]), "/admin/user/");
            assertEquals("action:ACCESS_DENIED\tuser:testuser\tpath:/admin/user/", localLogMsg.get());
    
            activityHelper.accessDenied(createUser("testuser", new String[] { "111", "222" }), "/admin/role/");
            assertEquals("action:ACCESS_DENIED\tuser:testuser\tpath:/admin/role/", localLogMsg.get());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  4. CONTRIBUTING.md

    Gradle uses pull requests for contributions. Fork [gradle/gradle](https://github.com/gradle/gradle) and clone your fork. Configure your Git username and email with:
    
        git config user.name 'First Last'
        git config user.email user@example.com
    
    ### IntelliJ IDEA
    
    #### Import Gradle into IntelliJ
    
    To import Gradle into IntelliJ:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * When enabled, user search queries are logged for analysis.
         */
        @Size(max = 10)
        public String searchLog;
    
        /**
         * Enable or disable user information tracking.
         * When enabled, user information is stored and tracked.
         */
        @Size(max = 10)
        public String userInfo;
    
        /**
         * Enable or disable user favorite functionality.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

                String user = "system";
    
                final ScheduledJob job = getCurrentScheduledJob();
                if (job != null) {
                    source = "scheduler:" + job.getName();
                    if (job.getCreatedBy() != null) {
                        user = job.getCreatedBy();
                    }
                } else {
                    try {
                        user = ComponentUtil.getSystemHelper().getUsername();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/util/ComponentUtil.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

            result.put("status", "error");
            result.put("message", message);
            return result;
        }
    
        /**
         * Gets the user ID from the request.
         *
         * @param request the HTTP request
         * @return the user ID, or null if the user is a guest
         */
        protected String getUserId(final HttpServletRequest request) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

    /*
     * Copyright 2012-2025 CodeLibs Project and the Others.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 22.2K bytes
    - Click Count (0)
Back to Top