Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 19 for mezery (0.04 seconds)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            public long used;
            /** Committed non-heap memory in bytes */
            public long committed;
            /** Maximum non-heap memory in bytes */
            public long max;
            /** The percentage of non-heap memory usage. */
            public short percent;
        }
    
        /**
         * Data transfer object representing JVM buffer pool statistics.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            // Test that constructor accepts Error as cause (verifies Throwable parameter change)
            String message = "SSO login failed due to memory error";
            OutOfMemoryError error = new OutOfMemoryError("Not enough memory for SSO login");
            SsoLoginException exception = new SsoLoginException(message, error);
    
            assertEquals(message, exception.getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

            // Test that constructor accepts Error as cause (verifies Throwable parameter change)
            String message = "SSO process failed due to OutOfMemoryError";
            OutOfMemoryError error = new OutOfMemoryError("Insufficient memory for SSO processing");
            SsoProcessException exception = new SsoProcessException(message, error);
    
            assertEquals(message, exception.getMessage());
            assertNotNull(exception.getCause());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            searchEngineClient = new SearchEngineClient() {
                @Override
                public long deleteByQuery(String index, QueryBuilder query) {
                    throw new OutOfMemoryError("Out of memory");
                }
            };
            ComponentUtil.register(searchEngineClient, "searchEngineClient");
    
            // OutOfMemoryError is an Error, not Exception, so it will not be caught
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/MemoryUtilTest.java

            // Create some objects to change memory usage
            @SuppressWarnings("unused")
            String[] largeArray = new String[1000];
            for (int i = 0; i < 1000; i++) {
                largeArray[i] = "test" + i;
            }
    
            long memory2 = MemoryUtil.getUsedMemory();
            assertTrue(memory2 >= 0);
            // Memory usage should have changed (though we can't guarantee direction due to GC)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            // Test Error with abort flag
            String url = "http://example.com/critical-resource";
            String message = "Critical memory error during crawling";
            OutOfMemoryError error = new OutOfMemoryError("Cannot allocate memory");
    
            DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, error, true);
    
            assertEquals(url, exception.getUrl());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/chat/ChatSessionManager.java

    import jakarta.annotation.PostConstruct;
    import jakarta.annotation.PreDestroy;
    
    /**
     * Manager class for chat sessions.
     * Sessions are stored in memory with automatic expiration.
     *
     * <p><b>Note:</b> Sessions are stored in a local in-memory ConcurrentHashMap.
     * In multi-instance deployments (e.g., behind a load balancer), sessions are
     * not shared between instances. Use sticky sessions or an external session
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

            }
            return response.getStatus().getStatus();
        }
    
        /**
         * Calculates the memory size of a document data map.
         * This is useful for monitoring memory usage during indexing operations.
         *
         * @param dataMap the document data as a map of field names to values
         * @return the estimated memory size in bytes
         */
        public long calculateDocumentSize(final Map<String, Object> dataMap) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 26.1K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java

            // This verifies the change from Exception to Throwable parameter
            String message = "Thumbnail generation failed due to OutOfMemoryError";
            Error error = new OutOfMemoryError("Not enough memory");
            ThumbnailGenerationException exception = new ThumbnailGenerationException(message, error);
    
            assertEquals(message, exception.getMessage());
            assertNotNull(exception.getCause());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  10. LICENSE

          represent, as a whole, an original work of authorship. For the purposes
          of this License, Derivative Works shall not include works that remain
          separable from, or merely link (or bind by name) to the interfaces of,
          the Work and Derivative Works thereof.
    
          "Contribution" shall mean any work of authorship, including
    Created: Wed Apr 01 00:11:11 GMT 2026
    - Last Modified: Thu Feb 20 19:53:57 GMT 2020
    - 11.1K bytes
    - Click Count (0)
Back to Top