Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 701 for user2 (2.8 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java

        /** The user service for managing user settings. */
        @Resource
        private UserService userService;
    
        /**
         * Retrieves user settings with pagination.
         *
         * @param body the search parameters for filtering and pagination
         * @return JSON response containing user settings list
         */
        // GET /api/admin/user/settings
        // PUT /api/admin/user/settings
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Functions.java

      /**
       * Returns the composition of two functions. For {@code f: A->B} and {@code g: B->C}, composition
       * is defined as the function h such that {@code h(a) == g(f(a))} for each {@code a}.
       *
       * <p><b>JRE users and Android users who opt in to library desugaring:</b> use {@code
       * g.compose(f)} or (probably clearer) {@code f.andThen(g)} instead. Note that it is not
       * serializable.
       *
       * @param g the second function to apply
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.20.md

    - Kubectl: Previously users cannot provide arguments to a external diff tool via KUBECTL_EXTERNAL_DIFF env. This release now allow users to specify args to KUBECTL_EXTERNAL_DIFF env. ([#95292](https://github.com/kubernetes/kubernetes/pull/95292), [@dougsland](https://github.com/dougsland)) [SIG CLI]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsGroupCB.java

     */
    package org.codelibs.fess.opensearch.user.cbean.bs;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.opensearch.user.allcommon.EsAbstractConditionBean;
    import org.codelibs.fess.opensearch.user.bsentity.dbmeta.GroupDbm;
    import org.codelibs.fess.opensearch.user.cbean.GroupCB;
    import org.codelibs.fess.opensearch.user.cbean.ca.GroupCA;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/auth/chain/LdapChain.java

    import org.codelibs.fess.opensearch.user.exentity.User;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * An authentication chain for LDAP.
     */
    public class LdapChain implements AuthenticationChain {
    
        /**
         * Default constructor.
         */
        public LdapChain() {
            // do nothing
        }
    
        @Override
        public void update(final User user) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.33.md

    - Removed a warning around Linux user namespaces and kernel version. If the feature gate `UserNamespacesSupport` was enabled, the kubelet previously warned when detecting a Linux kernel version earlier than 6.3.0. User namespace support on Linux typically does still need kernel 6.3 or...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *       collection. Undefined behavior and bugs will result. It's generally best to avoid using
     *       mutable objects as elements at all, as many users may expect your "immutable" object to be
     *       <i>deeply</i> immutable.
     * </ul>
     *
     * <h4>Performance notes</h4>
     *
     * <ul>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            // Test with single role - not matching
            assertFalse(fessUserBean.hasRole("user"));
    
            // Test with multiple roles
            testUser.setRoleNames(new String[] { "admin", "user", "manager" });
            assertTrue(fessUserBean.hasRole("admin"));
            assertTrue(fessUserBean.hasRole("user"));
            assertTrue(fessUserBean.hasRole("manager"));
            assertFalse(fessUserBean.hasRole("guest"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/HeadersTest.kt

      @Test fun ofMapAcceptsEmptyValue() {
        val headers = mapOf("User-Agent" to "").toHeaders()
        assertThat(headers.value(0)).isEqualTo("")
      }
    
      @Test fun ofMapTrimsKey() {
        val headers = mapOf(" User-Agent " to "OkHttp").toHeaders()
        assertThat(headers.name(0)).isEqualTo("User-Agent")
      }
    
      @Test fun ofMapTrimsValue() {
        val headers = mapOf("User-Agent" to " OkHttp ").toHeaders()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

            protected String[] permissions;
    
            /**
             * Creates a new OpenID Connect user.
             *
             * @param name the user name
             * @param groups the user groups
             * @param roles the user roles
             */
            protected OpenIdUser(final String name, final String[] groups, final String[] roles) {
                this.name = name;
                this.groups = groups;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top