- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 50 for mezery (0.04 seconds)
-
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) -
src/packaging/common/systemd/fess.service
SuccessExitStatus=143 # Specifies the maximum file descriptor number that can be opened by this process LimitNOFILE=${packaging.os.max.open.files} # Specifies the maximum number of bytes of memory that may be locked into RAM # Set to "infinity" if you use the 'bootstrap.mlockall: true' option # in fess.yml and 'MAX_LOCKED_MEMORY=unlimited' in ${packaging.env.file} #LimitMEMLOCK=infinityCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 15 06:32:15 GMT 2023 - 1.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java
} private void appendJvmStats(final StringBuilder buf) { buf.append("\"jvm\":{"); final JvmStats jvmStats = JvmStats.jvmStats(); final Mem mem = jvmStats.getMem(); buf.append("\"memory\":{"); buf.append("\"heap\":{"); append(buf, "used", () -> mem.getHeapUsed().getBytes()).append(','); append(buf, "committed", () -> mem.getHeapCommitted().getBytes()).append(',');Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.8K bytes - Click Count (0) -
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) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
assertTrue(customException.getCause() instanceof FessSystemException); // Test with Error (not Exception) Throwable errorCause = new OutOfMemoryError("Out of memory"); GsaConfigException errorException = new GsaConfigException("GSA memory error", errorCause); assertNotNull(errorException); assertTrue(errorException.getCause() instanceof OutOfMemoryError); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.5K bytes - Click Count (0) -
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) -
src/main/webapp/js/admin/jquery-3.7.1.min.js
return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},ce.extend({Deferred:function(e){var o=[["notify","progress",ce.Callbacks("memory"),ce.Callbacks("memory"),2],["resolve","done",ce.Callbacks("once memory"),ce.Callbacks("once memory"),0,"resolved"],["reject","fail",ce.Callbacks("once memory"),ce.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a....
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:07:52 GMT 2024 - 85.5K bytes - Click Count (1) -
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) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
final ConstraintValidatorContext context = null; // Test basic patterns that should be valid String[] potentiallyValidCrons = { "0 0 * * * ?", // Every hour "0 */15 * * * ?", // Every 15 minutes "0 0 12 * * ?", // Daily at noon "0 15 10 ? * MON-FRI" // Weekdays at 10:15 }; // Test each pattern and see what actually worksCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/User.java
this.originalPassword = originalPassword; } public String getOriginalPassword() { return originalPassword; } /** * Clears the original password from memory. * Should be called after the password has been used for authentication or provisioning. */ public void clearOriginalPassword() { this.originalPassword = null; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 06:22:27 GMT 2026 - 4.1K bytes - Click Count (0)