Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Scripts (0.69 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            DATA_STORE("fess-ds"), //
            /** Theme plugins */
            THEME("fess-theme"), //
            /** Ingest processor plugins */
            INGEST("fess-ingest"), //
            /** Script plugins */
            SCRIPT("fess-script"), //
            /** Web application plugins */
            WEBAPP("fess-webapp"), //
            /** Thumbnail generator plugins */
            THUMBNAIL("fess-thumbnail"), //
            /** Crawler plugins */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

            // Setup test script engine
            scriptEngineFactory.add("test", testScriptEngine);
    
            // Execute script
            String scriptType = "test";
            String script = "test script content";
            Object result = scriptExecutor.execute(scriptType, script);
    
            // Verify result
            assertEquals("processed: test script content", result);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.script.Script;
    import org.opensearch.script.ScriptType;
    
    public class UpdateLabelJobTest extends UnitFessTestCase {
    
        private UpdateLabelJob updateLabelJob;
    
        @Override
        public void setUp() throws Exception {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

      for actions against a CRI endpoint. The kubeadm deb/rpm packages will continue to install the `cri-tools`
      package for one more release, but in you must adapt your scripts to install `crictl` manually from
      https://github.com/kubernetes-sigs/cri-tools/releases or a different location.
      
      The `kubeadm` package will stop depending on the `cri-tools` package in Kubernetes 1.32, which means that
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/score/ScoreBooster.java

            this.requestCacheSize = requestCacheSize;
        }
    
        /**
         * Sets the script language.
         * @param scriptLang The script language.
         */
        public void setScriptLang(final String scriptLang) {
            this.scriptLang = scriptLang;
        }
    
        /**
         * Sets the script code.
         * @param scriptCode The script code.
         */
        public void setScriptCode(final String scriptCode) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/LanguageHelper.java

            this.detector = detector;
        }
    
        /**
         * Creates a script for updating a document with language information.
         *
         * @param doc The document.
         * @param code The script code.
         * @return The script.
         */
        public Script createScript(final Map<String, Object> doc, final String code) {
            final StringBuilder buf = new StringBuilder(100);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top