- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 30 for Milesi (0.04 sec)
-
basicInfoMap.dfprop
L164: # - - - - - - - - - -/ L165: L166: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L167: # o sourceFileEncoding: (NotRequired - Default 'UTF-8') L168: # The value of an encoding for source files that are generated classes. L169: # If source files of your project are not UTF-8, specify your encoding here. L170: # L171: #; sourceFileEncoding = UTF-8 L172: # - - - - - - - - - -/ L173: L174: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L175:...github.com/codelibs/fess/dbflute_fess/dfprop/ba...Sat Oct 31 23:35:14 UTC 2015 9.2K bytes -
fess
available RAM, but no more than 31g L61:#FESS_HEAP_SIZE=2g L62: L63:# Heap new generation L64:#FESS_HEAP_NEWSIZE= L65: L66:# max direct memory L67:#FESS_DIRECT_SIZE= L68: L69:# Additional Java OPTS L70:#FESS_JAVA_OPTS= L71: L72:# Maximum number of open files L73:MAX_OPEN_FILES=65535 L74: L75:# Maximum amount of locked memory L76:#MAX_LOCKED_MEMORY= L77: L78:# Fess log directory L79:LOG_DIR=${packaging.fess.log.dir} L80: L81:# Fess data directory L82:DATA_DIR=${packaging.fess.var.dir} L83: L84:# Fess configuration...github.com/codelibs/fess/src/packaging/deb/init...Sun Jan 15 06:32:15 UTC 2023 5.8K bytes -
fess.service
L21:StandardError=journal L22: L23:# When a JVM receives a SIGTERM signal it exits with code 143 L24:SuccessExitStatus=143 L25: L26:# Specifies the maximum file descriptor number that can be opened by this process L27:LimitNOFILE=${packaging.os.max.open.files} L28: L29:# Specifies the maximum number of bytes of memory that may be locked into RAM L30:# Set to "infinity" if you use the 'bootstrap.mlockall: true' option L31:# in fess.yml and 'MAX_LOCKED_MEMORY=unlimited' in ${packaging.env.file} L32:#LimitMEMLOCK=infinity...github.com/codelibs/fess/src/packaging/common/s...Sun Jan 15 06:32:15 UTC 2023 1.1K bytes -
PurgeThumbnailJob.java
private long expiry = 30 * 24 * 60 * 60 * 1000L; L26: L27: public String execute() { L28: try { L29: final long count = ComponentUtil.getThumbnailManager().purge(getExpiry()); L30: return "Deleted " + count + " thumbnail files."; L31: } catch (final Exception e) { L32: logger.error("Failed to purge thumbnails.", e); L33: return e.getMessage(); L34: } L35: } L36: L37: public long getExpiry() { L38: return expiry; L39: }...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.5K bytes -
documentMap.dfprop
records to output. Minus means no limit. (NotRequired - Default '') L164: # o isReplaceSchemaDirectUse: Does it output the data to playsql directly? (NotRequired - Default false) L165: # o isOverrideExistingDataFile: Does it output to existing files? (NotRequired - Default false) L166: # o isSynchronizeOriginDate: Does it synchronize origin date for date adjustment? (NotRequired - Default false) L167: # L168: ; loadDataReverseMap = map:{ L169: ; recordLimit = -1 L170: ...github.com/codelibs/fess/dbflute_fess/dfprop/do...Sat Oct 31 23:35:14 UTC 2015 9.4K bytes -
DataStoreFactory.java
permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.ds; L17: L18:import java.io.File; L19:import java.io.InputStream; L20:import java.nio.file.FileSystem; L21:import java.nio.file.FileSystems; L22:import java.nio.file.Files; L23:import java.nio.file.Path; L24:import java.util.HashSet; L25:import java.util.LinkedHashMap; L26:import java.util.List; L27:import java.util.Locale; L28:import java.util.Map; L29:import java.util.Set; L30:import java.util.stream.Collectors; L31:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.1K bytes -
outsideSqlMap.dfprop
package of SQL file for outsideSql. L164: # This is basically for narrowing SQL-searching target, L165: # for example, when the project has SQL files for other framework. L166: # So basically you don't need this. L167: # L168: # You can use variable '$$PACKAGE_BASE$$' that means 'packageBase'. L169: # But you need to make SQL files at 'exbhv' under the set package L170: # if you use BehaviorQueryPath (MemberBhv_selectSimpleMember.sql). L171: # L172: #; sqlPackage = $$PACKAGE_BASE$$...github.com/codelibs/fess/dbflute_fess/dfprop/ou...Sat Jul 25 06:04:16 UTC 2015 8K bytes -
LogTests.java
L30:@Tag("it") L31:public class LogTests extends CrudTestBase { L32: L33: private static final String NAME_PREFIX = "logTest_"; L34: private static final String API_PATH = "/api/admin/log"; L35: private static final String LIST_ENDPOINT_SUFFIX = "files"; L36: private static final String ITEM_ENDPOINT_SUFFIX = "file"; L37: L38: private static final String KEY_PROPERTY = ""; L39: L40: @Override L41: protected String getNamePrefix() { L42: return NAME_PREFIX; L43: } L44: L45: ...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.5K bytes -
fess
FESS_DICTIONARY_PATH L56:export FESS_HEAP_SIZE L57:export SEARCH_ENGINE_HOME L58:export SEARCH_ENGINE_HTTP_URL L59:export FESS_JAVA_OPTS L60:export JAVA_HOME L61: L62:lockfile=/var/lock/subsys/$prog L63: L64:# backwards compatibility for old config sysconfig files, pre 0.90.1 L65:if [ -n $USER ] && [ -z $FESS_USER ] ; then L66: FESS_USER=$USER L67:fi L68: L69:checkJava() { L70: if [ -x "$JAVA_HOME/bin/java" ]; then L71: JAVA="$JAVA_HOME/bin/java" L72: else L73: JAVA=`which java` L74: ...github.com/codelibs/fess/src/packaging/rpm/init...Sun Jan 15 06:32:15 UTC 2023 3.7K bytes -
ThumbnailGenerator.java
ComponentUtil.getFessConfig().getThumbnailSystemMonitorIntervalAsInteger(), true); L141: L142: final int totalCount = process(options); L143: if (totalCount != 0) { L144: logger.info("Created {} thumbnail files.", totalCount); L145: } else { L146: logger.info("No new thumbnails found."); L147: } L148: exitCode = 0; L149: } catch (final ContainerNotAvailableException e) { L150: if (logger.isDebugEnabled())...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 8.2K bytes