Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 474 for wong (0.19 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/ds/callback/IndexUpdateCallbackTest.java

                private long docCount = 0;
    
                @Override
                public void store(DataStoreParams paramMap, Map<String, Object> dataMap) {
                    docCount++;
                }
    
                @Override
                public long getDocumentSize() {
                    return docCount;
                }
    
                @Override
                public long getExecuteTime() {
                    return 0L;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/util/MemoryUtil.java

         */
        public static String getMemoryUsageLog() {
            final Runtime runtime = Runtime.getRuntime();
            final long freeBytes = runtime.freeMemory();
            final long maxBytes = runtime.maxMemory();
            final long totalBytes = runtime.totalMemory();
            final long usedBytes = totalBytes - freeBytes;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  10. 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)
Back to Top