Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NameList (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

            final String key = fessConfig.getSystemProperty("saml.attribute.group.name", "memberOf");
            if (StringUtil.isNotBlank(key)) {
                final List<String> nameList = attributes.get(key);
                if (nameList != null) {
                    list.addAll(nameList);
                }
            }
            final String value = fessConfig.getSystemProperty("saml.default.groups");
            if (StringUtil.isNotBlank(value)) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

        //                                                                              ======
        @Override
        protected void prepareAssistDirection(final FwAssistDirection direction) {
            direction.directConfig(nameList -> nameList.add("fess_config.properties"), "fess_env.properties");
        }
    
        // ===================================================================================
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

            final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
            if (now - lastLoadedTime > 60000L) {
                final List<String> nameList = loadDataStoreNameList();
                dataStoreNames = nameList.toArray(n -> new String[nameList.size()]);
                lastLoadedTime = now;
            }
            return dataStoreNames;
        }
    
        protected List<String> loadDataStoreNameList() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/CrudTestBase.java

            final Map<String, Object> searchBody = createSearchBody(SEARCH_ALL_NUM);
            List<String> nameList = getPropList(searchBody, getKeyProperty());
    
            assertEquals(NUM, nameList.size());
            for (int i = 0; i < NUM; i++) {
                final String name = getNamePrefix() + i;
                assertTrue(nameList.contains(name), name);
            }
    
            List<String> idList = getIdList(searchBody);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top