- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 290 for masking (0.57 sec)
-
src/test/java/jcifs/SmbTransportTest.java
verify(smbTransport).getContext(); // Verify that the method was called } @Test void testUnwrap() { // Arrange SmbTransport mockUnwrappedTransport = smbTransport; // Mocking unwrap to return itself for simplicity when(smbTransport.unwrap(SmbTransport.class)).thenReturn(mockUnwrappedTransport); // Act SmbTransport result = smbTransport.unwrap(SmbTransport.class);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/LruHashSet.java
/** * The internal LRU hash map used to store elements. */ private final LruHashMap<E, Object> map; // Dummy value to associate with an Object in the backing Map private static final Object PRESENT = new Object(); /** * Creates a new {@link LruHashSet} with the specified limit size. * * @param limitSizeRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/FilenameExtractorEnhancedTest.java
final ExtractData result = filenameExtractor.getText(in, params); assertNotNull(result); assertEquals("", result.getContent()); } /** * Test extraction with missing RESOURCE_NAME_KEY in parameters. */ public void test_getText_withMissingResourceName() { final InputStream in = new ByteArrayInputStream(new byte[0]); final Map<String, String> params = new HashMap<>();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbException.java
* the user may recieve a different error from a legacy server than that of * a newer varient such as Windows NT and above. If you should encounter * such a case, please report it to jcifs at samba dot org and we will * change the mapping. */ public class SmbException extends IOException implements NtStatus, DosError, WinError { static String getMessageByCode(final int errcode) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java
* characters to their Alphabet equivalents, handling both single and double Katakana character combinations. * </p> * * <p> * The conversion process involves iterating through the input string, identifying Katakana characters, * and replacing them with their corresponding Alphabet representations based on the internal mapping.
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
/** The user's password has expired */ int NT_STATUS_PASSWORD_EXPIRED = 0xC0000071; /** The referenced account is currently disabled */ int NT_STATUS_ACCOUNT_DISABLED = 0xC0000072; /** No mapping between account names and security IDs was done */ int NT_STATUS_NONE_MAPPED = 0xC0000073; /** The security ID structure is invalid */ int NT_STATUS_INVALID_SID = 0xC0000078;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
* archived URLs. * * Please note that the value of this tag is considered a hint and not a * command. Even though search engine crawlers may consider this information * when making decisions, they may crawl pages marked "hourly" less * frequently than that, and they may crawl pages marked "yearly" more * frequently than that. Crawlers may periodically crawl pages markedRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/MIENameTest.java
Arguments.of("oid length exceeds buffer", new byte[] { 0x04, 0x01, 0x00, 0x10, 0x06 }, IllegalArgumentException.class), // Missing NAME_LEN (not enough bytes for 4-byte length) Arguments.of("missing NAME_LEN bytes", new byte[] { 0x04, 0x01, 0x00, (byte) der.length, der[0] }, IllegalArgumentException.class),
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SMBSignatureValidationExceptionTest.java
assertEquals(NtStatus.NT_STATUS_UNSUCCESSFUL, ex.getNtStatus(), "Status should default to unsuccessful for message+cause ctor"); } // Interaction: passing a mocked cause should not trigger interactions (nothing to call) @Test @DisplayName("Mocked cause: no interactions occur when stored as cause") void mockedCause_isStored_withoutInteraction() { // Arrange
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
fess-crawler/src/test/resources/org/codelibs/fess/crawler/helper/robots_malformed.txt
Disallow: /orphaned1/ Allow: /orphaned2/ # Case 2: Valid user-agent with various malformed directives User-agent: GoodBot Disallow: /admin/ InvalidDirective: some-value unknown-field: test Disallow /missing-colon Disallow: # empty value (should be treated as allowing all) Allow: /public/ Crawl-delay: invalid-number Crawl-delay: -10 Crawl-delay: 5.5 Crawl-delay: Allow: # empty value
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 2.6K bytes - Viewed (0)