- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 7,342 for within (0.3 sec)
-
README.md
- **5-15% faster** type conversions with pattern matching and switch expressions - **Reduced memory allocation** in collection operations and bean copying - **Improved reflection performance** with cached descriptors and optimized field access - **Enhanced collection operations** with Java 21 sequenced collections support
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
// Test with null name String[] values = { "value1" }; RequestParameter param = new RequestParameter(null, values); assertNull(param.getName()); assertNotNull(param.getValues()); assertEquals(1, param.getValues().length); } public void test_constructor_withEmptyName() { // Test with empty name String name = "";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileEndOfFileInformationTest.java
} } @Test @DisplayName("Test decode with minimum buffer size") void testDecodeWithMinimumBuffer() throws SMBProtocolDecodingException { // Create buffer with exact size needed byte[] buffer = new byte[8]; long value = 42L; SMBUtil.writeInt8(value, buffer, 0); // Decode with minimum length int bytesRead = fileInfo.decode(buffer, 0, 8);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
import jcifs.internal.util.SMBUtil; /** * Test class for FsctlPipeWaitRequest */ class FsctlPipeWaitRequestTest { @Test @DisplayName("Test constructor with name only sets correct fields") void testConstructorWithNameOnly() { // Test with simple pipe name String pipeName = "TestPipe"; FsctlPipeWaitRequest request = new FsctlPipeWaitRequest(pipeName); // Verify size calculation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
// Test constructor with message only String message = "SSO authentication failed"; SsoProcessException exception = new SsoProcessException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withMessageAndCause() { // Test constructor with message and Exception cause
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvPairsTest.java
SMBUtil.writeInt2(0, result, 2); return result; } /** * Test decode with valid single AvPair followed by EOL */ @Test @DisplayName("Decode single AvPair with EOL") void testDecodeSinglePair() throws CIFSException { // Create test data: AvFlags with value 0x12345678 + EOL byte[] flagData = new byte[4]; SMBUtil.writeInt4(0x12345678, flagData, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
/** * Test AutoCloseable implementation */ @Test @DisplayName("Test AutoCloseable implementation with try-with-resources") public void testAutoCloseableImpl() { String testPassword = "AutoCloseablePass123!"; NtlmPasswordAuthenticator authRef; // Use try-with-resources try (NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("user", testPassword)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java
} @Test @DisplayName("Test with various file ID patterns") void testWithVariousFileIdPatterns() { // Test with all zeros byte[] zeroFileId = new byte[16]; Smb2CloseRequest zeroRequest = new Smb2CloseRequest(mockConfig, zeroFileId, testFileName); testFileIdInRequest(zeroRequest, zeroFileId); // Test with all ones byte[] onesFileId = new byte[16];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
docs/en/docs/tutorial/body-nested-models.md
But Python has a specific way to declare lists with internal types, or "type parameters": ### Import typing's `List` { #import-typings-list } In Python 3.9 and above you can use the standard `list` to declare these type annotations as we'll see below. 💡 But in Python versions before 3.9 (3.6 and above), you first need to import `List` from standard Python's `typing` module:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.3K bytes - Viewed (0) -
docs/en/docs/tutorial/sql-databases.md
### Read One Hero with `HeroPublic` { #read-one-hero-with-heropublic } We can **read** a single hero: {* ../../docs_src/sql_databases/tutorial002_an_py310.py ln[75:80] hl[77] *} ### Update a Hero with `HeroUpdate` { #update-a-hero-with-heroupdate } We can **update a hero**. For this we use an HTTP `PATCH` operation.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 15.4K bytes - Viewed (0)