- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 219 for script2 (0.25 seconds)
-
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 10.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
} /** * Evaluates a Groovy script template with the provided parameters. * * <p>This method caches compiled Script classes per script text. * Each evaluation creates a new Script instance to ensure thread-safe binding isolation. * The DI container is automatically injected into the binding map as "container".</p> * * @param template the Groovy script to evaluate (null-safe, returns null if empty)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 11.9K bytes - Click Count (0) -
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=
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 10 01:24:02 GMT 2015 - 420 bytes - Click Count (1) -
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)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 29 07:34:32 GMT 2018 - 1.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java
final Map<String, Object> params = new HashMap<>(); final String script = "def map = [name: 'Alice', age: 30]; return map.name + ' is ' + map.age"; assertEquals("Alice is 30", groovyEngine.evaluate(script, params)); } // ===== Multi-line Script Tests ===== /** * Test that multi-line scripts work */ @Test public void test_evaluate_multilineScript() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 29.1K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/LightweightChecks.kt
} steps { script { name = "CHECK_USED_WRAPPER" scriptContent = """ set -eu "$defaultJavaBinary" .teamcity/scripts/FindCommits.java ${model.branch.branchName} | \ "$defaultJavaBinary" .teamcity/scripts/CheckWrapper.java """.trimIndent()Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 23 03:29:32 GMT 2026 - 3.9K bytes - Click Count (0) -
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.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.1K bytes - Click Count (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}"Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 01 09:48:15 GMT 2016 - 2.3K bytes - Click Count (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)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.2K bytes - Click Count (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" inCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 10 01:24:02 GMT 2015 - 2.2K bytes - Click Count (0)