- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for manually (0.04 sec)
-
src/test/java/jcifs/dcerpc/UnicodeStringTest.java
UnicodeString manualUnicodeString = new UnicodeString(dummyRus, false); assertEquals("Testing", manualUnicodeString.toString(), "toString should work with manually set buffer and length (no zterm)"); // Test toString with a manually constructed UnicodeString with zterm rpc.unicode_string dummyRusZterm = new rpc.unicode_string(); dummyRusZterm.buffer = new short[] { 'Z', 't', 'e', 'r', 'm', 0 };
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnumTest.java
dfsEnumArray.s[0] = new DfsInfo200(); dfsEnumArray.s[0].dfs_name = "\\domain\share1"; dfsEnumArray.s[1] = new DfsInfo200(); dfsEnumArray.s[1].dfs_name = "\\domain\share2"; // Manually set the DfsEnumArray200 to the info struct dfsRootEnum.info.e = dfsEnumArray; // When FileEntry[] entries = dfsRootEnum.getEntries(); // Then
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java
@Test void testRoundTripEncodeDecodeForResponseType() throws Exception { // Create a properly formatted response message NdrBuffer buf = new NdrBuffer(new byte[1024], 0); // Manually encode a response header buf.enc_ndr_small(5); // RPC version buf.enc_ndr_small(0); // minor version buf.enc_ndr_small(2); // ptype = 2 (Response) buf.enc_ndr_small(0); // flagsRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
when(mockNameServiceClient.getNodeStatus(nbtAddress)).thenReturn(nodeStatusResponse); nbtAddress.calledName = NbtAddress.SMBSERVER_NAME; // Manually set for this test case assertEquals("ACTUAL_SERVER_NAME", nbtAddress.nextCalledName(mockContext)); verify(mockNameServiceClient).getNodeStatus(nbtAddress); } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvSingleHostTest.java
} /** * Test with customData and machineId that are not exactly 8 and 32 bytes respectively. * The constructor requires exact sizes, so we need to pad them manually. */ @Test void testAvSingleHostCustomDataMachineIdConstructor_ShorterInputs() { // Prepare padded arrays byte[] customData = new byte[8]; customData[0] = 0x01;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
} /** * Manually reset the circuit breaker to closed state */ public void reset() { log.info("[{}] Manually resetting circuit breaker to CLOSED", name); transitionTo(State.CLOSED); } /** * Manually trip the circuit breaker to open state */ public void trip() { log.info("[{}] Manually tripping circuit breaker to OPEN", name);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
.github/workflows/codeql-analysis.yml
# queries: ./path/to/local/query, your-org/your-repo/queries@main # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild uses: github/codeql-action/autobuild@v3 # âšī¸ Command-line programs to run using the OS shell. # đ https://git.io/JvXDlRegistered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 2.1K bytes - Viewed (0) -
README.md
 You can register crawling targets in the Admin UI on the (Web, File, Data Store) crawler configuration pages, and then start the Crawler manually on the [Scheduler page](https://fess.codelibs.org/15.3/admin/scheduler-guide.html). ## Migration from another search provider Please see [MIGRATION.md](MIGRATION.md). ## Data Store
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
src/test/java/jcifs/smb1/smb1/NetShareEnumResponseTest.java
* This test simulates a response with two share entries. */ @Test void testReadDataWireFormat() throws IOException { NetShareEnumResponse response = new NetShareEnumResponse(); // Manually set parameters that would be read by readParametersWireFormat response.numEntries = 2; byte[] params = { 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00 };Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0)