- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 166 for match6 (0.03 seconds)
-
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
} /** * Gets the current match expression. * * @return the match expression string */ public String getMatchExpression() { return matchExpression; } /** * Sets the match expression used to determine if documents should be boosted. * * @param expression the match expression string */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 5.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java
String invalidLink = matcher.group(); errorsForFile.add(new Error(lineNumber, line, "Markdown-style links are not supported: " + invalidLink)); } } private void gatherDeadLinksInLine(File sourceFile, String line, int lineNumber, List<Error> errorsForFile) { Matcher matcher = linkPattern.matcher(line); while (matcher.find()) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 23:22:57 GMT 2026 - 12.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
map.put("data1", 20); assertTrue(docBoostMatcher.match(map)); map.put("data1", 5); assertFalse(docBoostMatcher.match(map)); map.remove("data1"); assertFalse(docBoostMatcher.match(map)); map.put("data2", 5); assertFalse(docBoostMatcher.match(map)); } @Test public void test_string() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 8.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
final String servletPath = request.getServletPath(); final boolean matches = servletPath.startsWith(CHAT_API_PATH); if (logger.isTraceEnabled()) { logger.trace("ChatApiManager.matches() checking path. servletPath={}, expectedPrefix={}, matches={}", servletPath, CHAT_API_PATH, matches); } return matches; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
assertTrue(tagWithIdAndCss.matches(nodeWithBothIdAndClass)); // Node with correct id but different class should still match (id takes precedence) MockNode nodeWithCorrectIdWrongClass = new MockNode("div"); nodeWithCorrectIdWrongClass.addAttribute("id", "main"); nodeWithCorrectIdWrongClass.addAttribute("class", "other"); assertTrue(tagWithIdAndCss.matches(nodeWithCorrectIdWrongClass));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.1K bytes - Click Count (0) -
src/main/resources/fess_indices/_cloud/fess/doc.json
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 07:52:55 GMT 2026 - 11.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
final CustomSize annotation = field.getAnnotation(CustomSize.class); assertNotNull(annotation, "Annotation should be present on field"); assertEquals("minKey should match", "test.min", annotation.minKey()); assertEquals("maxKey should match", "test.max", annotation.maxKey()); assertEquals("message should be default", "{jakarta.validation.constraints.Size.message}", annotation.message()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.4K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
.findFirst() .orElseThrow(() -> new IOException("Can't find package definition in file " + file)); Matcher matcher = pattern.matcher(packageLine); if (matcher.find()) { return matcher.group(1); } else { throw new IOException("Can't extract package name from file " + file); } }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sun Mar 01 05:52:34 GMT 2026 - 11.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
} // Test updateDocument with boost matcher @Test public void test_updateDocument_withBoostMatcher() { final Map<String, Object> doc = new HashMap<>(); doc.put("url", "http://example.com"); final DocBoostMatcher matcher = new DocBoostMatcher() { @Override public boolean match(Map<String, Object> map) { return true; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
final List<Artifact> list = new ArrayList<>(); final String repoContent = getRepositoryContent(url); final Matcher matcher = Pattern.compile("href=\"[^\"]*(" + artifactType.getId() + "[a-zA-Z0-9\\-]+)/?\"").matcher(repoContent); while (matcher.find()) { final String name = matcher.group(1); if (isExcludedName(artifactType, name)) { continue; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Mar 04 15:19:41 GMT 2026 - 25.1K bytes - Click Count (0)