Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for Benone (0.14 sec)

  1. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

    /**
     * @author higa
     *
     */
    public class ArrayMapTest {
    
        /**
         * @see org.junit.rules.ExpectedException
         */
        @Rule
        public ExpectedException exception = ExpectedException.none();
    
        ArrayMap<String, String> map;
    
        /**
         * @throws Exception
         */
        @Before
        public void setUp() throws Exception {
            map = new ArrayMap<String, String>();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_de.properties

    labels.crawler_title_edit=Allgemeine Konfiguration
    labels.schedule=Zeitplan
    labels.enabled=Aktiviert
    labels.day_for_cleanup=Dokumente entfernen nach
    labels.day=Tag(en)
    labels.crawl_button_update=Aktualisieren
    labels.none=Keine
    labels.crawling_thread_count=Anzahl gleichzeitiger Crawler
    labels.incremental_crawling=Prüfe "Last Modified"-Header
    labels.search_log_enabled=Suchen protokollieren
    labels.user_info_enabled=Benutzer protokollieren
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_fr.properties

    labels.crawler_title_edit	=	Paramétrage général
    labels.schedule	=	Planificateur
    labels.enabled	=	Activé
    labels.day_for_cleanup	=	Supprimer les documents avant
    labels.day	=	Jour(s)
    labels.crawl_button_update	=	Mise à jour
    labels.none	=	Aucun
    labels.crawling_thread_count	=	Configuration simultanée du robot d'exploration
    labels.incremental_crawling	=	Vérifier la dernière modification
    labels.search_log_enabled	=	Journalisation de la recherche
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

                    return "auto";
                }
    
                @Override
                public String getSsoType() {
                    return "none";
                }
            });
            final OsddHelper osddHelper = new OsddHelper();
            osddHelper.setOsddPath("osdd/none.xml");
            osddHelper.init();
            assertFalse(osddHelper.hasOpenSearchFile());
        }
    
        public void test_init_disabled() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/CrawlJob.java

            resultBuf.append("Web  Config Id:");
            if (webConfigIds == null) {
                if (runAll) {
                    resultBuf.append(" ALL\n");
                } else {
                    resultBuf.append(" NONE\n");
                }
            } else {
                for (final String id : webConfigIds) {
                    resultBuf.append(' ').append(id);
                }
                resultBuf.append('\n');
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/beans/util/BeanMapTest.java

    /**
     * @author higa
     */
    public class BeanMapTest {
    
        /**
         * @see org.junit.rules.ExpectedException
         */
        @Rule
        public ExpectedException exception = ExpectedException.none();
    
        /**
         * @throws Exception
         */
        @Test
        public void testGet() throws Exception {
            final BeanMap map = new BeanMap();
            map.put("aaa", 1);
            map.put("bbb", 2);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/collection/EmptyIteratorTest.java

    /**
     * @author wyukawa
     *
     */
    public class EmptyIteratorTest {
    
        /**
         * @see org.junit.rules.ExpectedException
         */
        @Rule
        public ExpectedException exception = ExpectedException.none();
    
        /**
         * Test method for
         * {@link org.codelibs.core.collection.EmptyIterator#EmptyIterator()}.
         */
        @Test
        public void testEmptyIterator() {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/SsoManager.java

        public boolean available() {
            final String ssoType = getSsoType();
            if (logger.isDebugEnabled()) {
                logger.debug("sso.type: {}", ssoType);
            }
            return !Constants.NONE.equals(ssoType);
        }
    
        public LoginCredential getLoginCredential() {
            if (available()) {
                final SsoAuthenticator authenticator = getAuthenticator();
                if (authenticator != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/OsddHelper.java

            if (!Constants.AUTO.equalsIgnoreCase(osddLinkEnabled)) {
                return false;
            }
    
            final String ssoType = fessConfig.getSsoType();
            return StringUtil.isBlank(ssoType) || Constants.NONE.equalsIgnoreCase(ssoType);
        }
    
        public boolean hasOpenSearchFile() {
            return osddFile != null;
        }
    
        public StreamResponse asStream() {
            if (osddFile == null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_ru.properties

    labels.crawler_title_edit=Основная конфигурация
    labels.schedule=Расписание
    labels.enabled=Включено
    labels.day_for_cleanup=Удалить документы до начала
    labels.day=Дней
    labels.crawl_button_update=Обновить
    labels.none=None
    labels.crawling_thread_count=Simultaneous Crawler Config
    labels.incremental_crawling=Check Last Modified
    labels.search_log_enabled=Search Logging
    labels.user_info_enabled=User Logging
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top