- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 88 for 3902 (0.02 sec)
-
docs/fr/docs/advanced/additional-responses.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 9.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/OsService.java
* <li>os/2: OS/2 variants</li> * <li>netware: Novell NetWare</li> * <li>dos: DOS variants</li> * <li>tandem: Tandem systems</li> * <li>openvms: OpenVMS</li> * <li>z/os: z/OS and OS/390</li> * <li>os/400: OS/400</li> * </ul> * * @since 4.0.0 */ @Experimental public interface OsService extends Service { /** * Returns the OS full name as reported by the system property "os.name".
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Feb 10 14:12:18 UTC 2025 - 3.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NetShareEnumResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
README.md
- **SMB1/CIFS**: Legacy support via `jcifs.smb1/` package - **SMB 2.0.2**: Windows Vista+ (0x0202) - **SMB 2.1**: Windows 7/Server 2008R2 (0x0210) - **SMB 3.0**: Windows 8/Server 2012 (0x0300) - AES-128-CCM encryption - **SMB 3.0.2**: Windows 8.1/Server 2012R2 (0x0302) - Enhanced encryption - **SMB 3.1.1**: Windows 10/Server 2016+ (0x0311) - AES-128-GCM + Pre-Auth Integrity **Protocol Selection:** - Default Range: SMB1 to SMB 3.1.1
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
docs/features/calls.md
If a conditional GET was successful, responses from the network and cache are merged as directed by the spec. ## Follow-up Requests When your requested URL has moved, the webserver will return a response code like `302` to indicate the document’s new URL. OkHttp will follow the redirect to retrieve a final response.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UUID.java
this.node = new byte[6]; this.node[0] = B(hex_to_bin(arr, 24, 2)); this.node[1] = B(hex_to_bin(arr, 26, 2)); this.node[2] = B(hex_to_bin(arr, 28, 2)); this.node[3] = B(hex_to_bin(arr, 30, 2)); this.node[4] = B(hex_to_bin(arr, 32, 2)); this.node[5] = B(hex_to_bin(arr, 34, 2)); } @Override public String toString() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java
// Should not throw any exception int bytesRead = response.readBytesWireFormat(validBuffer, 0); assertTrue(bytesRead > 0); assertEquals(0x0302, response.getDialectRevision()); // SMB 3.0.2 assertTrue(response.getMaxTransactSize() > 0); assertTrue(response.getMaxTransactSize() <= 16777216); // Within validated limits } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/DialectVersion.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallKotlinTest.kt
assertThat(suppressed).isNotSameAs(expected) } } } @Test fun responseRequestIsLastRedirect() { server.enqueue( MockResponse( code = 302, headers = headersOf("Location", "/b"), ), ) server.enqueue(MockResponse()) val request = Request(server.url("/")) val call = client.newCall(request)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 8.4K bytes - Viewed (0)