Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Roles (0.02 sec)

  1. src/main/resources/fess_config.properties

    # Admin role names for authentication.
    authentication.admin.roles=admin
    
    # Default permissions for search roles.
    role.search.default.permissions=
    # Default display permissions for search roles.
    role.search.default.display.permissions={role}guest
    # Guest permissions for search roles.
    role.search.guest.permissions={role}guest
    
    # Prefix for user roles in search.
    role.search.user.prefix=1
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        }
    
        /**
         * Processes sub-roles for the specified LDAP user.
         *
         * @param ldapUser the LDAP user to process sub-roles for
         * @param bindDn the bind DN for LDAP connection
         * @param subRoleSet the set of sub-roles to process
         * @param groupFilter the group filter pattern
         * @param roleSet the set of roles to update
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default String[] getAuthenticationAdminRolesAsArray() {
            String[] roles = (String[]) propMap.get(AUTHENTICATION_ADMIN_ROLES);
            if (roles == null) {
                roles = getAuthenticationAdminRoles().split(",");
                propMap.put(AUTHENTICATION_ADMIN_ROLES, roles);
            }
            return roles;
        }
    
        String getJvmCrawlerOptions();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

        }
    
        public void test_buildRoleQuery_withRoles() {
            BoolQueryBuilder boolQuery = QueryBuilders.boolQuery();
            Set<String> roles = Set.of("role1", "role2");
    
            queryHelper.buildRoleQuery(roles, boolQuery);
    
            String queryString = boolQuery.toString();
            assertTrue(queryString.contains("role1"));
            assertTrue(queryString.contains("role2"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ru.properties

    labels.groups=Группы
    labels.hash=Хэш
    labels.kuromojiFile=Файл Kuromoji
    labels.maxSize=Максимальный размер
    labels.order=Порядок
    labels.purgeSuggestSearchLogDay=Удалить старую информацию о предложениях
    labels.q=Запрос
    labels.roles=Роли
    labels.suggestSearchLog=Журнал поиска предложений
    labels.suggestWord=Предложить слово
    labels.targetLabel=Метка
    labels.term=Термин
    labels.fields=Поля
    labels.ex_q=Расширенный запрос
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 55.8K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        it keeps your `HeldCertificate` and its chain. On the client it keeps the root certificates
        that are trusted to sign a server's certificate chain. `HandshakeCertificates` also works with
        mutual TLS where these roles are reversed.
    
        These classes make it possible to enable HTTPS in MockWebServer in [just a few lines of
        code][https_server_sample].
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top