Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for statistics (0.08 sec)

  1. src/main/java/org/codelibs/fess/exec/Crawler.java

            }
        }
    
        /**
         * Sends email notification with crawling results and statistics.
         * The email contains detailed information about the crawling session including
         * execution times, index sizes, and status information.
         *
         * @param infoMap map containing crawling session information and statistics
         */
        protected void sendMail(final Map<String, String> infoMap) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  2. src/test/java/jcifs/util/ResourceManagerTest.java

            resourceManager.performCleanup();
    
            // Old resource should be auto-closed
            assertTrue(resource.isClosed());
        }
    
        @Test
        @DisplayName("Test resource statistics")
        void testResourceStatistics() {
            TestResource resource1 = new TestResource("stat1");
            TestResource resource2 = new TestResource("stat2");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. docs/smb3-features/05-rdma-smb-direct-design.md

        
        // Should work even if RDMA provider is not available
        file.createNewFile();
        assertTrue(file.exists());
    }
    ```
    
    ## 8. Performance Monitoring
    
    ### 8.1 RDMA Statistics
    ```java
    public class RdmaStatistics {
        private final AtomicLong rdmaReads = new AtomicLong();
        private final AtomicLong rdmaWrites = new AtomicLong();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

     * may cause corruption or runtime errors if not. It may however be shared amongst multiple OkHttpClient
     * instances.
     *
     * ## Cache Optimization
     *
     * To measure cache effectiveness, this class tracks three statistics:
     *
     *  * **[Request Count:][requestCount]** the number of HTTP requests issued since this cache was
     *    created.
     *  * **[Network Count:][networkCount]** the number of those requests that required network use.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

    import org.opensearch.search.aggregations.bucket.terms.Terms.Bucket;
    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    
    /**
     * Helper class for managing crawling information and statistics.
     * Provides functionality to track crawling sessions, manage document expiration,
     * and handle crawling information storage and retrieval.
     */
    public class CrawlingInfoHelper {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  6. docs/smb3-features/06-witness-protocol-design.md

            // Validate notification signature/source
            return true;  // Simplified
        }
    }
    ```
    
    ## 11. Monitoring and Metrics
    
    ### 11.1 Witness Statistics
    ```java
    public class WitnessStatistics {
        private final AtomicLong registrationsActive = new AtomicLong();
        private final AtomicLong notificationsReceived = new AtomicLong();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/Constants.java

        public static final String USER_CODE = "userCode";
    
        /** Search query field name for logging. */
        public static final String SEARCH_FIELD_LOG_SEARCH_QUERY = "q";
    
        /** Statistics report type parameter name. */
        public static final String STATS_REPORT_TYPE = "reportType";
    
        /** Result document ID cache key. */
        public static final String RESULT_DOC_ID_CACHE = "resultDocIds";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/QueryResponseList.java

    import java.util.Map;
    
    /**
     * A response list that extends List functionality and includes pagination and search metadata.
     * This class wraps search results with pagination information, facet responses, and query statistics.
     * It implements the List interface to provide standard list operations while adding search-specific
     * functionality such as page navigation, record counts, and query execution times.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  9. docs/metrics/v3.md

    | `/cluster/health`        | Cluster health metrics.        |
    | `/cluster/iam`           | Cluster iam metrics.           |
    | `/cluster/usage/buckets` | Object statistics by bucket.   |
    | `/cluster/usage/objects` | Object statistics.             |
    
    #### `/cluster/config`
    
    | Name                                   | Description                                                  | Labels |
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  10. docs/smb3-features/01-smb3-lease-design.md

    ```java
    if (!context.getConfig().isUseLeases() || !session.supports(SMB3_0)) {
        // Fall back to traditional oplock mechanism
        useOplockInstead();
    }
    ```
    
    ## 11. Monitoring and Metrics
    
    ### 11.1 Lease Statistics
    ```java
    public class LeaseStatistics {
        private final AtomicLong leasesRequested = new AtomicLong();
        private final AtomicLong leasesGranted = new AtomicLong();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
Back to top