Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,377 for anchor (0.04 sec)

  1. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                }
            }
        }
    
        /**
         * Extracts anchor URLs from the given object and converts them to RequestData objects.
         * The input object can be either a single string or a list of strings representing URLs.
         *
         * @param obj the object containing anchor URLs (String or List of Strings)
         * @return a set of RequestData objects for the anchor URLs, or null if no valid URLs found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

                        return "has_cache";
                    case FessConfig.INDEX_FIELD_last_modified:
                        return "last_modified";
                    case FessConfig.INDEX_FIELD_ANCHOR:
                        return "anchor";
                    case FessConfig.INDEX_FIELD_SEGMENT:
                        return "segment";
                    case FessConfig.INDEX_FIELD_ROLE:
                        return "role";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            defaultDataMap.put(fessConfig.getIndexFieldMimetype(), mimeType);
            // title
            // content
            // cache
            // digest
            // host
            // site
            // url
            // anchor
            // content_length
            // last_modified
            // id
            // virtual_host
            defaultDataMap.put(fessConfig.getIndexFieldVirtualHost(),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            } catch (final Exception e) {
                return url;
            }
        }
    
        /**
         * Extracts anchor URLs from the HTML document.
         *
         * @param document the parsed HTML document
         * @param responseData the response data from crawling
         * @return list of anchor URLs found in the document
         */
        protected List<String> getAnchorList(final Document document, final ResponseData responseData) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

            return appendFileterPath(buf, escape(s));
        }
    
        /**
         * Escapes special regex characters in a string to create a literal pattern.
         * Handles anchor characters (^ and $) specially to preserve their regex meaning.
         *
         * @param s the string to escape
         * @return an escaped regex pattern, or empty string for comments
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    index.field.lang=lang
    # Field name for cache status in the index.
    index.field.has_cache=has_cache
    # Field name for last modified date in the index.
    index.field.last_modified=last_modified
    # Field name for anchor in the index.
    index.field.anchor=anchor
    # Field name for segment in the index.
    index.field.segment=segment
    # Field name for role in the index.
    index.field.role=role
    # Field name for boost value in the index.
    index.field.boost=boost
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            // created
            final Date now = systemHelper.getCurrentTime();
            putResultDataBody(dataMap, fessConfig.getIndexFieldCreated(), now);
            // TODO anchor
            putResultDataBody(dataMap, fessConfig.getIndexFieldAnchor(), StringUtil.EMPTY);
            // mimetype
            putResultDataBody(dataMap, fessConfig.getIndexFieldMimetype(), mimeType);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

            String[] facetFields = { "category", "type", "author", "date" };
            queryFieldConfig.setFacetFields(facetFields);
    
            // Test valid facet fields
            assertTrue(queryFieldConfig.isFacetField("category"));
            assertTrue(queryFieldConfig.isFacetField("type"));
            assertTrue(queryFieldConfig.isFacetField("author"));
            assertTrue(queryFieldConfig.isFacetField("date"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

            TestHttpServletRequest request = new TestHttpServletRequest();
            request.setRequestURI("/api/search?query=test");
            assertTrue(manager.matches(request));
    
            request.setRequestURI("/api/data#anchor");
            assertTrue(manager.matches(request));
        }
    
        public void test_process_withMultipleOperations() throws IOException, ServletException {
            // Test multiple operations in process
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        String getIndexFieldLastModified();
    
        /**
         * Get the value for the key 'index.field.anchor'. <br>
         * The value is, e.g. anchor <br>
         * comment: Field name for anchor in the index.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexFieldAnchor();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top