- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 350 for only (0.01 sec)
-
src/main/java/org/codelibs/fess/util/DocumentUtil.java
* This class provides static methods for extracting typed values from document maps, * URL encoding, and other document-related operations. It's designed as a final * utility class with only static methods. * */ public final class DocumentUtil { /** * Private constructor to prevent instantiation of this utility class. */ private DocumentUtil() {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImplTest.java
when(dataHelper.getAccessResultMap(sessionId)).thenReturn(accessResultMap); // Execute service.offerAll(sessionId, newUrlList); // Verify - only the new URL should be added, duplicate should be skipped assertEquals(2, existingQueue.size()); } public void test_offerAllWithDuplicatesInAccessResult() { // Setup
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
import javax.crypto.Cipher; import javax.crypto.ShortBufferException; import jcifs.CIFSContext; import jcifs.util.Crypto; import jcifs.util.Encdec; import jcifs.util.Strings; /** * Internal use only * * @author mbechler * * <p>This class is intended for internal use.</p> */ public final class NtlmUtil { /** * */ private NtlmUtil() { } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.idl
ACB_TRUSTED_FOR_DELEGATION = 0x00002000, /* 1 = Trusted for Delegation */ ACB_NOT_DELEGATED = 0x00004000, /* 1 = Not delegated */ ACB_USE_DES_KEY_ONLY = 0x00008000, /* 1 = Use DES key only */ ACB_DONT_REQUIRE_PREAUTH = 0x00010000 /* 1 = Preauth not required */ } SamrAcctFlags; [op(0x01)] int SamrCloseHandle([in] policy_handle *handle); [op(0x39)]
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java
} @Test @DisplayName("readParameterWordsWireFormat with a too-short buffer - throws exception") void testReadParameterWordsWithShortBuffer() { byte[] buffer = new byte[] { 0x00, 0x01, 0x02 }; // only three bytes assertThrows(ArrayIndexOutOfBoundsException.class, () -> response.readParameterWordsWireFormat(buffer, 0)); } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
* Contains the query string, query builder, sort criteria, and various metadata. */ public class QueryContext { /** Prefix for queries that search only in URL fields. */ protected static final String ALLINURL_FIELD_PREFIX = "allinurl:"; /** Prefix for queries that search only in title fields. */ protected static final String ALLINTITLE_FIELD_PREFIX = "allintitle:";Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorInternal.java
* @throws CIFSException if an error occurs during comparison */ boolean overlaps(SmbResourceLocator other) throws CIFSException; /** * Internal: for testing only * * @param dr the DFS referral data to process * @param reqPath the requested path to resolve * @return resolved unc path */ String handleDFSReferral(DfsReferralData dr, String reqPath);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleInternal.java
* @throws CIFSException if a general CIFS error occurs * @throws SmbException if an SMB-specific error occurs */ boolean areSignaturesActive() throws CIFSException; /** * Internal/testing use only * * @return attached session */ SmbSession getSession();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/CIFSUnsupportedCryptoExceptionTest.java
// Then assertSame(cause, exception.getCause(), "Crypto cause should be preserved"); assertEquals(cause.toString(), exception.getMessage(), "Message should be cause.toString() when only cause is provided"); } @Test @DisplayName("Message and cause constructor should preserve both crypto parameters") void testMessageAndCauseConstructor() { // GivenRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
} /** * Excludes properties with only whitespace from the operation. * * @return This instance itself */ public CopyOptions excludeWhitespace() { excludesWhitespace = true; return this; } /** * Specifies the prefix. * <p>Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 17.5K bytes - Viewed (0)