Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for joms (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

        /** Service for managing scheduled jobs */
        @Resource
        private ScheduledJobService scheduledJobService;
        /** Pager for paginating scheduled job results */
        @Resource
        private SchedulerPager schedulerPager;
        /** Helper for processing scheduled jobs. */
        @Resource
        protected ProcessHelper processHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  2. 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)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

              thrownAtomicReferenceFieldUpdaterFailure = atomicReferenceFieldUpdaterFailure;
              helper = new SynchronizedHelper();
            }
          }
        } else {
          /*
           * We avoid Unsafe, since newer JVMs produce warnings or even errors for attempts to use it.
           *
           * In guava-jre, we avoid Unsafe by using VarHandle instead. But if we have references to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

        private void createTestJarWithXml(File jarFile, String xmlContent) throws Exception {
            try (JarOutputStream jos = new JarOutputStream(new FileOutputStream(jarFile))) {
                JarEntry entry = new JarEntry("fess_ds++.xml");
                jos.putNextEntry(entry);
                jos.write(xmlContent.getBytes());
                jos.closeEntry();
            }
        }
    
        // Test DataStore implementation for testing
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_de.properties

    errors.not_load_from_server = Konnte von diesem Server nicht geladen werden. Ursache: {0}
    errors.failed_to_start_job = Fehler beim Starten eines Jobs: {0}.
    errors.failed_to_stop_job = Fehler beim Stoppen eines Jobs: {0}.
    errors.failed_to_download_synonym_file = Fehler beim Herunterladen einer Synonymdatei.
    errors.failed_to_upload_synonym_file = Fehler beim Hochladen einer Synonymdatei.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/JobHelper.java

    import org.lastaflute.job.key.LaJobUnique;
    import org.lastaflute.job.subsidiary.CronParamsSupplier;
    
    /**
     * Helper class for managing scheduled jobs within the Fess system.
     * This class provides functionality for registering, unregistering, and monitoring scheduled jobs.
     */
    public class JobHelper {
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(JobHelper.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/CrawlJob.java

            return resultBuf.toString();
    
        }
    
        /**
         * Gets the count of currently running crawler jobs.
         * This method queries the scheduled jobs to count active crawler processes.
         * Used to enforce maximum concurrent crawler limits.
         *
         * @return the number of currently running crawler jobs
         */
        protected int getRunningJobCount() {
            final AtomicInteger counter = new AtomicInteger(0);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/ExecJob.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.di.exception.IORuntimeException;
    import org.lastaflute.job.LaJobRuntime;
    
    /**
     * Abstract base class for executable jobs in the Fess search engine.
     * This class provides common functionality for job execution including process management,
     * logging configuration, JVM options, and timeout handling.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.2.md

      * Deployment was Alpha in 1.1 (though it had apiVersion extensions/v1beta1) and
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CipherSuite.kt

         * Compares cipher suites names like "TLS_RSA_WITH_NULL_MD5" and "SSL_RSA_WITH_NULL_MD5",
         * ignoring the "TLS_" or "SSL_" prefix which is not consistent across platforms. In particular
         * some IBM JVMs use the "SSL_" prefix everywhere whereas Oracle JVMs mix "TLS_" and "SSL_".
         */
        internal val ORDER_BY_NAME =
          object : Comparator<String> {
            override fun compare(
              a: String,
              b: String,
            ): Int {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 39.9K bytes
    - Viewed (0)
Back to top