Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 4,353 for unser (0.01 sec)

  1. android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java

    /*
     * Copyright (C) 2017 The Guava Authors
     *
     * 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,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/group/EditForm.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,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

            return OptionalEntity.empty();
        }
    
        /**
         * Returns the user entity based on the provided form data, applying any necessary transformations.
         *
         * @param form the form containing user data for retrieval and update
         * @return optional user entity populated from the form
         */
        public static OptionalEntity<User> getUser(final CreateForm form) {
            return getEntity(form).map(entity -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.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,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/TempFileCreator.java

            Method userMethod = processHandleInfoClass.getMethod("user");
            Method orElseMethod = optionalClass.getMethod("orElse", Object.class);
    
            Object current = currentMethod.invoke(null);
            Object info = infoMethod.invoke(current);
            Object user = userMethod.invoke(info);
            return (String) requireNonNull(orElseMethod.invoke(user, fromSystemProperty));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

        /**
         * The supplier of user type.
         */
        @FunctionalInterface
        public interface UserTypeSupplier {
            /**
             * Supply the user type.
             * @return The user type.
             */
            OptionalThing<String> supply();
        }
    
        /**
         * The supplier of user bean.
         */
        @FunctionalInterface
        public interface UserBeanSupplier {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java

         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The version number of the user for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the user hasn't been modified by another process.
         */
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

         */
        ActionResponse getResponse(SsoResponseType responseType);
    
        /**
         * Performs logout for the specified user.
         * @param user The user to logout.
         * @return The logout URL or null if not applicable.
         */
        String logout(FessUserBean user);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top