- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 220 for lowest (0.04 sec)
-
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
} } /** * Evict oldest leases based on LRU * * @param count number of leases to evict */ private void evictOldestLeases(int count) { if (count <= 0 || leases.isEmpty()) { return; } // Find oldest leases by last access time leases.entrySet() .stream()
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
// Execute corsHandlerFactory.add(origin, handler1); corsHandlerFactory.add(origin, handler2); // Verify - should have the latest handler CorsHandler result = corsHandlerFactory.get(origin); assertEquals(handler2, result); assertEquals("handler2", ((TestCorsHandler) result).getName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/config/SecurityConfigurationTest.java
assertEquals("LM compatibility should default to 3", 3, config.getLanManCompatibility()); // Verify maximum version supports latest SMB 3.1.1 assertEquals("Maximum version should be SMB 3.1.1", DialectVersion.SMB311, config.getMaximumVersion()); } /** * Test that SMB1 is disabled by default */ @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeRangeSet.java
* firstComplementRangeLowerBound is the first complement range lower bound inside * complementLowerBoundWindow. Complement range lower bounds are either positive range upper * bounds, or Cut.belowAll(). * * positiveItr starts at the first positive range with lower bound greater than * firstComplementRangeLowerBound. (Positive range lower bounds correspond to complement range * upper bounds.)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 32.3K bytes - Viewed (0) -
.github/workflows/codeql-analysis.yml
pull_request: # The branches below must be a subset of the branches above branches: [master] schedule: - cron: '0 11 * * 4' jobs: analyze: name: Analyze runs-on: ubuntu-latest strategy: fail-fast: false matrix: # Override automatic language detection by changing the below list # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Fri Oct 02 13:24:14 UTC 2020 - 2.5K bytes - Viewed (0) -
.github/workflows/maven.yml
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 602 bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingNavigableSet.java
@Override public @Nullable E lower(@ParametricNullness E e) { return delegate().lower(e); } /** * A sensible definition of {@link #lower} in terms of the {@code descendingIterator} method of * {@link #headSet(Object, boolean)}. If you override {@link #headSet(Object, boolean)}, you may * wish to override {@link #lower} to forward to this implementation. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
* Returns an empty list if no crawling information is found for the session. * * @param sessionId the session identifier to find the latest crawling parameters for * @return a list of CrawlingInfoParam entities from the latest session, or empty list if none found */ public List<CrawlingInfoParam> getLastCrawlingInfoParamList(final String sessionId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
README.md
# Guava: Google Core Libraries for Java [](https://github.com/google/guava/releases/latest) [](https://github.com/google/guava/actions/workflows/ci.yml) [](https://www.bestpractices.dev/projects/7197)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 05 15:30:14 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/webapp/js/help.js
setTimeout(function() { $searchButton.attr("disabled", false); }, 3000); return true; }); $(document).on("click touchend", function(e) { if (!$(e.target).closest("#searchOptions, [data-toggle='control-options']").length) { $("#searchOptions").removeClass("active"); } }); $("[data-toggle='control-options']").click(function(e) { e.preventDefault();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 2K bytes - Viewed (0)