- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 163 for replacements (1.15 sec)
-
guava/src/com/google/common/escape/CharEscaper.java
for (; index < slen; index++) { // Get a replacement for the current character. char[] r = escape(s.charAt(index)); // If no replacement is needed, just continue. if (r == null) { continue; } int rlen = r.length; int charsSkipped = index - lastEscape; // This is the size needed to add the replacement, not the full size
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 15:45:16 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap_details.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Feb 28 06:09:47 UTC 2021 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/PathMappingDbm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
cb.query().setRegex_Wildcard(wrapQuery(pathMappingPager.regex)); } if (StringUtil.isNotBlank(pathMappingPager.replacement)) { cb.query().setReplacement_Wildcard(wrapQuery(pathMappingPager.replacement)); } // TODO Long, Integer, String supported only. // setup condition cb.query().addOrderBy_SortOrder_Asc();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
android/guava/src/com/google/common/io/Files.java
* @throws IOException if an I/O error occurs * @deprecated Prefer {@code asCharSource(file, charset).read()}. */ @Deprecated @InlineMe( replacement = "Files.asCharSource(file, charset).read()", imports = "com.google.common.io.Files") public static String toString(File file, Charset charset) throws IOException { return asCharSource(file, charset).read(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.duplicateHostName=Nom d'hôte en double labels.pageNumber=Numéro de page labels.password=Mot de passe labels.paths=Chemins labels.port=Port labels.regex=Expression régulière labels.regularName=Nom régulier labels.replacement=Remplacement labels.sessionId=ID de session labels.sortOrder=Ordre de tri labels.updatedBy=Mis à jour par labels.updatedTime=Date de mise à jour labels.urls=URL labels.userAgent=Agent utilisateur
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.6K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.path_mapping/path_mapping.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 531 bytes - Viewed (0) -
src/main/config/es/fess_config_path_mapping.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java
/** * The regular expression pattern to match request paths. */ @Required @Size(max = 1000) public String regex; /** * The replacement pattern for matched paths. */ @Size(max = 1000) public String replacement; /** * The processing type for path mapping. */ @Required public String processType; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
while (matcher.find()) { final String key = matcher.group(2); String replacement = System.getProperty(key); if (replacement == null) { replacement = matcher.group(1); } matcher.appendReplacement(tunedText, replacement.replace("\\", "\\\\").replace("$", "\\$")); } matcher.appendTail(tunedText);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0)