Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 132 for Term (1.72 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/KeyMatchDbm.java

                0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnTerm = cci("term", "term", null, null, String.class, "term", null, false, false, false, "keyword", 0,
                0, null, null, false, null, null, null, null, null, false);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_label.properties

    labels.related_content_content=Content
    labels.related_content_list_term=Term
    labels.related_content_term=Term
    labels.related_content_title_details=Related Content
    labels.related_query_configuration=Related Query
    labels.related_query_list_term=Term
    labels.related_query_queries=Queries
    labels.related_query_term=Term
    labels.related_query_title_details=Related Query
    labels.crud_button_create=Create
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

         *
         * @return the maximum alphanumeric term size
         */
        protected int getMaxAlphanumTermSize() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            return fessConfig.getCrawlerDocumentMaxAlphanumTermSizeAsInteger();
        }
    
        /**
         * Gets the maximum size for symbol terms from configuration.
         *
         * @return the maximum symbol term size
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/relatedquery/admin_relatedquery_details.jsp

                                            <th style="width: 25%"><la:message
                                                    key="labels.related_query_term"/></th>
                                            <td>${f:h(term)}<la:hidden property="term"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

        /** Current page number being displayed. */
        private int currentPageNumber;
    
        /** Related content ID for filtering. */
        public String id;
    
        /** Search term for filtering related content. */
        public String term;
    
        /** Content text for filtering related content. */
        public String content;
    
        /** User who created the related content. */
        public String createdBy;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  6. src/main/config/es/fess_config_key_match.json

                "type" : "long"
              },
              "maxSize" : {
                "type" : "integer"
              },
              "query" : {
                "type" : "keyword"
              },
              "term" : {
                "type" : "keyword"
              },
              "updatedBy" : {
                "type" : "keyword"
              },
              "updatedTime" : {
                "type" : "long"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

            RenderDataUtil.register(data, "keyMatchItems", keyMatchService.getKeyMatchList(keyMatchPager)); // page navi
    
            // restore from pager
            copyBeanToBean(keyMatchPager, form, op -> op.include("term", "query"));
        }
    
        // ===================================================================================
        //                                                                        Edit Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

         */
        private int currentPageNumber;
    
        /**
         * Unique identifier for the related query.
         */
        public String id;
    
        /**
         * Search term for the related query.
         */
        public String term;
    
        /**
         * Related queries string containing associated search queries.
         */
        public String queries;
    
        /**
         * User who created the related query entry.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

         */
        @Override
        public TermVectorsRequestBuilder prepareTermVectors(final String index, final String id) {
            return client.prepareTermVectors(index, id);
        }
    
        /**
         * Gets term vectors for multiple documents asynchronously.
         *
         * @param request the multi-term vectors request
         * @return a future for the multi-term vectors response
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

        }
    
        public void test_complexConditions() {
            final Map<String, String[]> conditions = new HashMap<>();
            conditions.put("q", new String[] { "search term" });
            conditions.put("epq", new String[] { "exact phrase" });
            conditions.put("oq", new String[] { "word1 word2" });
            conditions.put("nq", new String[] { "exclude" });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 16.5K bytes
    - Viewed (0)
Back to top