Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 291 - 300 of 326 for allo (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_spnego_preauth_password = "{labels.spnego_preauth_password}";
    
        /** The key of the message: Allow Basic Auth */
        public static final String LABELS_spnego_allow_basic = "{labels.spnego_allow_basic}";
    
        /** The key of the message: Allow Unsecure Basic Auth */
        public static final String LABELS_spnego_allow_unsecure_basic = "{labels.spnego_allow_unsecure_basic}";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 172.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

            } catch (Exception e) {
                assertTrue("Exception handling should be fast", true);
            }
        }
    
        @Test
        public void test_component_integration() {
            // Test that all mock components are properly registered
            assertNotNull(ComponentUtil.getComponent("crawlingConfigHelper"), "CrawlingConfigHelper should be registered");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

            job.setAvailable(enabled ? Constants.T : Constants.F);
            job.setScriptType("groovy");
            job.setScriptData("println 'test'");
            job.setTarget("all");
            return job;
        }
    
        @FunctionalInterface
        private interface LaunchNowWithParamsCallback {
            LaunchedProcess call(LaunchNowOpCall opCall);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

                return parameters.get(name);
            }
    
            @Override
            public String getParameter(String name) {
                return singleParameters.get(name);
            }
    
            // All other methods throw UnsupportedOperationException
            @Override
            public Object getAttribute(String name) {
                throw new UnsupportedOperationException();
            }
    
            @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 26.5K bytes
    - Click Count (0)
  5. .teamcity/performance-tests-ci.json

          "testProject" : "largeMonolithicJavaProject",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.java.JavaTasksPerformanceTest.tasks --all",
        "groups" : [ {
          "testProject" : "largeJavaMultiProject",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        }, {
          "testProject" : "largeMonolithicJavaProject",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 03 21:56:33 GMT 2026
    - 32.5K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

            final UriType annotation = field.getAnnotation(UriType.class);
    
            assertEquals("Annotation type should be UriType", UriType.class, annotation.annotationType());
        }
    
        // Test all annotation methods exist
        @Test
        public void test_annotationMethods() {
            try {
                final Method protocolTypeMethod = UriType.class.getMethod("protocolType");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.3K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            testClient.createIndexResult = false;
    
            final boolean result = testClient.reindexConfigIndices(false, allTargetPrefixes());
    
            assertFalse(result);
            // Should still attempt all indices (4 config indices)
            assertEquals(4, testClient.createdIndices.size());
        }
    
        @Test
        public void test_reindexConfigIndices_reindexToBackupFailureCleansUp() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/entity/ChatSessionTest.java

            session.addUserMessage("User 1");
            session.addUserMessage("User 2");
            session.addUserMessage("User 3");
            session.addUserMessage("User 4");
    
            // All user messages - trimming to 2 starts at index 2 which is user, no skip needed
            session.trimHistory(2);
    
            final List<ChatMessage> messages = session.getMessages();
            assertEquals(2, messages.size());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  9. src/main/resources/fess_message_es.properties

    success.upload_design_file = {0} actualizado.
    success.update_design_jsp_file = {0} actualizado.
    success.create_crawling_config_at_wizard = Configuración de rastreo {0} creada.
    success.failure_url_delete_all = URL de fallo eliminada.
    success.delete_file = Archivo {0} eliminado.
    success.job_started = Trabajo {0} iniciado.
    success.job_stopped = Trabajo {0} detenido.
    success.upload_synonym_file = Archivo de sinónimos cargado.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            ComponentUtil.setFessConfig(mockFessConfig);
            ComponentUtil.register(mockSystemHelper, "systemHelper");
            ComponentUtil.register(mockPopularWordHelper, "popularWordHelper");
    
            // Create SuggestJob after all components are registered
            suggestJob = new SuggestJob();
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            // Clean up temp directory
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 31.6K bytes
    - Click Count (0)
Back to Top