- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 89 for Scenario (0.4 sec)
-
android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java
private GeneratedMonitorTest( Method method, Scenario scenario, boolean fair, @Nullable Timeout timeout, Outcome expectedOutcome) { super(nameFor(method, scenario, fair, timeout, expectedOutcome)); this.method = method; this.scenario = scenario; this.timeout = timeout; this.expectedOutcome = expectedOutcome;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 27K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt
} }.map { PerformanceScenario(Scenario.fromTestId(configuration.testId), it.testProject) } } } data class PerformanceTestDuration( val scenario: Scenario, val durationInMs: Int, ) { fun toCsvLine() = "${scenario.className};${scenario.scenario}" } data class PerformanceScenario( val scenario: Scenario, val testProject: String, )
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 10 02:18:03 UTC 2025 - 16.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
"on ${os.asName()} (bucket $bucketIndex)", performanceSubProject = "performance", bucketIndex = bucketIndex, extraParameters = "--profiler $profiler --tests \"${performanceScenario.scenario.className}.${performanceScenario.scenario.scenario}\"",
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jul 29 03:24:58 UTC 2025 - 11.9K bytes - Viewed (0) -
.teamcity/performance-test-durations.json
[ { "scenario" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.clean checkout", "durations" : [ { "testProject" : "largeEmptyMultiProjectDeclarativeDsl", "linux" : 468 } ] }, { "scenario" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.cold daemon", "durations" : [ { "testProject" : "largeEmptyMultiProjectDeclarativeDsl", "linux" : 467 } ]
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Sep 08 06:58:31 UTC 2025 - 25.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
} /** * Test partial read scenario where parameters are not fully read */ @Test public void readBytesWireFormat_partialRead_doesNotSetFlags() { DummyResponse d = new DummyResponse(); byte[] tx = new byte[100]; d.txn_buf = tx; // Set up a partial read scenario d.bufParameterStart = 0; d.bufDataStart = 20;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/jcifs/SmbWatchHandleTest.java
} /** * Test watch() method returning empty list when buffer overflow */ @Test void testWatchBufferOverflow() throws CIFSException { // Setup mock behavior for buffer overflow scenario when(watchHandle.watch()).thenReturn(Collections.emptyList()); // Execute List<FileNotifyInformation> result = watchHandle.watch(); // Verify assertNotNull(result);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
} public void test_exceptionInComplexScenario() { // Test exception in a more complex scenario InvalidAccessTokenException exception = null; String expectedType = "Bearer"; String expectedMessage = "Token has expired"; // Simulate a token validation scenario boolean tokenValid = false; if (!tokenValid) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsFullSizeInformationTest.java
assertEquals(500L * sectorSize, fileFsFullSizeInfo.getFree()); } @Test @DisplayName("Should handle full disk scenario") void shouldHandleFullDiskScenario() throws SMBProtocolDecodingException { // Given - disk with no free space ByteBuffer buffer = ByteBuffer.allocate(32);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
assertTrue(populatedString.contains("requestedTime=1000000")); } public void test_complexScenario() { // Simulate a typical search result scenario // Page 2 of search results with 10 items per page searchRenderData.setPageSize(10); searchRenderData.setCurrentPageNumber(2); searchRenderData.setAllRecordCount(45L);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/ServerDataTest.java
} } /** * Test typical server configuration scenario */ @Test @DisplayName("Test typical server configuration scenario") public void testTypicalServerConfiguration() { // Given - typical SMB server configuration serverData.sflags = (byte) 0x98;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17K bytes - Viewed (0)