Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 196 for job1 (0.04 sec)

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

    import org.codelibs.fess.util.InputStreamThread;
    import org.codelibs.fess.util.JobProcess;
    import org.codelibs.fess.util.SystemUtil;
    import org.lastaflute.job.JobManager;
    import org.lastaflute.job.key.LaJobUnique;
    import org.lastaflute.job.subsidiary.CronConsumer;
    
    import jakarta.servlet.ServletContext;
    
    public class PythonJobTest extends UnitFessTestCase {
    
        private PythonJob pythonJob;
    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/resources/fess_message.properties

    errors.document_not_found = The URL for the document ID is not found. Cause: {0}
    errors.not_load_from_server = Could not load from this server. Cause: {0}
    errors.failed_to_start_job = Failed to start a job: {0}.
    errors.failed_to_stop_job = Failed to stop a job: {0}.
    errors.failed_to_download_synonym_file = Failed to download a synonym file.
    errors.failed_to_upload_synonym_file = Failed to upload a synonym file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_en.properties

    errors.document_not_found = The URL for the document ID is not found. Cause: {0}
    errors.not_load_from_server = Could not load from this server. Cause: {0}
    errors.failed_to_start_job = Failed to start a job: {0}.
    errors.failed_to_stop_job = Failed to stop a job: {0}.
    errors.failed_to_download_synonym_file = Failed to download a synonym file.
    errors.failed_to_upload_synonym_file = Failed to upload a synonym file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/SuggestJob.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.job;
    
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.List;
    
    import org.apache.commons.lang3.RandomStringUtils;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.job.impl;
    
    import java.util.Map;
    
    import org.codelibs.fess.exception.ScriptEngineException;
    import org.codelibs.fess.job.JobExecutor;
    import org.codelibs.fess.script.ScriptEngine;
    import org.codelibs.fess.script.ScriptEngineFactory;
    import org.codelibs.fess.unit.UnitFessTestCase;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  6. src/main/resources/mail/crawler.dfmail

    /*
     [Crawler Notification]
     Crawler notification mail.
    */
    subject: [FESS] Crawler completed: /*pmb.hostname*/
    >>>
    --- Server Info ---
    Host Name: /*pmb.hostname:orElse('Unknown')*/
    Job Name: /*pmb.jobname:orElse('Unknown')*/
    
    --- Web/FileSystem Crawler ---
    Start Time: /*pmb.webFsCrawlStartTime:orElse('-')*/
    End Time:   /*pmb.webFsCrawlEndTime:orElse('-')*/
    Exec Time:  /*pmb.webFsCrawlExecTime:orElse('-')*/ ms
    
    --- Web/FileSystem Indexer ---
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Jan 15 22:05:20 UTC 2020
    - 1K bytes
    - Viewed (0)
  7. .github/workflows/scorecard.yml

      schedule:
        - cron: '45 9 * * 0'
      push:
        branches: [ "master" ]
    
    # Declare default permissions as read only.
    permissions: read-all
    
    jobs:
      analysis:
        name: Scorecard analysis
        runs-on: ubuntu-latest
        permissions:
          # Needed to upload the results to code-scanning dashboard.
          security-events: write
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 19:19:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  8. docs/zh-CN/README.md

    我们欢迎您的语言的 Pull Request。
    
    ## 技术支持
    
    * [Lasta Di](https://github.com/lastaflute/lasta-di "Lasta Di"): DI 容器
    * [LastaFlute](https://github.com/lastaflute/lastaflute "LastaFlute"): Web 框架
    * [Lasta Job](https://github.com/lastaflute/lasta-job "Lasta Job"): 任务调度器
    * [Fess Crawler](https://github.com/codelibs/fess-crawler "Fess Crawler"): Web 爬虫
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'job.system.job.ids'. <br>
         * The value is, e.g. default_crawler <br>
         * comment: System job IDs for scheduled jobs.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getJobSystemJobIds();
    
        /**
         * Get the value for the key 'job.template.title.web'. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  10. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            public String getBizRootPackageName() {
                return "org.codelibs.fess";
            }
    
            @Override
            public String getJobRootPackageName() {
                return "org.codelibs.fess.job";
            }
    
            @Override
            public String getWebRootPackageName() {
                return "org.codelibs.fess.app.web";
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top