Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for Jobs (0.11 sec)

  1. docs/de/docs/history-design-future.md

    Hier ist ein wenig über diese Geschichte.
    
    ## Alternativen
    
    Ich habe seit mehreren Jahren APIs mit komplexen Anforderungen (maschinelles Lernen, verteilte Systeme, asynchrone Jobs, NoSQL-Datenbanken, usw.) erstellt und leitete mehrere Entwicklerteams.
    
    Dabei musste ich viele Alternativen untersuchen, testen und nutzen.
    
    Die Geschichte von **FastAPI** ist zu einem großen Teil die Geschichte seiner Vorgänger.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java

     * This form extends CreateForm to include fields necessary for updating existing scheduler entries,
     * including tracking information for optimistic locking.
     * Schedulers define automated jobs such as crawling and system maintenance tasks.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. .github/workflows/stale.yml

    # specific language governing permissions and limitations
    # under the License.
    
    name: Stale
    
    on:
      schedule:
        - cron: '29 3 * * *'
      issue_comment:
        types: [ 'created' ]
    
    jobs:
      stale:
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Feb 15 15:39:54 UTC 2025
    - 976 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/scheduler/SearchForm.java

     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The ID field for searching scheduled jobs.
         */
        public String id;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 924 bytes
    - Viewed (0)
  5. .github/workflows/latest-changes.yml

            required: true
          debug_enabled:
            description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
            required: false
            default: 'false'
    
    jobs:
      latest-changes:
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Aug 15 21:44:06 UTC 2025
    - 1.3K bytes
    - Viewed (1)
  6. .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)
  7. .github/workflows/release-drafter.yml

    # specific language governing permissions and limitations
    # under the License.
       
    name: Release Drafter
    on:
      push:
        branches:
          - master
      workflow_dispatch:
    
    jobs:
       update_release_draft:
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:30:05 UTC 2025
    - 993 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

            // Setup test with mock ScheduledJobBhv
            final AtomicInteger callCount = new AtomicInteger(0);
            final List<ScheduledJob> scheduledJobs = new ArrayList<>();
    
            // Create test scheduled jobs
            ScheduledJob job1 = new ScheduledJob() {
                @Override
                public String getId() {
                    return "job1";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  9. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/cisupport/CIInfo.java

         */
        @Nonnull
        default String message() {
            return "";
        }
    
        /**
         * Some CI systems may allow running jobs in "debug" (or some equivalent) mode.
         */
        default boolean isVerbose() {
            return false;
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/JobProcessingException.java

     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown when an error occurs during job processing.
     * This exception is used to indicate problems that arise during
     * the execution or processing of jobs in the system.
     */
    public class JobProcessingException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
Back to top