Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for statistics (0.17 sec)

  1. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         *   <li>Manages concurrent execution based on thread count limits</li>
         *   <li>Monitors thread completion and handles cleanup</li>
         *   <li>Records execution timing and statistics</li>
         * </ul>
         *
         * @param sessionId unique identifier for this crawling session
         * @param configList list of data configurations to crawl
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. cmd/metrics.go

    // It creates the Prometheus Description which is used
    // to define metric and  help string
    func newMinioCollector() *minioCollector {
    	return &minioCollector{
    		desc: prometheus.NewDesc("minio_stats", "Statistics exposed by MinIO server", nil, nil),
    	}
    }
    
    // minioCollector is the Custom Collector
    type minioCollector struct {
    	desc *prometheus.Desc
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. cmd/metrics-resource.go

    func newMinioResourceCollector(metricsGroups []*MetricsGroupV2) *minioResourceCollector {
    	return &minioResourceCollector{
    		metricsGroups: metricsGroups,
    		desc:          prometheus.NewDesc("minio_resource_stats", "Resource statistics exposed by MinIO server", nil, nil),
    	}
    }
    
    func prepareResourceMetrics(rm ResourceMetric, subSys MetricSubsystem, requireAvgMax bool) []MetricV2 {
    	help := resourceMetricsHelpMap[rm.Name]
    	name := rm.Name
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Mar 30 00:56:02 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/CacheBuilder.java

     *   <li>values automatically wrapped in {@code WeakReference} or {@code SoftReference}
     *   <li>notification of evicted (or otherwise removed) entries
     *   <li>accumulation of cache access statistics
     * </ul>
     *
     * <p>These features are all optional; caches can be created using all or none of them. By default,
     * cache instances created by {@code CacheBuilder} will not perform any type of eviction.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  5. docs/smb3-features/04-directory-leasing-design.md

            }
            
            // Fall back to direct server query
            return directory.performDirectEnumeration();
        }
    }
    ```
    
    ## 10. Monitoring and Metrics
    
    ### 10.1 Directory Cache Statistics
    ```java
    public class DirectoryCacheStatistics {
        private final AtomicLong cacheHits = new AtomicLong();
        private final AtomicLong cacheMisses = new AtomicLong();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  6. docs/smb3-features/02-persistent-handles-design.md

            
            // Wait for all reconnections
            CompletableFuture.allOf(futures.toArray(new CompletableFuture[0])).join();
        }
    }
    ```
    
    ## 11. Monitoring and Metrics
    
    ### 11.1 Handle Statistics
    ```java
    public class HandleStatistics {
        private final AtomicLong handlesRequested = new AtomicLong();
        private final AtomicLong handlesGranted = new AtomicLong();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  7. cmd/notification.go

    		}
    	}
    
    	replicationStats = append(replicationStats, bucketStatsMap)
    	return replicationStats
    }
    
    // GetClusterBucketStats - calls GetClusterBucketStats call on all peers for a cluster statistics view.
    func (sys *NotificationSys) GetClusterBucketStats(ctx context.Context, bucketName string) []BucketStats {
    	ng := WithNPeers(len(sys.peerClients)).WithRetries(1)
    	bucketStats := make([]BucketStats, len(sys.peerClients))
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

        }
    
        /**
         * Get key rotation metrics
         *
         * @return metrics map containing rotation statistics
         */
        public java.util.Map<String, Long> getKeyRotationMetrics() {
            java.util.Map<String, Long> metrics = new java.util.HashMap<>();
            metrics.put("totalRotations", totalKeyRotations.get());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  9. docs/smb3-features/03-multi-channel-design.md

        
        // Multi-channel should be faster
        assertTrue(multiChannelTime < singleChannelTime * 0.7);  // At least 30% improvement
    }
    ```
    
    ## 8. Performance Metrics
    
    ### 8.1 Channel Statistics
    ```java
    public class MultiChannelStatistics {
        private final Map<String, ChannelStatistics> channelStats;
        
        public class ChannelStatistics {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/SmbCircuitBreaker.java

        private final AtomicInteger consecutiveFailures = new AtomicInteger(0);
        private final AtomicInteger consecutiveSuccesses = new AtomicInteger(0);
    
        // Hystrix-style windowed statistics
        private final RollingWindow rollingWindow = new RollingWindow(10, 1000); // 10 buckets, 1 second each
    
        /**
         * Create a circuit breaker with default settings
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 33.4K bytes
    - Viewed (0)
Back to top