- Sort Score
- Result 10 results
- Languages All
Results 2061 - 2070 of 2,758 for createId (0.04 sec)
-
src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java
*/ public static final int SMB2_SHARE_CAP_ASYMMETRIC = 0x80; private byte shareType; private int shareFlags; private int capabilities; private int maximalAccess; /** * Creates a new SMB2 tree connect response. * * @param config the CIFS configuration */ public Smb2TreeConnectResponse(final Configuration config) { super(config); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFilenameFilterTest.java
import org.junit.jupiter.params.provider.ValueSource; import org.mockito.Mock; import org.mockito.junit.jupiter.MockitoExtension; /** * Tests for SmbFilenameFilter interface behaviors via simple implementations. * Each test creates a concrete filter to validate expected contract semantics * including normal operation, null handling, edge cases, and exception flow. */ @ExtendWith(MockitoExtension.class) class SmbFilenameFilterTest { @Mock
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java
/** * A map of regular expression patterns to crawler clients. */ protected Map<Pattern, CrawlerClient> clientMap = new LinkedHashMap<>(); /** * Creates a new instance of CrawlerClientFactory. */ public CrawlerClientFactory() { // NOP } /** * Initializes the CrawlerClientFactory.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RegexRule.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/BasicFileInformationTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/UrlFilterServiceImpl.java
* {@link MemoryDataHelper} to store and manage the URL patterns in memory. * */ public class UrlFilterServiceImpl implements UrlFilterService { /** * Creates a new UrlFilterServiceImpl instance. */ public UrlFilterServiceImpl() { // NOP } /** * The memory data helper. */ @Resource
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/PreauthIntegrityService.java
* * @param sessionId the session identifier * @param salt the preauth salt from negotiation * @param hashAlgorithm the selected hash algorithm * @return the created context * @throws CIFSException if initialization fails */ public PreauthIntegrityContext initializeSession(String sessionId, byte[] salt, int hashAlgorithm) throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 12.1K bytes - Viewed (0) -
tests/helper_test.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Mar 19 03:50:28 UTC 2024 - 8K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceTest.java
assertEquals(currentTime - 1000, lastAccess, "Should return correct last access time"); assertEquals(currentTime - 2000, createTime, "Should return correct create time"); assertTrue(createTime <= lastAccess, "Create time should be before or equal to last access"); assertTrue(lastAccess <= lastModified, "Last access should be before or equal to last modified"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 35K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
// Mock the streams SmbPipeInputStream mockIn = mock(SmbPipeInputStream.class); SmbPipeOutputStream mockOut = mock(SmbPipeOutputStream.class); // Create spy and override getInput/getOutput SmbPipeHandleImpl spyHandle = spy(handle); doReturn(mockIn).when(spyHandle).getInput(); doReturn(mockOut).when(spyHandle).getOutput();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 16.7K bytes - Viewed (0)