Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for optall (0.02 seconds)

  1. src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java

            final AtomicBoolean launchNowCalled = new AtomicBoolean(false);
    
            final LaScheduledJob mockLaJob = createMockLaScheduledJob(opCall -> {
                final LaunchNowOption option = new LaunchNowOption();
                opCall.callback(option);
                capturedOption.set(option);
                launchNowCalled.set(true);
                return null;
            });
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

            final ScheduledJob scheduledJob = createScheduledJob("job-1", "Test Job", true, true);
    
            registerMockJobManager("job-1", opCall -> {
                final LaunchNowOption option = new LaunchNowOption();
                opCall.callback(option);
                capturedOption.set(option);
                return null;
            });
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/mail/LogNotificationPostcard.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.mail;
    
    import org.lastaflute.core.mail.LaTypicalPostcard;
    import org.lastaflute.core.mail.MPCall;
    import org.lastaflute.core.mail.Postbox;
    
    /**
     * The postcard for MailFlute on LastaFlute.
     * @author FreeGen
     */
    public class LogNotificationPostcard extends LaTypicalPostcard {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  4. src/main/resources/fess_label_tr.properties

    labels.crawling_info_created_time=Oluşturulma
    labels.crawling_info_delete_all_link=Tümünü Sil
    labels.crawling_info_delete_all_confirmation=Tümünü silmek istediğinizden emin misiniz?
    labels.crawling_info_delete_all_cancel=İptal
    labels.crawling_info_thread_dump=İş Parçacığı Dökümü
    labels.crawling_info_CrawlerStartTime=Tarayıcı Başlangıç Zamanı
    labels.crawling_info_CrawlerEndTime=Tarayıcı Bitiş Zamanı
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 52.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            validateFields(form.doc, v -> throwValidationError(v, this::asEditHtml));
            verifyToken(this::asEditHtml);
            getDoc(form).ifPresent(entity -> {
                try {
                    entity.putAll(fessConfig.convertToStorableDoc(form.doc));
    
                    final String newId = ComponentUtil.getCrawlingInfoHelper().generateId(entity);
                    entity.put(fessConfig.getIndexFieldId(), newId);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 25.5K bytes
    - Click Count (1)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                            .collect(HashMap<String, List<String>>::new, (m, d) -> m.put(d.getFirst(), Arrays.asList(d.getSecond().split(","))),
                                    HashMap::putAll));
                }
                propMap.put(DEFAULT_LABEL_VALUES, map);
            }
            return map.entrySet().stream().flatMap(e -> {
                final String key = e.getKey();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
Back to Top