- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 396 for only (2.67 sec)
-
src/main/java/jcifs/util/SecureKeyManager.java
// Store in memory sessionKeys.put(sessionId, secretKey); rawKeys.put(sessionId, keyClone); // Track creation time for rotation (only for non-archived keys) if (!sessionId.contains(".v")) { keyCreationTimes.put(sessionId, System.currentTimeMillis()); keyVersions.putIfAbsent(sessionId, 0); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
log.debug("It appears we previously lost some credits"); } if (this.smb2 || this.getContext().getConfig().isUseSMB2OnlyNegotiation()) { log.debug("Using SMB2 only negotiation"); return negotiate2(null); } final SmbComNegotiate comNeg = new SmbComNegotiate(getContext().getConfig(), this.signingEnforced);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
if (userPager.id != null) { cb.query().docMeta().setId_Equal(userPager.id); } // TODO Long, Integer, String supported only. // setup condition cb.query().addOrderBy_Name_Asc(); // search } /** * Retrieves a list of all available users in the system.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/IpAddressUtil.java
} } else { currentStart = -1; currentLength = 0; } } // If longest sequence is only 1 zero, don't compress if (longestLength <= 1) { return String.join(":", normalized); } // Build compressed address final StringBuilder result = new StringBuilder();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 08:31:03 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryAdapterIteratorTest.java
assertEquals("file1.txt", result.getName()); assertFalse(iterator.hasNext(), "Should not have more elements"); // Verify delegate.next() was only called once verify(mockDelegate, times(1)).next(); } /** * Test constructor initializes correctly. */ @Test void testConstructorInitialization() { // Given
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplTest.java
// Next release goes below zero and throws RuntimeException ex = assertThrows(RuntimeCIFSException.class, session::release); assertTrue(ex.getMessage().contains("below zero")); // Only one transport release should have occurred verify(transport, times(1)).release(); } @Test @DisplayName("acquire after release reacquires transport") void testAcquireReacquiresTransport() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
if (elevateWordPager.id != null) { cb.query().docMeta().setId_Equal(elevateWordPager.id); } // TODO Long, Integer, String supported only. // setup condition cb.query().addOrderBy_SuggestWord_Asc(); // search } /** * Imports elevate words from a CSV file.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
/** * Utility for converting objects representing date and time to {@link Date}, {@link Calendar}, and {@link Timestamp}. * <p> * For objects representing only dates, use {@link DateConversionUtil}. For objects representing only time, see {@link TimeConversionUtil}. * </p> * <p> * If the source object is a {@link Date}, {@link Calendar}, or {@link Timestamp}, the converted object is created using their millisecond value.Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
break; } } /** * Builds role-based access control query filters to restrict search results based on user roles. * This method applies role-based filtering to ensure users only see documents they have access to. * * @param queryContext the query context to modify * @param searchRequestType the type of search request to determine role filtering requirements */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java
final String elementName = getElementName(localName, qName); if (URL_ELEMENT.equals(elementName)) { if (sitemapUrl != null) { // Only add sitemap URL if loc is not empty final String loc = sitemapUrl.getLoc(); if (loc != null && !loc.trim().isEmpty()) { sitemapSet.addSitemap(sitemapUrl);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 13:19:40 UTC 2025 - 34.9K bytes - Viewed (0)