Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for labelList (0.03 sec)

  1. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         *
         * @return a string representation of the parser state
         */
        @Override
        public String toString() {
            return "GsaConfigParser [labelList=" + labelList + ", webConfig=" + webConfig + ", fileConfig=" + fileConfig + "]";
        }
    
        /**
         * Gets the web crawling configuration generated from the parsed GSA config.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            } else {
                readings = reading.replace(" ", TEXT_SEP).replaceAll(TEXT_SEP + "+", TEXT_SEP).split(TEXT_SEP);
            }
    
            final List<String> labelList = new ArrayList<>();
            if (tags != null) {
                Collections.addAll(labelList, tags);
            }
            final List<String> roleList = new ArrayList<>();
            if (permissions != null) {
                Collections.addAll(roleList, permissions);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            final List<LabelTypeItem> labelList;
            if (StringUtil.isBlank(virtualHostKey)) {
                labelList =
                        labelTypeItemList.stream().filter(item -> matchLocale(requestLocale, item.getLocale())).collect(Collectors.toList());
            } else {
                labelList = labelTypeItemList.stream()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

                final String[] values = form.fields.get(LABEL_FIELD);
                final List<String> labelList = new ArrayList<>();
                if (values != null) {
                    Collections.addAll(labelList, values);
                }
                for (final String labelTypeValue : labelList) {
                    for (final Map<String, String> map : labelTypeItems) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

        public void test_toString() {
            GsaConfigParser parser = new GsaConfigParser();
            String result = parser.toString();
            assertTrue(result.contains("GsaConfigParser"));
            assertTrue(result.contains("labelList"));
            assertTrue(result.contains("webConfig"));
            assertTrue(result.contains("fileConfig"));
        }
    
        public void test_getSAXHandlerMethods() throws SAXException {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top