- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 78 for To (0.01 sec)
-
StemmerOverrideFile.java
final String input = m.group(1).trim(); L160: final String output = m.group(2).trim(); L161: L162: if (input == null || output == null) { L163: logger.warn("Failed to parse {} to {}", line, path); L164: if (updater != null) { L165: updater.write("# " + line); L166: } L167: continue; L168: } L169: L170: id++; L171: final StemmerOverrideItem...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.6K bytes -
ProtwordsFile.java
IOException e) { L244: throw new DictionaryException("Failed to write: " + oldItem + " -> " + item, e); L245: } L246: } L247: L248: public void write(final String line) { L249: try { L250: writer.write(line); L251: writer.write(Constants.LINE_SEPARATOR); L252: } catch (final IOException e) { L253: throw new DictionaryException("Failed to write: " + line, e); L254: } L255: } L256: L257:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
StopwordsFile.java
IOException e) { L244: throw new DictionaryException("Failed to write: " + oldItem + " -> " + item, e); L245: } L246: } L247: L248: public void write(final String line) { L249: try { L250: writer.write(line); L251: writer.write(Constants.LINE_SEPARATOR); L252: } catch (final IOException e) { L253: throw new DictionaryException("Failed to write: " + line, e); L254: } L255: } L256: L257:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
GenerateThumbnailJob.java
(the "License"); L5: * you may not use this file except in compliance with the License. L6: * You may obtain a copy of the License at L7: * L8: * http://www.apache.org/licenses/LICENSE-2.0 L9: * L10: * Unless required by applicable law or agreed to in writing, software L11: * distributed under the License is distributed on an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 10.6K bytes -
CharMappingFile.java
IOException e) { L260: throw new DictionaryException("Failed to write: " + oldItem + " -> " + item, e); L261: } L262: } L263: L264: public void write(final String line) { L265: try { L266: writer.write(line); L267: writer.write(Constants.LINE_SEPARATOR); L268: } catch (final IOException e) { L269: throw new DictionaryException("Failed to write: " + line, e); L270: } L271: } L272: L273:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.2K bytes -
AdminBackupAction.java
File)) { L140: CopyUtil.copy(in, out); L141: asyncImport(fileName, tempFile); L142: } catch (final IOException e) { L143: logger.warn("Failed to create a temp file.", e); L144: if (tempFile.exists() && !tempFile.delete()) { L145: logger.warn("Failed to delete {}.", tempFile.getAbsolutePath()); L146: } L147: throwValidationError(messages -> messages.addErrorsFileIsNotSupported(GLOBAL, fileName), this::asListHtml);...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 28.5K bytes -
SearchApiManager.java
ResultOffsetExceededException e) { L262: if (logger.isDebugEnabled()) { L263: logger.debug("Failed to process a scroll request.", e); L264: } L265: writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, e); L266: } catch (final Exception e) { L267: if (logger.isDebugEnabled()) { L268: logger.debug("Failed to process a scroll request.", e); L269: } L270: writeJsonResponse(HttpServletResponse.SC_INTERNAL_SERVER_ERROR,...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 50.3K bytes -
SystemHelper.java
} catch (final Exception e) { L195: throw new FessSystemException("Failed to parse project.properties.", e); L196: } L197: } L198: L199: @PreDestroy L200: public void destroy() { L201: shutdownHookList.forEach(action -> { L202: try { L203: action.run(); L204: } catch (final Exception e) { L205: logger.warn("Failed to process shutdown task.", e); L206: } L207: }); L208: } L209: L210: ...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
AdminMaintenanceAction.java
ex(fromIndex, toIndex, replaceAliases) && replaceAliases L308: && !searchEngineClient.updateAlias(toIndex)) { L309: logger.warn("Failed to update aliases for {} and {}", fromIndex, toIndex); L310: } L311: }, e -> logger.warn("Failed to reindex from {} to {}", fromIndex, toIndex, e))); L312: return true; L313: } L314: saveError(messages -> messages.addErrorsFailedToReindex(GLOBAL, fromIndex, toIndex)); L315:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 14K bytes -
SuggestHelper.java
DefaultKeys.SUPPORTED_FIELDS, field); L121: } catch (final SuggestSettingsException e) { L122: logger.warn("Failed to add {}", field, e); L123: } L124: })); L125: suggester.createIndexIfNothing(); L126: } catch (final Exception e) { L127: logger.warn("Failed to initialize Suggester.", e); L128: } L129: } L130: L131: public Suggester suggester() { L132: return suggester; L133: } L134: L135:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.1K bytes