- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 27 for preload (0.06 sec)
-
ThumbnailGenerator.java
private static int process(final Options options) { L177: final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); L178: L179: if (StringUtil.isNotBlank(options.propertiesPath)) { L180: systemProperties.reload(options.propertiesPath); L181: } else { L182: try { L183: final File propFile = ComponentUtil.getSystemHelper().createTempFile("thumbnail_", ".properties"); L184: if (propFile.delete() && logger.isDebugEnabled())...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 8.2K bytes -
prerm
argument \`$1'" >&2 L42: exit 1 L43: ;; L44:esac L45: L46:# Stops the service L47:if [ "$STOP_REQUIRED" = "true" ]; then L48: echo -n "Stopping fess service..." L49: if command -v systemctl >/dev/null; then L50: systemctl --no-reload stop fess.service > /dev/null 2>&1 || true L51: L52: elif [ -x /etc/init.d/fess ]; then L53: if command -v invoke-rc.d >/dev/null; then L54: invoke-rc.d fess stop || true L55: else L56: /etc/init.d/fess stop...github.com/codelibs/fess/src/packaging/common/s...Mon Jan 29 07:34:32 UTC 2018 1.7K bytes -
CustomSize.java
jakarta.validation.Constraint; L32:import jakarta.validation.Payload; L33: L34:@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER }) L35:@Retention(RUNTIME) L36:@Documented L37:@Constraint(validatedBy = CustomSizeValidator.class) L38:public @interface CustomSize { L39: L40: String message() default "{jakarta.validation.constraints.Size.message}"; L41: L42: Class<?>[] groups() default {}; L43: L44: Class<? extends Payload>[] payload() default {}; L45: L46: /** L47: * @return name...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.8K bytes -
fess_label_en.properties
rawler_index=Crawler Indices L1021:labels.clear_crawler_index_button=Clear Crawler Indices L1022:labels.diagnostic_logs=Diagnostic L1023:labels.download_diagnostic_logs_button=Download Logs L1024:labels.reload_doc_index=Reload Doc Index L1025:labels.reload_doc_index_button=Reload L1026:labels.plugin_title=Plugin L1027:labels.plugin_list_name=Plugin List L1028:labels.plugin_type=Type L1029:labels.plugin_name=Name L1030:labels.plugin_version=Version L1031:labels.plugin_delete=Delete L1032:labels.p...github.com/codelibs/fess/src/main/resources/fes...Fri Mar 22 11:58:34 UTC 2024 40.7K bytes -
fess
running)" L216: fi L217: log_end_msg 0 L218: ;; L219: status) L220: status_of_proc -p $PID_FILE fess fess && exit 0 || exit $? L221: ;; L222: restart|force-reload) L223: if [ -f "$PID_FILE" ]; then L224: $0 stop L225: sleep 1 L226: fi L227: $0 start L228: ;; L229: *) L230: log_success_msg "Usage: $0 {start|stop|restart|force-reload|status}" L231: exit 1 L232: ;; L233:esac L234: L235:exit 0...github.com/codelibs/fess/src/packaging/deb/init...Sun Jan 15 06:32:15 UTC 2023 5.8K bytes -
SuggestCreator.java
private static int process(final Options options) { L164: final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); L165: L166: if (StringUtil.isNotBlank(options.propertiesPath)) { L167: systemProperties.reload(options.propertiesPath); L168: } else { L169: try { L170: final File propFile = ComponentUtil.getSystemHelper().createTempFile("suggest_", ".properties"); L171: if (propFile.delete() && logger.isDebugEnabled())...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 10K bytes -
postrm
FESS_ENV_FILE="${packaging.env.file}" L61: if [ -f "$FESS_ENV_FILE" ]; then L62: . "$FESS_ENV_FILE" L63: fi L64:fi L65: L66:if [ "$REMOVE_SERVICE" = "true" ]; then L67: if command -v systemctl >/dev/null; then L68: systemctl --no-reload disable fess.service > /dev/null 2>&1 || true L69: fi L70: L71: if command -v chkconfig >/dev/null; then L72: chkconfig --del fess 2> /dev/null || true L73: fi L74: L75: if command -v update-rc.d >/dev/null; then L76: update-rc.d...github.com/codelibs/fess/src/packaging/common/s...Thu Dec 10 01:24:02 UTC 2015 2.2K bytes -
IOIntegrationTest.java
getResponseCode() throws IOException { L81: return 200; L82: } L83: L84: @Override L85: public InputStream getInputStream() throws IOException { L86: return new ByteArrayInputStream(new byte[100]); // dummy payload L87: } L88: } L89: L90: @Test L91: public void test_TmpFileHasBeenDeletedAfterResponseWasClosed() throws Exception { L92: // ## Arrange ## L93: CurlRequest req = new MockCurlRequest(Curl.Method.POST, "http://dummy");...github.com/codelibs/curl4j/src/test/java/org/co...Mon Nov 14 21:05:19 UTC 2022 3.4K bytes -
adminlte.min.js.map
this.fixLayoutHeight()\n })\n\n setTimeout(() => {\n $('body.hold-transition').removeClass('hold-transition')\n }, 50)\n\n setTimeout(() => {\n const $preloader = $(SELECTOR_PRELOADER)\n if ($preloader) {\n $preloader.css('height', 0)\n setTimeout(() => {\n $preloader.children().hide()\n }, 200)\n }\n }, this._config.preloadDuration)\n }\n\n _max(numbers) {\n // Calculate the maximum number in a list\n let max = 0\n\n ...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 132.4K bytes -
Crawler.java
crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper(); L329: final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); L330: L331: if (StringUtil.isNotBlank(options.propertiesPath)) { L332: systemProperties.reload(options.propertiesPath); L333: } else { L334: try { L335: final File propFile = ComponentUtil.getSystemHelper().createTempFile("crawler_", ".properties"); L336: if (propFile.delete() && logger.isDebugEnabled())...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24K bytes