Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 138 for wong (0.15 seconds)

  1. src/main/resources/fess_indices/_aws/fess.json

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_cloud/fess.json

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

            assertTrue(details.contains("Something went wrong"));
        }
    
        @Test
        public void test_formatDetails_truncation() {
            TestableLogNotificationJob testableJob = new TestableLogNotificationJob();
    
            long timestamp = 1700000000000L;
            List<LogNotificationEvent> events = new ArrayList<>();
            // Create many events with long messages
            for (int i = 0; i < 100; i++) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

        @Test
        public void test_aliveField_volatileVisibility() throws Exception {
            // Ensure alive starts as true
            assertTrue(dataStore.alive);
    
            final int readerThreadCount = 5;
            final long testDurationMs = 200; // Run for 200ms
            final Thread[] readerThreads = new Thread[readerThreadCount];
            final java.util.List<Boolean>[] observations = new java.util.List[readerThreadCount];
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (1)
  5. src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java

        }
    
        @Test
        public void test_createErrorResponse_basic() {
            final Map<String, Object> response = chatApiManager.createErrorResponse("Something went wrong");
    
            assertEquals("error", response.get("status"));
            assertEquals("Something went wrong", response.get("message"));
        }
    
        @Test
        public void test_createErrorResponse_emptyMessage() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 14 01:39:16 GMT 2026
    - 35K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

        }
    
        @Test
        public void test_constructor_withLongTypeAndMessage() {
            // Test constructor with long strings
            String type = "VeryLongTokenTypeNameForTestingPurposes";
            String message =
                    "This is a very long error message that describes in detail why the access token is invalid and what went wrong during validation";
            InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

            super.setUp(testInfo);
    
            // Create FessConfigImpl with overridden get method for testing
            fessConfig = new FessConfigImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public String get(String propertyKey) {
                    // Check system properties first (with prefix)
    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)
  8. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

                    return "all".equals(target);
                }
            });
    
            int count = crawlJob.getRunningJobCount();
            assertEquals(0, count);
        }
    
        // Test getRunningJobCount with wrong target
        @Test
        public void test_getRunningJobCount_wrongTarget() {
            // Skip this test - requires complex DB setup
            if (true)
                return;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

        @Test
        public void test_getTimeAdjustTimeMillisAsLong_values() {
            Long[] testValues = { 0L, 1L, -1L, 1000L, -1000L, 60000L, -60000L, 3600000L, -3600000L, Long.MAX_VALUE, Long.MIN_VALUE };
    
            for (Long value : testValues) {
                FessConfig testConfig = new FessConfig.SimpleImpl() {
                    private static final long serialVersionUID = 1L;
    
                    @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

        @Test
        public void test_setCrawlingExecutionInterval() {
            long interval = 100L; // Keep test intervals short
            dataIndexHelper.setCrawlingExecutionInterval(interval);
    
            try {
                Field field = DataIndexHelper.class.getDeclaredField("crawlingExecutionInterval");
                field.setAccessible(true);
                long actualInterval = (Long) field.get(dataIndexHelper);
    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)
Back to Top