Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for tracked (3.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. api/maven-api-model/src/main/mdo/maven.mdo

      |
      | o i18n: would be good to be able to have names/descriptions/specifications
      |   in as many languages as possible. (see MNG-3626)
      |
      | o annotation mechanism so that changes to the model can be accurately tracked.
      |
      | o need to clean up all the descriptions, matching anything to the current project-descriptor.xml file and
      |   improving on that
      |
      | o use enums where appropriate (eg dependency scope)
      |
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

      written as a defaulted config.' ([#124480](https://github.com/kubernetes/kubernetes/pull/124480), [@neolit123](https://github.com/neolit123))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  10. docs/en/data/topic_repos.yml

    - name: slowapi
      html_url: https://github.com/laurentS/slowapi
      stars: 1580
      owner_login: laurentS
      owner_html_url: https://github.com/laurentS
    - name: coronavirus-tracker-api
      html_url: https://github.com/ExpDev07/coronavirus-tracker-api
      stars: 1578
      owner_login: ExpDev07
      owner_html_url: https://github.com/ExpDev07
    - name: fastapi-crudrouter
      html_url: https://github.com/awtkns/fastapi-crudrouter
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:57:41 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top