Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 461 for anchor (0.05 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/resources/fess_indices/_aws/fess/doc.json

              "match": "*_zh-tw",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          }
        ],
        "properties": {
          "anchor": {
            "type": "keyword"
          },
          "boost": {
            "type": "float"
          },
          "click_count": {
            "type": "long"
          },
          "config_id": {
            "type": "keyword"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_cloud/fess/doc.json

              "match": "*_zh-tw",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          }
        ],
        "properties": {
          "anchor": {
            "type": "keyword"
          },
          "boost": {
            "type": "float"
          },
          "click_count": {
            "type": "long"
          },
          "config_id": {
            "type": "keyword"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/doc.json

              "match": "*_zh-tw",
              "mapping": {
                "type": "text",
                "analyzer": "traditional_chinese_analyzer"
              }
            }
          }
        ],
        "properties": {
          "anchor": {
            "type": "keyword"
          },
          "boost": {
            "type": "float"
          },
          "click_count": {
            "type": "long"
          },
          "config_id": {
            "type": "keyword"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. 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)
  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. android/guava-tests/test/com/google/common/base/JoinerTest.java

      }
    
      public void testOnCharOverride() {
        Joiner onChar = Joiner.on('-');
        checkNoOutput(onChar, iterable);
        checkResult(onChar, iterable1, "1");
        checkResult(onChar, iterable12, "1-2");
        checkResult(onChar, iterable123, "1-2-3");
        checkResult(J, UNDERREPORTING_SIZE_LIST, "1-2-3");
        checkResult(J, OVERREPORTING_SIZE_LIST, "1-2-3");
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top