- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 109 for script1 (0.04 sec)
-
src/packaging/rpm/packaging.properties
# # Environment file packaging.env.file=/etc/sysconfig/fess # Default configuration directory and file to use in bin/plugin script # Simple marker to check that properties are correctly overridden packaging.type=rpm # Custom header for package scripts packaging.scripts.header=
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 420 bytes - Viewed (1) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
// Default constructor } /** * Executes a script with the specified script type and content. * * @param scriptType the type of script to execute * @param script the script content to execute * @return the result of script execution */ public abstract Object execute(String scriptType, String script); /** * Initiates shutdown of the job executor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/packaging/common/scripts/prerm
${packaging.scripts.header} # # This script is executed in the pre-remove phase # # On Debian, # $1=remove : indicates a removal # $1=upgrade : indicates an upgrade # # On RedHat, # $1=0 : indicates a removal # $1=1 : indicates an upgrade STOP_REQUIRED=false case "$1" in # Debian #################################################### remove)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
import groovy.lang.GroovyClassLoader; import groovy.lang.GroovyShell; /** * Groovy script engine implementation that extends AbstractScriptEngine. * This class provides support for executing Groovy scripts with parameter binding * and DI container integration. */ public class GroovyEngine extends AbstractScriptEngine { private static final Logger logger = LogManager.getLogger(GroovyEngine.class); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/JobExecutorTest.java
// Test scripts with special characters Object result = jobExecutor.execute("test", "script with\nnewline"); assertEquals("Executed: test script with\nnewline", result); result = jobExecutor.execute("test", "script with\ttab"); assertEquals("Executed: test script with\ttab", result); result = jobExecutor.execute("test", "script with \"quotes\"");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/packaging/common/scripts/preinst
${packaging.scripts.header} # # This script is executed in the pre-installation phase # # On Debian, # $1=install : indicates an new install # $1=upgrade : indicates an upgrade # # On RedHat, # $1=1 : indicates an new install # $1=2 : indicates an upgrade # Sets the default values for fess variables used in this script FESS_USER="${packaging.fess.user}" FESS_GROUP="${packaging.fess.group}"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 01 09:48:15 UTC 2016 - 2.3K bytes - Viewed (0) -
src/packaging/common/scripts/postrm
${packaging.scripts.header} # # This script is executed in the post-removal phase # # On Debian, # $1=remove : indicates a removal # $1=purge : indicates an upgrade # # On RedHat, # $1=0 : indicates a removal # $1=1 : indicates an upgrade SOURCE_ENV_FILE=true REMOVE_DIRS=false REMOVE_SERVICE=false REMOVE_USER_AND_GROUP=false case "$1" in
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 2.2K bytes - Viewed (0) -
src/packaging/common/packaging.properties
packaging.os.max.map.count=262144 # Simple marker to check that properties are correctly overridden packaging.type=tar.gz # Custom header for package scripts packaging.scripts.header=
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 797 bytes - Viewed (0) -
MIGRATION.md
[Fess Site Search](https://github.com/codelibs/fess-site-search) provides [scripts](https://fss-generator.codelibs.org/docs/manual) (see below) to help you migrate from GSS/CSE. Using the, you can replace existing GSS/CSE JavaScript codes with: ``` <script> (function() { var fess = document.createElement('script'); fess.type = 'text/javascript'; fess.async = true;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Mar 05 06:12:02 UTC 2019 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
public PythonJob() { super(); } /** The Python script filename to execute */ protected String filename; /** List of command-line arguments to pass to the Python script */ protected List<String> argList = new ArrayList<>(); /** * Sets the Python script filename to execute. * * @param filename the Python script filename (relative to WEB-INF/env/python/resources)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0)