Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for python3 (0.05 sec)

  1. src/test/java/org/codelibs/fess/job/PythonJobTest.java

            ComponentUtil.register(testProcessHelper, "processHelper");
    
            testFessConfig = new TestFessConfig() {
                @Override
                public String getPythonCommandPath() {
                    return "python3";
                }
            };
            ComponentUtil.setFessConfig(testFessConfig);
    
            testServletContext = new TestServletContext();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/PythonJob.java

    import jakarta.servlet.ServletContext;
    
    /**
     * Job for executing Python scripts within the Fess search engine environment.
     * This job extends ExecJob to provide Python-specific functionality for running
     * Python scripts with proper environment setup and argument passing.
     *
     * <p>Python scripts are executed in the WEB-INF/env/python/resources directory
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. .github/workflows/docs.yml

          - name: Configure JDK
            uses: actions/setup-java@v5
            with:
              distribution: 'zulu'
              java-version: 17
    
          - uses: actions/setup-python@v5
            with:
              python-version: 3.x
    
          - run: pip install mkdocs-material mkdocs-redirects
    
          - name: Generate Docs
            run: ./test_docs.sh
    
          - uses: actions/upload-artifact@v4
            with:
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 987 bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java

        public void test_load_simpleTerms() {
            List<RelatedContent> testData = new ArrayList<>();
            testData.add(createRelatedContent("java", "Java Programming", ""));
            testData.add(createRelatedContent("python", "Python Programming", ""));
            mockBhv.setTestData(testData);
    
            int count = relatedContentHelper.load();
            assertEquals(1, count); // One virtual host key (empty)
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java

            List<RelatedQuery> testData = new ArrayList<>();
            testData.add(createRelatedQuery("java", new String[] { "programming", "tutorial" }, ""));
            testData.add(createRelatedQuery("python", new String[] { "scripting", "data science" }, ""));
            mockBhv.setTestData(testData);
    
            int count = relatedQueryHelper.load();
            assertEquals(1, count); // One virtual host key (empty)
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

            Object result = jobExecutor.execute("javascript", "console.log('test')");
            assertEquals("Executed: javascript console.log('test')", result);
    
            result = jobExecutor.execute("python", "print('test')");
            assertEquals("Executed: python print('test')", result);
    
            result = jobExecutor.execute("groovy", "println 'test'");
            assertEquals("Executed: groovy println 'test'", result);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            return getPath(StringUtil.EMPTY, "js", names);
        }
    
        /**
         * Gets the path to environment-specific files directory.
         *
         * @param envName the environment name (e.g., "python", "ruby")
         * @param names the path components to append to the environment directory
         * @return the Path object pointing to the environment-specific directory
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        /** Execution type for thumbnail operations. */
        public static final String EXECUTE_TYPE_THUMBNAIL = "thumbnail";
    
        /** Execution type for Python script operations. */
        public static final String EXECUTE_TYPE_PYTHON = "python";
    
        /** Execution type for suggest operations. */
        public static final String EXECUTE_TYPE_SUGGEST = "suggest";
    
        /** Default script type (Groovy). */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_en.properties

    labels.facet_filetype_json=Json
    labels.facet_filetype_ocaml=OCaml
    labels.facet_filetype_perl=Perl
    labels.facet_filetype_php=PHP
    labels.facet_filetype_properties=Properties File
    labels.facet_filetype_python=Python
    labels.facet_filetype_ruby=Ruby
    labels.facet_filetype_scala=Scala
    labels.facet_filetype_shell=Shell Script
    labels.facet_filetype_vb=Visual Basic
    labels.facet_filetype_others=Others
    labels.facet_label_reset=Reset
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    # Pattern to filter system properties for jobs.
    job.system.property.filter.pattern=
    
    # Number of processors to use.
    processors=0
    # Path to Java command.
    java.command.path=java
    # Path to Python command.
    python.command.path=python
    # Encoding for file paths.
    path.encoding=UTF-8
    # Whether to use a dedicated temporary directory.
    use.own.tmp.dir=true
    # Maximum length of log output.
    max.log.output.length=4000
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
Back to top