Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 12 for optall (0.04 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/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            assertTrue(dataStoreParams.containsKey("key2"));
        }
    
        // Test putAll
        @Test
        public void test_putAll() {
            Map<String, String> map = new HashMap<>();
            map.put("key1", "value1");
            map.put("key2", "value2");
            map.put("key3", "value3");
    
            dataStoreParams.putAll(map);
    
            assertEquals("value1", dataStoreParams.get("key1"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  4. 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)
  5. src/main/java/org/codelibs/fess/opensearch/user/exentity/User.java

                sourceMap.put("groups", groups);
            }
            if (roles != null) {
                sourceMap.put("roles", roles);
            }
            if (attributes != null) {
                sourceMap.putAll(attributes);
            }
            return sourceMap;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 06:22:27 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/DocMapTest.java

            Map<String, Object> sourceMap = new HashMap<>();
            sourceMap.put("key1", "value1");
            sourceMap.put("key2", "value2");
            sourceMap.put("key3", "value3");
    
            docMap.putAll(sourceMap);
    
            assertEquals(3, docMap.size());
            assertEquals("value1", docMap.get("key1"));
            assertEquals("value2", docMap.get("key2"));
            assertEquals("value3", docMap.get("key3"));
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  7. 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)
  8. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java

            factory.setInitParameterMap(paramMap);
    
            final Map<String, String> clientConfigMap = getConfigParameterMap(ConfigName.CLIENT);
            if (clientConfigMap != null) {
                paramMap.putAll(clientConfigMap);
            }
    
            // robots txt enabled
            if (paramMap.get(Param.Client.ROBOTS_TXT_ENABLED) == null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  9. 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)
  10. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

                    }
                }
    
                @Override
                public Map<String, String> getInfoMap(String sessionId) {
                    Map<String, String> result = new HashMap<>(infoMap);
                    result.putAll(statusMap);
                    return result;
                }
            };
            ComponentUtil.register(testCrawlingInfoHelper, "crawlingInfoHelper");
    
            Crawler.Options options = new Crawler.Options();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
Back to Top