Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for Scripts (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pom.xml

    					</mappings>
    					<preinstallScriptlet>
    						<scriptFile>${project.build.directory}/generated-packaging/rpm/scripts/preinst</scriptFile>
    						<fileEncoding>utf-8</fileEncoding>
    					</preinstallScriptlet>
    					<postinstallScriptlet>
    						<scriptFile>${project.build.directory}/generated-packaging/rpm/scripts/postinst</scriptFile>
    						<fileEncoding>utf-8</fileEncoding>
    					</postinstallScriptlet>
    					<preremoveScriptlet>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  5. 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)
  6. mvnw.cmd

    @if "%MAVEN_BATCH_ECHO%" == "on"  echo %MAVEN_BATCH_ECHO%
    
    @REM set %HOME% to equivalent of $HOME
    if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
    
    @REM Execute a user defined script before this one
    if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
    @REM check for pre script, once with legacy .bat ending and once with .cmd ending
    if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. docs/fr/README.md

    ## Ingest
    
     - [Logger](https://github.com/codelibs/fess-ingest-logger)
     - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson)
    
    ## Scripts
    
     - [Groovy](https://github.com/codelibs/fess-script-groovy)
     - [OGNL](https://github.com/codelibs/fess-script-ognl)
    
    ## Localisation
    
    ### Japonais
    
     - [Site Web](https://fess.codelibs.org/ja/)
    
    ### Coréen
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. docs/pt-BR/README.md

    ## Ingestão
    
     - [Logger](https://github.com/codelibs/fess-ingest-logger)
     - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson)
    
    ## Scripts
    
     - [Groovy](https://github.com/codelibs/fess-script-groovy)
     - [OGNL](https://github.com/codelibs/fess-script-ognl)
    
    ## Informações de Desenvolvimento
    
    ### Obter Código Fonte
    
    1. Clone o repositório do Fess:
        ```
        $ cd ~/workspace
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. android/pom.xml

        <profile>
          <id>print-java-11-home</id>
          <build>
            <plugins>
              <plugin>
                <groupId>org.mvnsearch</groupId>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  10. pom.xml

        <profile>
          <id>print-java-11-home</id>
          <build>
            <plugins>
              <plugin>
                <groupId>org.mvnsearch</groupId>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
Back to top