- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 247 for charge (2.11 sec)
-
docs/fr/README.md
[système de fichiers](https://fess.codelibs.org/15.3/admin/fileconfig-guide.html), ou un [Data Store](https://fess.codelibs.org/15.3/admin/dataconfig-guide.html) (comme un fichier CSV ou une base de données). De nombreux formats de fichiers sont pris en charge, y compris (mais sans s'y limiter) : Microsoft Office, PDF, et zip. *[Fess Site Search](https://github.com/codelibs/fess-site-search)* est une alternative gratuite à [Google Site Search](https://enterprise.google.com/search/products/gss.html)....
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Nov 11 22:42:32 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.doc_score=Score : labels.development_mode_warning=Fess s'exécute en mode développement. Veuillez installer OpenSearch séparément dans un environnement de production. labels.eol_error=Le système que vous utilisez n'est plus pris en charge. Veuillez vous référer à la page du cycle de vie du support produit et effectuer une mise à niveau. labels.tooltip_search_view=Écran de recherche labels.tooltip_run_crawler=Exécuter le robot d'exploration
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 49.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
if (logger.isDebugEnabled()) { logger.debug("Password change initiated for user: username={}", username); } try { final boolean changed = ComponentUtil.getAuthenticationManager().changePassword(username, password); if (changed) { userBhv.selectEntity(cb -> cb.query().setName_Equal(username)).ifPresent(entity -> {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java
validateInputStream(in); final Charset charset = getCharset(params); final List<String[]> rows = new ArrayList<>(); String[] headers = null; try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, charset))) { String line; Character detectedDelimiter = delimiter;
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java
return asIndexHtml(); }; validatePasswordForm(form, toIndexPage); if (!getUserBean().isPresent()) { logger.warn("User session not found during password change"); return redirect(LoginAction.class); } final String username = getUserBean().get().getUserId(); try { userService.changePassword(username, form.newPassword);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
* This class handles the process of writing changes to a temporary file * and then replacing the original file upon successful commit. */ protected class SynonymUpdater implements Closeable { /** A flag indicating whether the changes have been committed. */ protected boolean isCommit = false; /** The temporary file to write changes to. */ protected File newFile;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 15.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
this.lastmod = lastmod; } /** * Returns the change frequency of this sitemap entry. * @return the change frequency */ public String getChangefreq() { return changefreq; } /** * Sets the change frequency of this sitemap entry. * @param changefreq the change frequency to set */ public void setChangefreq(final String changefreq) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
* This class handles the process of writing changes to a temporary file * and then replacing the original file upon successful commit. */ protected class StopwordsUpdater implements Closeable { /** A flag indicating whether the changes have been committed. */ protected boolean isCommit = false; /** The temporary file to write changes to. */ protected File newFile;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/FullWidthToHalfWidthAlphabetNormalizer.java
return null; } final char[] chars = new char[text.length()]; for (int i = 0; i < chars.length; i++) { final char c = text.charAt(i); if (c >= 'a' && c <= 'z') { chars[i] = (char) (c - 'a' + 'a'); } else if (c >= 'A' && c <= 'Z') { chars[i] = (char) (c - 'A' + 'A'); } else if (c >= '0' && c <= '9') {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
if (isEmpty(name)) { return name; } final char[] chars = name.toCharArray(); if (chars.length >= 2 && Character.isUpperCase(chars[0]) && Character.isUpperCase(chars[1])) { return name; } chars[0] = Character.toLowerCase(chars[0]); return new String(chars); } /** * Capitalizes a string according to JavaBeans conventions.
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 21.5K bytes - Viewed (0)