- Sort Score
- Result 10 results
- Languages All
Results 1021 - 1030 of 7,682 for within (0.12 sec)
-
docs/en/docs/advanced/dataclasses.md
You can also combine `dataclasses` with other type annotations to make nested data structures. In some cases, you might still have to use Pydantic's version of `dataclasses`. For example, if you have errors with the automatically generated API documentation. In that case, you can simply swap the standard `dataclasses` with `pydantic.dataclasses`, which is a drop-in replacement:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
@Test @DisplayName("Test initProtocolVersions with strings") void testInitProtocolVersionsWithStrings() { config.initProtocolVersions("SMB202", "SMB311"); assertEquals(DialectVersion.SMB202, config.getMinimumVersion()); assertEquals(DialectVersion.SMB311, config.getMaximumVersion()); } @Test @DisplayName("Test initProtocolVersions with null/empty strings")Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UnicodeStringTest.java
assertNotNull(emptyUnicodeStringTrue.buffer, "Buffer should not be null for empty string with zterm"); assertEquals(1, emptyUnicodeStringTrue.buffer.length, "Buffer length should be 1 for empty string with zterm"); assertEquals(0, emptyUnicodeStringTrue.buffer[0], "Buffer should contain only zero for empty string with zterm"); // Test with an empty string and zterm = false
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
// ACE.toString() outputs "Inherited " with 1 space assertTrue(result.contains("Inherited")); assertTrue(result.contains("This folder, subfolders and files")); } @Test @DisplayName("Test appendCol helper method") void testAppendCol() { StringBuffer sb = new StringBuffer(); // Test with short string ace.appendCol(sb, "test", 10);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvRequestResumeKeyResponseTest.java
} } @Test @DisplayName("Test decode with non-zero buffer offset") void testDecodeWithOffset() throws SMBProtocolDecodingException { // Prepare test data with offset byte[] buffer = new byte[100]; int offset = 50; // Fill resume key at offset with test pattern for (int i = 0; i < 24; i++) { buffer[offset + i] = (byte) (0xFF - i);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
public void test_constructor_withNullMessage() { // Test with null message DataStoreException exception = new DataStoreException((String) null); assertNotNull(exception); assertNull(exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withNullCause() { // Test with null causeRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
docs/en/docs/index.md
If you don't want to include the `standard` optional dependencies, you can install with `pip install fastapi` instead of `pip install "fastapi[standard]"`. ### Without `fastapi-cloud-cli` { #without-fastapi-cloud-cli } If you want to install FastAPI with the standard dependencies but without the `fastapi-cloud-cli`, you can install with `pip install "fastapi[standard-no-fastapi-cloud-cli]"`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.3K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/TransportExceptionTest.java
// Test with null cause TransportException nullCauseException = new TransportException((Throwable) null); assertNull(nullCauseException.getCause()); } @Test @DisplayName("Test constructor with message and cause creates exception with both") public void testConstructorWithMessageAndCause() { // Create exception with both message and causeRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/Cache.java
public interface Cache<K, V> { /** * Returns the value associated with {@code key} in this cache, or {@code null} if there is no * cached value for {@code key}. * * @since 11.0 */ @CanIgnoreReturnValue // TODO(b/27479612): consider removing this? @Nullable V getIfPresent(@CompatibleWith("K") Object key); /** * Returns the value associated with {@code key} in this cache, obtaining that value from {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.3K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
4. **Backward Compatibility**: Must maintain compatibility with SMB2/SMB1 ### Mitigation Strategies 1. Implement features behind configuration flags 2. Provide graceful fallback mechanisms 3. Extensive testing with various server configurations 4. Phased rollout with beta testing ## Resource Requirements ### Development Team - 2-3 Senior Java developers with SMB protocol expertise - 1 QA engineer for test infrastructure
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0)