Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2061 - 2070 of 2,758 for createId (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RegexRule.java

        protected boolean allRequired = true;
    
        /** Map of field names to regular expression patterns. */
        protected Map<String, Pattern> regexMap = new HashMap<>();
    
        /**
         * Creates a new RegexRule instance.
         */
        public RegexRule() {
            super();
        }
    
        /*
         * (non-Javadoc)
         *
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/fscc/BasicFileInformationTest.java

            };
    
            for (long[] times : timeValues) {
                // Given
                FileBasicInfo info = new FileBasicInfo(times[0], // create time
                        times[1], // last access time
                        times[2], // last write time
                        times[3], // change time
                        TEST_ATTRIBUTES);
    
                // When & Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. tests/helper_test.go

    					"Birthday", "CompanyID", "ManagerID", "Active")
    			}
    		} else if user.ManagerID != nil {
    			t.Errorf("Manager should not be created for zero value, got: %+v", user.ManagerID)
    		}
    	})
    
    	t.Run("Team", func(t *testing.T) {
    		if len(user.Team) != len(expect.Team) {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top