- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for preload (0.18 sec)
-
fess
rh_status_q && exit 0 L143: $1 L144: ;; L145: stop) L146: rh_status_q || exit 0 L147: $1 L148: ;; L149: restart) L150: $1 L151: ;; L152: reload) L153: rh_status_q || exit 7 L154: $1 L155: ;; L156: force-reload) L157: force_reload L158: ;; L159: status) L160: rh_status L161: ;; L162: condrestart|try-restart) L163: rh_status_q || exit 0 L164: restart L165: ...github.com/codelibs/fess/src/packaging/rpm/init...Sun Jan 15 06:32:15 UTC 2023 3.7K bytes -
KuromojiFile.java
kuromojiItem.setNewToken(StringUtil.EMPTY); L112: try (KuromojiUpdater updater = new KuromojiUpdater(item)) { L113: reload(updater); L114: } L115: } L116: L117: protected void reload(final KuromojiUpdater updater) { L118: try (CurlResponse curlResponse = dictionaryManager.getContentResponse(this)) { L119: reload(updater, curlResponse.getContentAsStream()); L120: } catch (final IOException e) { L121: throw new DictionaryException("Failed...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.7K bytes -
CronExpression.java
message() default "{org.lastaflute.validator.constraints.CronExpression.message}"; L39: L40: Class<?>[] groups() default {}; L41: L42: Class<? extends Payload>[] payload() default {}; L43: L44:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.5K bytes -
postinst
then L57: if command -v systemctl >/dev/null; then L58: echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using systemd" L59: echo " sudo systemctl daemon-reload" L60: echo " sudo systemctl enable fess.service" L61: echo "### You can start fess service by executing" L62: echo " sudo systemctl start fess.service" L63: L64: elif command -v chkconfig >/dev/null; then L65: echo "###...github.com/codelibs/fess/src/packaging/common/s...Thu Dec 10 01:24:02 UTC 2015 3.1K bytes -
ProtwordsFile.java
ProtwordsItem.setNewInput(StringUtil.EMPTY); L111: try (ProtwordsUpdater updater = new ProtwordsUpdater(item)) { L112: reload(updater); L113: } L114: } L115: L116: protected void reload(final ProtwordsUpdater updater) { L117: try (CurlResponse curlResponse = dictionaryManager.getContentResponse(this)) { L118: reload(updater, curlResponse.getContentAsStream()); L119: } catch (final IOException e) { L120: throw new DictionaryException("Failed...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
StopwordsFile.java
StopwordsItem.setNewInput(StringUtil.EMPTY); L111: try (SynonymUpdater updater = new SynonymUpdater(item)) { L112: reload(updater); L113: } L114: } L115: L116: protected void reload(final SynonymUpdater updater) { L117: try (CurlResponse curlResponse = dictionaryManager.getContentResponse(this)) { L118: reload(updater, curlResponse.getContentAsStream()); L119: } catch (final IOException e) { L120: throw new DictionaryException("Failed...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
UriType.java
L41: L42: String message() default "{org.lastaflute.validator.constraints.UriType.message}"; L43: L44: Class<?>[] groups() default {}; L45: L46: Class<? extends Payload>[] payload() default {}; L47: L48:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.6K bytes -
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