- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for bound (0.06 sec)
-
help.jsp
match documents whose field(s) values are L50: between the lower and upper bound specified by the Range Query. Range L51: Queries can be inclusive or exclusive of the upper and lower bounds. L52: If you want to find documents whose content_length fields have values L53: between 1000 and 10000, inclusive, you can enter: L54: <pre>content_length:[1000 TO 10000]</pre> L55: If you want to exclude the upper and lower bounds, use "{}". L56: </dd> L57: <dt>Boost</dt> L58: <dd> L59: To boost a term...github.com/codelibs/fess/src/main/webapp/WEB-IN...Mon Feb 26 14:01:31 UTC 2018 2.4K bytes -
FessListedClassificationProvider.java
provide(final String classificationName) throws ProvidedClassificationNotFoundException { L33: final ClassificationMeta onMainSchema = findOnMainSchema(classificationName); L34: if (onMainSchema == null) { L35: final String msg = "Not found the classification: " + classificationName; L36: throw new ProvidedClassificationNotFoundException(msg); L37: } L38: return onMainSchema; L39: } L40: L41: protected ClassificationMeta findOnMainSchema(final String classificationName)...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.5K bytes -
service.bat
L9:for %%I in ("%SCRIPT_DIR%..") do set FESS_HOME=%%~dpfI L10: L11:rem Detect JVM version to figure out appropriate executable to use L12:if not exist "%JAVA_HOME%\bin\java.exe" ( L13:echo JAVA_HOME points to an invalid Java installation (no java.exe found in "%JAVA_HOME%"^). Exiting... L14:goto:eof L15:) L16: L17:"%JAVA_HOME%\bin\java" -Xmx50M -version > nul 2>&1 L18: L19:if errorlevel 1 ( L20: echo Warning: Could not start JVM to detect version, defaulting to x86: L21: goto x86 L22:) L23: L24:"%JAVA_HOME%\bin\java"...github.com/codelibs/fess/src/main/assemblies/fi...Sun Jan 15 06:32:15 UTC 2023 6K bytes -
littleAdjustmentMap.dfprop
- - - - - - - - - - - - - - - - - - - - - - - - - L62: # o classificationUndefinedHandlingType: (NotRequired - Default LOGGING) L63: # The handling type when undefined classification is found. L64: # L65: # EXCEPTION - throws exception when found L66: # LOGGING - logging only when found (exception if ReplaceSchema) L67: # ALLOWED - no action L68: # L69: #; classificationUndefinedHandlingType = LOGGING L70: # - - - - - - - - - -/ L71: L72: # /- - - - - - - -...github.com/codelibs/fess/dbflute_fess/dfprop/li...Sat Jul 25 06:04:16 UTC 2015 8.8K bytes -
OsddHelper.java
L61: return null; L62: } L63: if (StringUtil.isBlank(osddPath)) { L64: logger.info("OSDD file is not found."); L65: return null; L66: } L67: final String path = LaServletContextUtil.getServletContext().getRealPath(osddPath); L68: if (path == null) { L69: logger.warn("{} was not found.", path); L70: return null; L71: } L72: final File osddFile = new File(path); L73: if (!osddFile.isFile())...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 3.7K bytes -
FessUserNotFoundException.java
ion; L17: L18:public class FessUserNotFoundException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public FessUserNotFoundException(final String username) { L23: super("User is not found: " + username); L24: } L25: L26:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 903 bytes -
search.js
var $favorite = $(this), L150: url = $favorite.attr("href"), L151: found = false, L152: $favorited, L153: i; L154: for (i = 0; i < docIds.length; i++) { L155: if (url === docIds[i]) { L156: found = true; L157: break; L158: } L159: } L160: if (found) { L161: $favorited = $favorite.siblings(".favorited"); L162: $favorite.fadeOut(1000,...github.com/codelibs/fess/src/main/webapp/js/sea...Thu Mar 30 05:45:24 UTC 2023 7.5K bytes -
UpgradeUtil.java
alias for {}", aliasName, indexName); L81: } L82: } L83: } catch (final ResourceNotFoundRuntimeException e) { L84: // ignore L85: } catch (final Exception e) { L86: logger.warn("{} is not found.", aliasConfigPath, e); L87: } L88: return false; L89: } L90: L91: public static boolean addMapping(final IndicesAdminClient indicesClient, final String index, final String docType, L92: final String indexResourcePath)...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.1K bytes -
GoAction.java
viewHelper = ComponentUtil.getViewHelper(); L142: try { L143: final StreamResponse response = viewHelper.asContentResponse(doc); L144: if (response.getHttpStatus().orElse(200) == 404) { L145: logger.debug("Not found: {}", targetUrl); L146: saveError(messages -> messages.addErrorsNotFoundOnFileSystem(GLOBAL, targetUrl)); L147: return redirect(ErrorAction.class); L148: } L149: return response; L150: } catch...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.9K bytes -
ThumbnailAction.java
fessConfig.getIndexFieldThumbnail(), String.class); L57: if (StringUtil.isBlank(form.queryId) || StringUtil.isBlank(url) || !thumbnailSupport) { L58: // 404 L59: throw responseManager.new404("Thumbnail for " + form.docId + " is not found."); L60: } L61: L62: final File thumbnailFile = thumbnailManager.getThumbnailFile(doc); L63: if (thumbnailFile == null) { L64: if (fessConfig.isThumbnailEnabled()) { L65: thumbnailManager.offer(doc); L66:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 3.6K bytes