Search Options

Results per page
Sort
Preferred Languages
Advance

Results 341 - 350 of 439 for setaun (0.03 sec)

  1. src/test/java/jcifs/internal/smb2/lock/Smb2LockTest.java

    import jcifs.internal.util.SMBUtil;
    
    @DisplayName("Smb2Lock Test")
    class Smb2LockTest {
    
        private Smb2Lock lock;
        private byte[] buffer;
    
        @BeforeEach
        void setUp() {
            buffer = new byte[128];
        }
    
        @Nested
        @DisplayName("Constructor Tests")
        class ConstructorTests {
    
            @Test
            @DisplayName("Should create lock with valid parameters")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/RequestWithPathTest.java

     */
    @ExtendWith(MockitoExtension.class)
    class RequestWithPathTest {
    
        @Mock
        private RequestWithPath requestWithPath;
    
        private TestRequestWithPath testImplementation;
    
        @BeforeEach
        void setUp() {
            testImplementation = new TestRequestWithPath();
        }
    
        @Test
        @DisplayName("Test getPath returns correct path")
        void testGetPath() {
            // Test with mock
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponseTest.java

     */
    class NtTransQuerySecurityDescResponseTest {
    
        @Mock
        private Configuration mockConfig;
    
        private NtTransQuerySecurityDescResponse response;
    
        @BeforeEach
        void setUp() {
            MockitoAnnotations.openMocks(this);
            response = new NtTransQuerySecurityDescResponse(mockConfig);
        }
    
        @Test
        @DisplayName("Test constructor creates instance with null security descriptor")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java

            // Redistribute pending operations
            redistributePendingOperations(failedChannel);
    
            // Check if recovery is viable by testing if createTransport works
            // If createTransport returns null (no mock setup), remove immediately
            try {
                SmbTransport testTransport = manager.createTransport(failedChannel.getLocalInterface(), failedChannel.getRemoteInterface());
                if (testTransport == null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/CloserTest.java

    /**
     * Tests for {@link Closer}.
     *
     * @author Colin Decker
     */
    @NullUnmarked
    public class CloserTest extends TestCase {
    
      private TestSuppressor suppressor;
    
      @Override
      protected void setUp() throws Exception {
        suppressor = new TestSuppressor();
      }
    
      public void testNoExceptionsThrown() throws IOException {
        Closer closer = new Closer(suppressor);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java

        private static final String TEST_REMARK = "Test share remark";
        private static final int TEST_TYPE = 0x00000000; // Standard share type
    
        @BeforeEach
        void setUp() {
            shareInfo = new SmbShareInfo();
        }
    
        @Test
        @DisplayName("Test default constructor")
        void testDefaultConstructor() {
            // Verify default values
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java

            }
    
            void setThrowExceptionOnReadData(boolean value) {
                this.throwExceptionOnReadData = value;
            }
        }
    
        @BeforeEach
        void setUp() {
            MockitoAnnotations.openMocks(this);
            when(mockConfig.getMaximumBufferSize()).thenReturn(65535);
            when(mockConfig.getPid()).thenReturn(1234);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/RequestTest.java

        @Mock
        private CIFSContext context;
    
        @Mock
        private CommonServerMessageBlock disconnectRequest;
    
        @Mock
        private CommonServerMessageBlockRequest nextRequest;
    
        @BeforeEach
        void setUp() {
            // Reset mocks before each test
            reset(request, response, context, disconnectRequest, nextRequest);
        }
    
        @Test
        @DisplayName("Test initResponse returns initialized response")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  9. docs/bucket/lifecycle/README.md

    Enable object lifecycle configuration on buckets to setup automatic deletion of objects after a specified number of days or a specified date.
    
    ## 1. Prerequisites
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exec/Crawler.java

                logger.info("Destroyed LaContainer.");
            }
        }
    
        /**
         * Main processing method that coordinates the entire crawling workflow.
         * This method handles session setup, crawler initialization, crawling execution,
         * and cleanup operations.
         *
         * @param options parsed command-line options containing crawling configuration
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
Back to top