- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 150 for tracked (0.15 sec)
-
src/test/java/jcifs/util/SmbCircuitBreakerTest.java
assertTrue(cbWithMetrics.getMinResponseTime() > 0, "Min response time should be tracked"); assertTrue(cbWithMetrics.getMaxResponseTime() > 0, "Max response time should be tracked"); assertTrue(cbWithMetrics.getP95ResponseTime() > 0, "P95 response time should be tracked");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
*/ @Size(max = 10) public String searchLog; /** * Enable or disable user information tracking. * When enabled, user information is stored and tracked. */ @Size(max = 10) public String userInfo; /** * Enable or disable user favorite functionality. * When enabled, users can save favorite search results. */ @Size(max = 10)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportPoolImplTest.java
SmbTransportImpl nonPooled = pool.getSmbTransport(ctx, address, 445, true); // Then: Pool should track pooled but not non-pooled assertTrue(pool.contains(pooled), "Pooled connection should be tracked"); assertFalse(pool.contains(nonPooled), "Non-pooled connection should not be tracked"); } @Test @DisplayName("Should create new connections when reuse conditions are not met")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 19.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
log(buf); } }); } /** * Records a statistics action for the specified crawler object. * * @param keyObj the crawler object being tracked * @param action the statistics action to record */ public void record(final Object keyObj, final StatsAction action) { record(keyObj, action.name().toLowerCase(Locale.ENGLISH)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/util/AuthenticationRateLimiterTest.java
// Verify that the rate limiter tracked some activity AuthenticationRateLimiter.RateLimiterStats stats = concurrentLimiter.getStats(); assertTrue(stats.getActiveAccounts() > 0 || stats.getActiveIps() > 0, "Should have tracked some activity"); } finally { concurrentLimiter.close(); } } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Handshake.kt
* handshakes. */ class Handshake internal constructor( /** * Returns the TLS version used for this connection. This value wasn't tracked prior to OkHttp * 3.0. For responses cached by preceding versions this returns [TlsVersion.SSL_3_0]. */ @get:JvmName("tlsVersion") val tlsVersion: TlsVersion, /** Returns the cipher suite used for the connection. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Apr 05 09:48:10 UTC 2025 - 6.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/ComparisonChain.java
* to produce warnings in that case, and we may change this method to do so in the future. Support * for raw {@code Comparable} types in Guava in general is tracked as <a * href="https://github.com/google/guava/issues/989">#989</a>.) * * @throws ClassCastException if the parameters are not mutually comparable */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
chain.load(user); if (users.indexOf(user) % 2 == 0) { chain.delete(user); } } // Verify all operations were tracked assertEquals(10, chain.updateCalls.size()); assertEquals(10, chain.changePasswordCalls.size()); assertEquals(10, chain.loadCalls.size()); assertEquals(5, chain.deleteCalls.size()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
} @Override public String toString() { return String.format( "PoolHealthMetrics[active=%d, nonPooled=%d, tracked=%d, max=%d, " + "healthChecks=%d, failed=%d, removed=%d, endpoints=%d, " + "healthCheckEnabled=%s, proactiveEnabled=%s, utilization=%.2f%%, successRate=%.2f%%]",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
cmd/http-tracer.go
op = strings.Replace(op, "ReadinessCheckHandler", "health.Readiness", 1) op = strings.Replace(op, "-fm", "", 1) return op } // If trace is enabled, execute the request if it is traced by other handlers // otherwise, generate a trace event with request information but no response. func httpTracerMiddleware(h http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 24 17:13:00 UTC 2024 - 6K bytes - Viewed (0)