Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 160 for job1 (0.03 sec)

  1. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

         *
         * @param numOfThreads the number of threads
         * @return this job instance for method chaining
         */
        public GenerateThumbnailJob numOfThreads(final int numOfThreads) {
            this.numOfThreads = numOfThreads;
            return this;
        }
    
        /**
         * Enables cleanup operations for this job.
         *
         * @return this job instance for method chaining
         */
        public GenerateThumbnailJob cleanup() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

    import org.lastaflute.core.mail.Postbox;
    
    /**
     * Job for pinging search engine.
     */
    public class PingSearchEngineJob {
    
        /**
         * Default constructor.
         */
        public PingSearchEngineJob() {
            // Default constructor
        }
    
        private static final Logger logger = LogManager.getLogger(PingSearchEngineJob.class);
    
        /**
         * Executes the ping job.
         *
         * @return the execution result
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Job Log.
     *
     */
    public class AdminJoblogAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminJoblogAction() {
            super();
        }
    
        /** The role name for job log administration. */
        public static final String ROLE = "admin-joblog";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.DocumentUtil;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.script.Script;
    
    /**
     * Job class for updating label information in the search index.
     * This job processes documents and updates their label fields based on URL pattern matching.
     */
    public class UpdateLabelJob {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

            assertEquals("", result);
        }
    
        // Test constructor
        public void test_constructor() {
            // Test that constructor creates instance without error
            PurgeLogJob job = new PurgeLogJob();
            assertNotNull(job);
        }
    
        // Test multiple exceptions occur
        public void test_execute_multipleExceptions() {
            // Create mock services with exceptions
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_en.properties

    labels.file_auth_scheme_samba=Samba
    labels.file_auth_scheme_ftp=FTP
    labels.pagination_page_guide_msg={0}/{1} ({2} items)
    labels.list_could_not_find_crud_table=Not registered.
    labels.scheduledjob_configuration=Job Scheduler
    labels.scheduledjob_title_details=Job
    labels.scheduledjob_name=Name
    labels.scheduledjob_target=Target
    labels.scheduledjob_status=Status
    labels.scheduledjob_cronExpression=Schedule
    labels.scheduledjob_scriptType=Execution Method
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  7. README.md

    ## Powered By
    
    * [Lasta Di](https://github.com/lastaflute/lasta-di "Lasta Di"): DI Container
    * [LastaFlute](https://github.com/lastaflute/lastaflute "LastaFlute"): Web Framework
    * [Lasta Job](https://github.com/lastaflute/lasta-job "Lasta Job"): Job Scheduler
    * [Fess Crawler](https://github.com/codelibs/fess-crawler "Fess Crawler"): Web Crawler
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  8. CHANGELOG/CHANGELOG-1.29.md

    - Fixed an issue where a `CronJob` could fail to clean up Jobs when the `ResourceQuota` for `Jobs` had been reached. ([#119776](https://github.com/kubernetes/kubernetes/pull/119776), [@ASverdlov](https://github.com/ASverdlov))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  9. .github/workflows/maven.yml

    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
    
    jobs:
      build:
        runs-on: ${{ matrix.os }}
    
        strategy:
          matrix:
            os: [ubuntu-latest, windows-latest]
    
        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 17
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jan 16 08:40:27 UTC 2025
    - 675 bytes
    - Viewed (0)
  10. docs/releasing.md

    5. Wait for [GitHub Actions][github_actions] to start the publish job.
    
    6. Prepare for ongoing development and push to GitHub.
    
        ```
        sed -i "" \
          "s/version = \".*\"/version = \"$NEXT_VERSION\"/g" \
          build.gradle.kts
        git commit -am "Prepare next development version."
        git push
        ```
    
    7. Confirm the [GitHub Actions][github_actions] publish job succeeded.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Dec 26 22:07:16 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top