- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 591 for State (0.02 sec)
-
src/test/java/jcifs/util/transport/TransportExceptionTest.java
public void testConstructorWithMessageAndCause() { // Create exception with both message and cause String message = "Transport error occurred"; IllegalStateException rootCause = new IllegalStateException("State error"); TransportException exception = new TransportException(message, rootCause); // Verify both message and cause are set correctly assertNotNull(exception);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/AssertionUtil.java
} } /** * Asserts that the state is not invalid. * * @param expression * The precondition. * @param description * The description of why the state is invalid. * @throws ClIllegalStateException * If {@code expression} is false. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java
void setUp() { buffer = new byte[1024]; // Initialize with a reasonable size ndrBuffer = new NdrBuffer(buffer, 0); } @Test void testConstructor() { // Verify initial state assertEquals(0, ndrBuffer.start); assertEquals(0, ndrBuffer.index); assertEquals(0, ndrBuffer.length); assertSame(ndrBuffer, ndrBuffer.deferred); assertSame(buffer, ndrBuffer.buf);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeConnectionTest.java
assertTrue(ex.getMessage().toLowerCase().contains("usage count")); } @Test @DisplayName("isConnected reflects underlying tree state") void isConnected_usesTree() { SmbTreeConnection c = newConn(); // No tree -> false assertFalse(c.isConnected()); SmbTreeImpl tree = mock(SmbTreeImpl.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/IteratorTester.java
* * <p>To use this class the concrete subclass must implement the {@link * IteratorTester#newTargetIterator()} method. This is because it's impossible to test an Iterator * without changing its state, so the tester needs a steady supply of fresh Iterators. * * <p>If your iterator supports modification through {@code remove()}, you may wish to override the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java
/** * Gets the file type. * * @return the fileType */ public final int getFileType() { return this.fileType; } /** * Gets the device state. * * @return the deviceState */ public final int getDeviceState() { return this.deviceState; } /** * Gets the action taken. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/ca/bs/BsUserCA.java
} public void setState_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setState_Terms("state", opLambda, null); } public void setState_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsUserCA> aggsLambda) { setState_Terms("state", opLambda, aggsLambda); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 212.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMaker.java
* operations. A partially-reclaimed entry is never exposed to the user. Any {@link Map.Entry} * instance retrieved from the map's {@linkplain Map#entrySet entry set} is a snapshot of that * entry's state at the time of retrieval; such entries do, however, support {@link * Map.Entry#setValue}, which simply calls {@link Map#put} on the entry's key. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
return buffer; } } @Nested @DisplayName("Integration Tests") class IntegrationTests { @Test @DisplayName("Should maintain state after multiple decodes") void testMultipleDecodes() throws SMBProtocolDecodingException { // First decode byte[] buffer1 = createValidCopyChunkResponse(1, 1024, 1024);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java
assertTrue(end - start >= 10); // Should wait for delay } public void test_setCrawlerRunning() { IntervalControlHelper helper = new IntervalControlHelper(); // Test default state assertTrue(helper.isCrawlerRunning()); // Test setting to false helper.setCrawlerRunning(false); assertFalse(helper.isCrawlerRunning()); // Test setting back to true
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.1K bytes - Viewed (0)