- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for overwritten (0.07 sec)
-
fess
process can own L88:MAX_MAP_COUNT=262144 L89: L90:# Path to the GC log file L91:#FESS_GC_LOG_FILE=/var/log/fess/gc.log L92: L93:# Fess PID file directory L94:PID_DIR=${packaging.fess.pid.dir} L95: L96:# End of variables that can be overwritten in $DEFAULT L97: L98:# overwrite settings from default file L99:if [ -f "$DEFAULT" ]; then L100: . "$DEFAULT" L101:fi L102: L103:# Define other required variables L104:PID_FILE="$PID_DIR/$NAME.pid" L105:DAEMON=$FESS_HOME/bin/fess L106:DAEMON_OPTS="-d -p $PID_FILE...github.com/codelibs/fess/src/packaging/deb/init...Sun Jan 15 06:32:15 UTC 2023 5.8K bytes -
daterangepicker.js
{}; L90: L91: //custom options from user L92: if (typeof options !== 'object' || options === null) L93: options = {}; L94: L95: //allow setting options with data attributes L96: //data-api options will be overwritten with custom javascript options L97: options = $.extend(this.element.data(), options); L98: L99: //html template for the picker UI L100: if (typeof options.template !== 'string' && !(options.template instanceof $)) L101: ...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 64.8K bytes -
jquery-3.7.1.min.map
","xhrFields","onload","onerror","onabort","ontimeout","onreadystatechange","responseType","responseText","binary","scriptAttrs","charset","scriptCharset","evt","oldCallbacks","rjsonp","jsonp","jsonpCallback","originalSettings","callbackName","overwritten","responseContainer","jsonProp","createHTMLDocument","implementation","keepScripts","parsed","params","animated","offset","setOffset","curPosition","curLeft","curCSSTop","curTop","curOffset","curCSSLeft","curElem","using","rect","win","pageYOff...github.com/codelibs/fess/src/main/webapp/js/jqu...Sat Oct 26 01:07:52 UTC 2024 131.6K bytes -
jquery-3.7.1.min.map
","xhrFields","onload","onerror","onabort","ontimeout","onreadystatechange","responseType","responseText","binary","scriptAttrs","charset","scriptCharset","evt","oldCallbacks","rjsonp","jsonp","jsonpCallback","originalSettings","callbackName","overwritten","responseContainer","jsonProp","createHTMLDocument","implementation","keepScripts","parsed","params","animated","offset","setOffset","curPosition","curLeft","curCSSTop","curTop","curOffset","curCSSLeft","curElem","using","rect","win","pageYOff...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:07:52 UTC 2024 131.6K bytes -
FieldConfigsTest.java
he).orElse(false)); L53: assertFalse(fieldConfigs.getConfig("foo").map(FieldConfigs.Config::isOverwrite).orElse(false)); L54: } L55: L56: public void test_overwrite() { L57: final Map<String, String> params = Maps.of("foo", "overwrite"); L58: FieldConfigs fieldConfigs = new FieldConfigs(params); L59: assertTrue(fieldConfigs.getConfig("test").isEmpty()); L60: assertFalse(fieldConfigs.getConfig("foo").map(FieldConfigs.Config::isCache).orElse(false)); L61: ...github.com/codelibs/fess/src/test/java/org/code...Thu Jul 04 06:20:49 UTC 2024 3.3K bytes -
FieldConfigs.java
IgnoreCase(values[0])) { L58: return true; L59: } L60: return false; L61: } L62: L63: public boolean isOverwrite() { L64: for (final String value : values) { L65: if ("overwrite".equalsIgnoreCase(value)) { L66: return true; L67: } L68: } L69: return false; L70: } L71: L72: public String[] getValues() { L73: return values; L74: } L75:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 2.3K bytes -
FessFileTransformerTest.java
l, "UTF-8")); L273: } L274: L275: public void test_processFieldConfigs() { L276: final FessFileTransformer transformer = createInstance(); L277: final Map<String, String> params = Maps.of("foo", "cache", "bar", "overwrite", "baz", "cache|overwrite"); L278: FieldConfigs fieldConfigs = new FieldConfigs(params); L279: final Map<String, Object> dataMap = Map.of(// L280: "foo", new String[] { "aaa", "bbb" }, // L281: "bar", new String[] {...github.com/codelibs/fess/src/test/java/org/code...Thu Jul 04 06:20:49 UTC 2024 9.8K bytes -
FessXpathTransformerTest.java
); L932: } L933: L934: public void test_processFieldConfigs() { L935: final FessXpathTransformer transformer = new FessXpathTransformer(); L936: final Map<String, String> params = Maps.of("foo", "cache", "bar", "overwrite", "baz", "cache|overwrite"); L937: FieldConfigs fieldConfigs = new FieldConfigs(params); L938: final Map<String, Object> dataMap = Map.of(// L939: "foo", new String[] { "aaa", "bbb" }, // L940: "bar", new String[] {...github.com/codelibs/fess/src/test/java/org/code...Thu Oct 24 13:01:38 UTC 2024 41.3K bytes -
AbstractFessFileTransformer.java
th())); L279: // last_modified L280: final Date lastModified = getLastModified(dataMap, responseData); L281: if (lastModified != null) { L282: dataMap.put(fessConfig.getIndexFieldLastModified(), lastModified); // overwrite L283: // timestamp L284: putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(), lastModified); L285: } else { L286: // timestamp L287: putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(),...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 23.6K bytes