- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 37 for statistics (0.05 sec)
-
src/test/java/jcifs/util/SimpleCircuitBreakerTest.java
} @Test @DisplayName("Test statistics toString") void testStatisticsToString() throws Exception { circuitBreaker.call(() -> "success"); SimpleCircuitBreaker.Statistics stats = circuitBreaker.getStatistics(); String str = stats.toString(); assertNotNull(str);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
/** * Helper class for managing crawler statistics and performance metrics. * This class provides functionality to track, record, and report statistics * about crawler operations including timing data, performance metrics, and * operational events. It uses an internal cache to maintain statistics * objects and provides methods to begin tracking, record events, and * finalize statistics collection. * */
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/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java
public JvmGcObj[] gc; /** JVM thread statistics */ public JvmThreadsObj threads; /** JVM class loading statistics */ public JvmClassesObj classes; /** JVM uptime in milliseconds */ public long uptime; } /** * Data transfer object representing JVM memory statistics. */ public static class JvmMemoryObj { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
this.statistics = statistics; this.maxRetries = maxRetries; this.retryDelayMs = retryDelayMs; } /** * Create error handler with default settings * * @param statistics statistics tracker */ public RdmaErrorHandler(RdmaStatistics statistics) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/util/SimpleCircuitBreaker.java
log.warn("Circuit breaker {} manually tripped", name); } } /** * Get circuit breaker statistics * * @return statistics */ public Statistics getStatistics() { return new Statistics(name, getState(), totalCalls.get(), totalSuccesses.get(), totalFailures.get(), rejectedCalls.get(), consecutiveFailures.get(), getSuccessRate());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
guava/src/com/google/common/math/PairedStatsAccumulator.java
} } else { sumOfProductsOfDeltas = NaN; } yStats.add(y); } /** * Adds the given statistics to the dataset, as if the individual values used to compute the * statistics had been added directly. */ public void addAll(PairedStats values) { if (values.count() == 0) { return; } xStats.addAll(values.xStats());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 10.4K bytes - Viewed (0) -
guava/src/com/google/common/math/PairedStats.java
} /** Returns the number of pairs in the dataset. */ public long count() { return xStats.count(); } /** Returns the statistics on the {@code x} values alone. */ public Stats xStats() { return xStats; } /** Returns the statistics on the {@code y} values alone. */ public Stats yStats() { return yStats; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 12.6K bytes - Viewed (0) -
guava/src/com/google/common/math/Stats.java
} /** * Returns statistics over a dataset containing the given values. * * @param values a series of values */ public static Stats of(double... values) { StatsAccumulator accumulator = new StatsAccumulator(); accumulator.addAll(values); return accumulator.snapshot(); } /** * Returns statistics over a dataset containing the given values. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
log.error("Error during resource cleanup", e); } }, cleanupInterval, cleanupInterval, TimeUnit.MILLISECONDS); } /** * Get resource statistics * * @return map of statistics */ public Map<String, Object> getStatistics() { long active = 0; long closed = 0; for (ResourceHolder holder : activeResources.values()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
// Cleanup scheduler private final ScheduledExecutorService cleanupScheduler; private final AtomicBoolean closed = new AtomicBoolean(false); // Statistics private final AtomicLong totalAttemptsBlocked = new AtomicLong(0); private final AtomicLong totalAccountsLocked = new AtomicLong(0); private final AtomicLong totalIpsBlocked = new AtomicLong(0); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0)