- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 169 for replacements (0.08 sec)
-
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
final Matcher matcher = pattern.matcher("test"); final BiFunction<String, Matcher, String> pathMatcher = pathMappingHelper.createPathMatcher(matcher, "replacement"); String result = pathMatcher.apply("test", matcher); assertEquals("replacement", result); } public void test_load_withoutPathMappingBhv() { final PathMappingHelper helper = new PathMappingHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
return value; } String newValue = value; for (final String element : Constants.RESERVED) { final String replacement = element.replaceAll("(.)", "\\\\$1"); newValue = newValue.replace(element, replacement); } return newValue; } /** * Builds the complete query string from the configured parameters.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
RenderDataUtil.register(data, "pathMappingItems", pathMappingService.getPathMappingList(pathMapPager)); // page navi // restore from pager copyBeanToBean(pathMapPager, form, op -> op.include("regex", "replacement")); } // =================================================================================== // Edit Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Streams.java
} /** * Returns {@link Collection#stream}. * * @deprecated There is no reason to use this; just invoke {@code collection.stream()} directly. */ @Deprecated @InlineMe(replacement = "collection.stream()") public static <T extends @Nullable Object> Stream<T> stream(Collection<T> collection) { return collection.stream(); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 37K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* API</h2> * * <p>The successor to Guava's caching API is <a * href="https://github.com/ben-manes/caffeine/wiki">Caffeine</a>. Its API is designed to make it a * nearly drop-in replacement. Note that it is not available for Android or GWT/J2CL and that it may * have <a href="https://github.com/ben-manes/caffeine/wiki/Guava">different (usually better)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
* @param convertUrlMap the map of regex patterns to replacement strings */ public void setConvertUrlMap(final Map<String, String> convertUrlMap) { this.convertUrlMap.putAll(convertUrlMap); } /** * Adds a URL conversion rule. * * @param regex the regular expression pattern to match * @param replacement the replacement string */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsPathMappingCB.java
doColumn("processType"); } public void columnRegex() { doColumn("regex"); } public void columnReplacement() { doColumn("replacement"); } public void columnSortOrder() { doColumn("sortOrder"); } public void columnUpdatedBy() { doColumn("updatedBy"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/webapp/js/admin/popper.min.js.map
(variation === 'end') {\n return 'start';\n } else if (variation === 'start') {\n return 'end';\n }\n return variation;\n}\n","import placements from '../methods/placements';\n\n// Get rid of `auto` `auto-start` and `auto-end`\nconst validPlacements = placements.slice(3);\n\n/**\n * Given an initial placement, returns all the subsequent placements\n * clockwise (or counter-clockwise).\n *\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement - A valid placement (it accepts...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 120.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.27.md
- The Daemonset controller creates replacements for terminal Pods, which can appear during VM preemptions or when using Pod finalizers ([#118911](https://github.com/kubernetes/kubernetes/pull/118911), [@alculquicondor](https://github.com/alculquicondor)) [SIG Apps and Testing]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jul 17 07:48:22 UTC 2024 - 466.3K bytes - Viewed (2) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
generator.filePathMap.put("${temp}", "/tmp"); assertEquals("/tmp", generator.expandPath("${temp}")); assertEquals("${temp}/file", generator.expandPath("${temp}/file")); // No partial replacement } public void test_directoryNameLength() { // Test directoryNameLength setter generator = new TestThumbnailGenerator(); // Default value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.1K bytes - Viewed (0)