Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 158 for job1 (0.03 seconds)

  1. .github/workflows/check-markdown-links.yml

    name: "Check markdown links"
    
    on:
      push:
        branches:
          - master
      pull_request:
      workflow_dispatch:
    
    permissions: {}
    
    jobs:
      check-links:
        permissions:
          contents: read
        runs-on: ubuntu-latest
        steps:
          - name: Checkout
            uses: actions/checkout@v6
    
          - name: Check links
            uses: lycheeverse/lychee-action@v2.8.0
            with:
              # excluded:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 25 22:06:44 GMT 2026
    - 920 bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/admin/SchedulerTests.java

        }
    
        @Test
        void testStartJob_notFound() {
            // Try to start a non-existent job
            checkPutMethod(new HashMap<>(), "invalid_scheduler_id_12345/start").then().body("response.status", equalTo(1));
        }
    
        @Test
        void testStopJob_notFound() {
            // Try to stop a non-existent job
            checkPutMethod(new HashMap<>(), "invalid_scheduler_id_12345/stop").then().body("response.status", equalTo(1));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  3. .github/workflows/feedback.yml

    name: Feedback
    
    on:
      schedule:
        - cron: '0 * * * *' # every hour
      workflow_dispatch:
    
    permissions: {}
    
    jobs:
      feedback:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Feedback loop: ask for something on PR/Issue and close if not provided or return to the queue on update.
          # https://github.com/gradle/issue-management-action/blob/main/src/feedback.ts
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jun 17 13:58:59 GMT 2024
    - 482 bytes
    - Click Count (0)
  4. .github/workflows/close-linked-issue-when-merged-into-release.yml

    name: Close linked issues when PR merged into release
    
    on:
      pull_request:
        types: [closed]
        branches:
          - release
          - release7x
          - release8x
    
    permissions:
      issues: write
    
    jobs:
      closeIssueOnPrMerge:
        runs-on: ubuntu-latest
        steps:
          - name: Closes issues related to a merged pull request.
            uses: ldez/gha-mjolnir@df0e84242364946fa3ad4e7556510e8086ad681a
            env:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Jul 16 09:18:51 GMT 2025
    - 458 bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt

    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    
    const val NIGHTLY_SNAPSHOT_BUILD_ID = "Promotion_Nightly"
    
    /**
     * 0~23.
     * To avoid nightly promotion jobs running at the same time,
     * we run each branch on different hours.
     * master - 0:00
     * release - 1:00
     * release6x - 2:00
     * release7x - 3:00
     * ...
     * releaseNx - (N-4):00
     */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Dec 29 08:57:18 GMT 2025
    - 4.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/joblog/SearchForm.java

     */
    package org.codelibs.fess.app.web.admin.joblog;
    
    /**
     * The search form for Job Log.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The ID field for searching job logs.
         */
        public String id;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 913 bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         */
        public static ExtractorFactory getExtractorFactory() {
            return getComponent(EXTRACTOR_FACTORY);
        }
    
        /**
         * Gets a job executor by name.
         * @param name The name of the job executor.
         * @return The job executor instance.
         */
        public static JobExecutor getJobExecutor(final String name) {
            if (name.endsWith(JOB_EXECUTOR_SUFFIX)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/exception/ScheduledJobException.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    /**
     * This exception is thrown when a scheduled job fails.
     */
    public class ScheduledJobException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructor.
         * @param message Exception message.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.2K bytes
    - Click Count (1)
  9. .github/workflows/issue-metadata.yml

    name: Check issues metadata
    
    on:
      issues:
        types: [ opened, labeled, unlabeled, closed, reopened, milestoned, demilestoned ]
    
    permissions: {}
    
    jobs:
      check_issue_metadata:
        permissions:
          issues: write
        runs-on: ubuntu-latest
        steps:
          # Check that issues have proper metadata: labels and milestone
          # https://github.com/gradle/issue-management-action/blob/main/src/issue-metadata.ts
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Aug 08 11:33:25 GMT 2025
    - 474 bytes
    - Click Count (0)
  10. .github/workflows/upgrade-to-latest-wrapper.yml

    name: Upgrade to latest wrapper
    
    on:
      schedule:
        - cron: '0 4 * * *'
      workflow_dispatch:
    
    permissions:
      contents: write
    
    jobs:
      upgrade-latest-wrapper:
        runs-on: ubuntu-latest
    
        if: github.repository == 'gradle/gradle'
    
        steps:
          - name: Checkout repository
            uses: actions/checkout@v6
            with:
              ref: devprod/upgrade-to-latest-wrapper
              token: ${{ secrets.GITHUB_TOKEN }}
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Nov 20 22:15:20 GMT 2025
    - 1.3K bytes
    - Click Count (0)
Back to Top