- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 58 for replaceUrl (0.61 sec)
-
src/test/java/org/codelibs/core/net/MimeTypeUtilTest.java
final String contentType = MimeTypeUtil.guessContentType(path); assertEquals("text/html", contentType); } /** * @throws Exception */ @Test public void testGetFromStream_gif() throws Exception { final String path = ClassUtil.getPackageName(this.getClass()).replaceAll("\\.", "/") + "/ccc.gif";
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/GeoInfoTest.java
assertEquals(result, geoInfo.toQueryBuilder().toString().replaceAll("[ \n]", "")); } public void test_34_150_10_x() { MockletHttpServletRequest request = getMockRequest(); request.setParameter("geo.location.x.point", "34,150");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
assertTrue(result2 instanceof MatchAllQueryBuilder); // Both should generate the same JSON String json1 = result1.toString().replaceAll("[\\s\\n]", ""); String json2 = result2.toString().replaceAll("[\\s\\n]", ""); assertEquals(json1, json2); } public void test_execute_withVeryLargeBoost() { // Test execute method with very large boost value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/ParamMap.java
@Override public void forEach(final BiConsumer<? super K, ? super V> action) { parent.forEach(action); } @Override public void replaceAll(final BiFunction<? super K, ? super V, ? extends V> function) { parent.replaceAll(function); } @Override public V putIfAbsent(final K key, final V value) { return parent.putIfAbsent(key, value); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingNavigableMap.java
@Override NavigableMap<K, V> forward() { return ForwardingNavigableMap.this; } @Override public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { forward().replaceAll(function); } @Override protected Iterator<Entry<K, V>> entryIterator() { return new Iterator<Entry<K, V>>() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
String expectedValuePart = fieldNamePart.toLowerCase() .replace("_", ".") .replaceAll("\\.placeholder$", ".placeholder") .replaceAll("\\.placeholder\\.(.+)", ".placeholder_$1"); String expectedValue = "{labels." + expectedValuePart + "}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/log/ApiAdminLogAction.java
*/ // GET /api/admin/log/file/{id} @Execute public StreamResponse get$file(final String id) { final String filename = new String(Base64.getDecoder().decode(id), StandardCharsets.UTF_8).replace("..", "").replaceAll("\\s", ""); final String logFilePath = systemHelper.getLogFilePath(); if (StringUtil.isNotBlank(logFilePath) && isLogFilename(filename)) { final Path path = Paths.get(logFilePath, filename);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CommonMatcher.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
*/ public static String replace(final Object input, final String regex, final String replacement) { if (input == null) { return StringUtil.EMPTY; } return input.toString().replaceAll(regex, replacement); } /** * Formats code content with syntax highlighting and line numbers. * * @param prefix the line number prefix pattern
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0)