Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for performanceTests (3.68 sec)

  1. .teamcity/src/main/kotlin/projects/StageProject.kt

                PartialTrigger(
                    "All Performance Tests for ${stage.stageName.stageName}",
                    "Stage_${stage.stageName.id}_PerformanceTests",
                    model,
                    performanceTests,
                )
            performanceTests.forEach { performanceTestTrigger ->
                // The space removal is necessary - otherwise it doesn't show
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/projects/PerformanceTestProject.kt

        )
    
    class ManuallySplitPerformanceTestProject(
        model: CIBuildModel,
        projectSpec: PerformanceTestProjectSpec,
        performanceTests: List<PerformanceTest>,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                    snapshotDependencies(performanceTestProject.performanceTests) {
                        if (type == PerformanceTestType.FLAKINESS_DETECTION) {
                            reuseBuilds = ReuseBuilds.NO
                        }
                    }
                    performanceTestProject.performanceTests.forEachIndexed { index, performanceTest ->
                        if (performanceTest.testProjects.isNotEmpty()) {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                                JvmCategory.MIN_VERSION,
                                QUICK_CROSS_VERSION_BUCKETS.size,
                            ),
                        ),
                    performanceTests = performanceRegressionTestCoverages,
                ),
                Stage(
                    StageName.READY_FOR_RELEASE,
                    trigger = Trigger.DAILY,
                    specificBuilds =
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/projects/CheckProject.kt

                stageTriggers.triggers.forEach(::buildType)
                subProject(stageProject)
    
                prevStage = stage
                previousPerformanceTestPasses.addAll(stageProject.performanceTests)
                previousCrossVersionTests.addAll(stageProject.crossVersionTests)
            }
    
            buildType(GitHubMergeQueueCheckPass(model))
    
            buildTypesOrder = buildTypes
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 3.9K bytes
    - Viewed (1)
  6. src/test/java/jcifs/smb1/util/MimeMapTest.java

                assertEquals("application/pdf", map.getMimeType("pdf"));
            }
        }
    
        @Nested
        @DisplayName("Performance and concurrency")
        class PerformanceTests {
    
            @Test
            @DisplayName("Should handle multiple lookups efficiently")
            void testMultipleLookups() throws IOException {
                // Test that multiple lookups work correctly
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/StageTriggers.kt

    ) {
        val triggers: List<BaseGradleBuildType>
    
        init {
            triggers = mutableListOf()
            val allDependencies =
                stageProject.specificBuildTypes + stageProject.performanceTests + stageProject.functionalTests + stageProject.docsTestTriggers
            triggers.add(StageTrigger(model, stage, prevStage, null, allDependencies))
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Jun 11 10:33:45 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

        description: String,
        tests: Map<String, List<Scenario>>,
    ): PerformanceTest {
        val descriptionWithMaybeBucketIndex =
            if (performanceTestCoverage.type == PerformanceTestType.FLAKINESS_DETECTION) {
                "$description - index $bucketIndex"
            } else {
                description
            }
        return PerformanceTest(
            model,
            stage,
            performanceTestCoverage,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 10 02:18:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java

                assertTrue(sizeInfo instanceof AllocInfo);
                assertTrue(fullSizeInfo instanceof AllocInfo);
            }
        }
    
        @Nested
        @DisplayName("Performance and Boundary Tests")
        class PerformanceTests {
    
            @Test
            @DisplayName("Should handle maximum values without overflow")
            void testMaximumValues() throws SMBProtocolDecodingException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/spnego/NegTokenInitTest.java

                );
            }
        }
    
        @Nested
        @DisplayName("Performance and Stability Tests")
        class PerformanceTests {
    
            @RepeatedTest(value = 10, name = "Repeated encoding/decoding stability test {currentRepetition}/{totalRepetitions}")
            @DisplayName("Encoding and decoding is stable across multiple iterations")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top