Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestOperation (0.05 sec)

  1. .github/workflows/cleanup-stale-performance-data.yml

                -u${{ env.PERFORMANCE_DB_USERNAME }} \
                -p${{ env.PERFORMANCE_DB_PASSWORD_TCAGENT }} \
                -h${{ env.DB_HOST }} \
                -e '
                USE results;
                DELETE FROM testOperation WHERE testExecution IN (SELECT id FROM testExecution WHERE startTime < NOW() - INTERVAL 365 DAY);
                DELETE FROM testExecution WHERE startTime < NOW() - INTERVAL 365 DAY;
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Nov 20 22:15:20 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/DelegatingConfigurationTest.java

        }
    
        @Test
        @DisplayName("Batch limit configuration should delegate correctly")
        void testBatchLimitDelegation() {
            // Given
            String operation = "TestOperation";
            when(mockDelegate.getBatchLimit(operation)).thenReturn(100);
    
            // When
            int batchLimit = delegatingConfig.getBatchLimit(operation);
    
            // Then
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
Back to top