Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 321 - 330 of 337 for alla (0.02 seconds)

  1. src/main/resources/fess_config.properties

    thumbnail.html.image.exclude.extensions=svg,html,css,js
    # Interval for thumbnail generator.
    thumbnail.generator.interval=0
    # Targets for thumbnail generator (e.g., all).
    thumbnail.generator.targets=all
    # Whether the thumbnail crawler is enabled.
    thumbnail.crawler.enabled=true
    # Interval for system monitor in thumbnail processing.
    thumbnail.system.monitor.interval=60
    
    # user
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

         *
         * @param document the parsed HTML document
         * @param xpath the XPath expression to evaluate
         * @return the concatenated text content from all matching nodes
         */
        protected String getMultipleNodeValue(final Document document, final String xpath) {
            XPathNodes nodeList = null;
            final StringBuilder buf = new StringBuilder(100);
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 55.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java

            assertTrue(errors.isEmpty());
        }
    
        @Test
        public void test_validateFields_missingRequiredFields() {
            final Map<String, Object> doc = new HashMap<>();
            // url, title, role, boost are all missing
    
            final List<VaMessenger<FessMessages>> errorMessages = new ArrayList<>();
            AdminSearchlistAction.validateFields(doc, errorMessages::add);
    
            assertFalse(errorMessages.isEmpty());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 34.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            engine.evaluate("return 1", new HashMap<>());
            engine.close();
        }
    
        /**
         * Test that cache eviction works when exceeding max size (100).
         * Evaluates 110 distinct scripts, then verifies all still produce correct results.
         */
        @Test
        public void test_evaluate_cacheEviction() {
            final GroovyEngine engine = new GroovyEngine();
            final Map<String, Object> params = new HashMap<>();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  5. src/main/resources/fess_label_tr.properties

    labels.wizard_start_crawler_title=Tarayıcı
    labels.wizard_start_crawling_desc="Taramayı Başlat" düğmesine tıklayarak şimdi taramayı başlatabilirsiniz.
    labels.wizard_button_start_crawling=Taramayı Başlat
    labels.wizard_button_finish=Atla
    labels.search_list_configuration=Ara
    labels.search_list_button_delete=Sil
    labels.search_list_delete_confirmation=Silmek istediğinizden emin misiniz?
    labels.search_list_button_delete_all=Bu Sorguya Göre Tümünü Sil
    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)
  6. src/main/java/org/codelibs/fess/chat/ChatClient.java

                                    }
                                }
                            }
    
                            if (!fallbackSucceeded) {
                                // All fallbacks failed - generate no-results response
                                phaseStartTime = System.currentTimeMillis();
                                callback.onPhaseStart(ChatPhaseCallback.PHASE_ANSWER, "Generating response...");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  7. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    ").css(f.activeSuggestionCSS),b.preventDefault(),!1}}}).unbind("blur.suggest").bind("blur.suggest",function(){h(a(this))}),b},LANG:{errorTitle:"Form submission failed!",requiredField:"This is a required field",requiredFields:"You have not answered all required fields",badTime:"You have not given a correct time",badEmail:"You have not given a correct e-mail address",badTelephone:"You have not given a correct phone number",badSecurityAnswer:"You have not given a correct answer to the security question",badDate:"You...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 32.8K bytes
    - Click Count (0)
  8. src/main/resources/fess_label_es.properties

    labels.page_not_found_title=Página no encontrada.
    labels.check_url=Por favor, compruebe la URL.
    labels.busy_title=Servicio temporalmente no disponible
    labels.busy_message=El servidor está experimentando una carga alta. Por favor, inténtelo de nuevo más tarde.
    labels.user_name=Nombre de usuario
    labels.login=Iniciar sesión
    labels.login.placeholder_username=Nombre de usuario
    labels.login.placeholder_password=Contraseña
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 54.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

            } else {
                // v1.0 endpoint for backward compatibility
                authUrl = getAuthority() + getTenant()
                        + "/oauth2/authorize?response_type=code&scope=directory.read.all&response_mode=form_post&redirect_uri="
                        + URLEncoder.encode(getReplyUrl(request), Constants.UTF_8_CHARSET) + "&client_id=" + getClientId()
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:03:27 GMT 2026
    - 56.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        Integer getThumbnailGeneratorIntervalAsInteger();
    
        /**
         * Get the value for the key 'thumbnail.generator.targets'. <br>
         * The value is, e.g. all <br>
         * comment: Targets for thumbnail generator (e.g., all).
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getThumbnailGeneratorTargets();
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top