Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,098 for uker (0.39 sec)

  1. 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)
  2. docs/fr/docs/features.md

        return user_id
    
    
    # Un modèle Pydantic
    class User(BaseModel):
        id: int
        name: str
        joined: date
    ```
    Qui peuvent ensuite être utilisés comme cela:
    
    ```Python
    my_user: User = User(id=3, name="John Doe", joined="2018-07-19")
    
    second_user_data = {
        "id": 4,
        "name": "Mary",
        "joined": "2018-11-30",
    }
    
    my_second_user: User = User(**second_user_data)
    ```
    
    /// info
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java

    import org.codelibs.fess.opensearch.user.exentity.Group;
    import org.codelibs.fess.opensearch.user.exentity.User;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.JsonResponse;
    
    import jakarta.annotation.Resource;
    
    /**
     * API action for admin group management.
     * Provides RESTful API endpoints for managing user group settings in the Fess search engine.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmServlet.java

                    String user = index != -1 ? auth.substring(0, index) : auth;
                    final String password = index != -1 ? auth.substring(index + 1) : "";
                    index = user.indexOf('\\');
                    if (index == -1) {
                        index = user.indexOf('/');
                    }
                    final String domain = index != -1 ? user.substring(0, index) : defaultDomain;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

            runtime.registerData("adminUser",
                    fessConfig.isAdminUser(username) || fessLoginAssist.getSavedUserBean()
                            .map(user -> user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray()))
                            .orElse(false));
    
            runtime.registerData("pageLoginLink", fessConfig.isLoginLinkEnabled());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  6. docs/de/docs/about/index.md

    # Über
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Jan 23 11:22:17 UTC 2024
    - 70 bytes
    - Viewed (0)
  7. src/main/resources/esflute_user.xml

    	<!-- The components of Behavior. -->
    	<component name="userBhv" class="org.codelibs.fess.opensearch.user.exbhv.UserBhv"/>
    	<component name="roleBhv" class="org.codelibs.fess.opensearch.user.exbhv.RoleBhv"/>
    	<component name="groupBhv" class="org.codelibs.fess.opensearch.user.exbhv.GroupBhv"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 750 bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

                    String user = index != -1 ? auth.substring(0, index) : auth;
                    final String password = index != -1 ? auth.substring(index + 1) : "";
                    index = user.indexOf('\\');
                    if (index == -1) {
                        index = user.indexOf('/');
                    }
                    final String domain = index != -1 ? user.substring(0, index) : defaultDomain;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        // Test logout() method
        public void test_logout_whenNotAvailable() {
            currentSsoType = Constants.NONE;
            FessUserBean user = FessUserBean.empty();
            assertNull(ssoManager.logout(user));
        }
    
        public void test_logout_whenAvailableButNoAuthenticator() {
            currentSsoType = "invalid";
            ssoManager = new SsoManager() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java

    /**
     * Exception thrown when user role authentication fails during login attempts.
     * This exception is used to indicate that a user does not have the required role
     * to access a specific action or resource.
     *
     */
    public class UserRoleLoginException extends RuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        /** The action class that requires specific user roles */
        private final Class<?> actionClass;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top