- Sort Score
- Result 10 results
- Languages All
Results 501 - 510 of 707 for 100s (0.01 sec)
-
src/test/java/jcifs/internal/smb1/com/SmbComCreateDirectoryTest.java
System.arraycopy(directoryName.getBytes(StandardCharsets.UTF_8), 0, expected, 1, directoryName.length()); expected[directoryName.length() + 1] = 0x00; // Null terminator byte[] dst = new byte[100]; int bytesWritten = smbCom.writeBytesWireFormat(dst, 0); assertEquals(expected.length, bytesWritten, "Number of bytes written should match expected length."); byte[] actual = new byte[bytesWritten];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
super(); } /** * Returns the path prefix for SMB1 URLs. * @return The path prefix. */ public String getPathPrefix() { final StringBuilder buf = new StringBuilder(100); buf.append("smb1://"); if (server != null) { buf.append(server); if (port > 0) { buf.append(':'); buf.append(port); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
Arrays.fill(salt, (byte) 0xFF); context = new PreauthIntegrityNegotiateContext(mockConfig, hashAlgos, salt); // Encode at position 100 int encoded = context.encode(buffer, 100); assertEquals(context.size(), encoded); // Verify salt is at correct position for (int i = 0; i < salt.length; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
guava/src/com/google/common/hash/Fingerprint2011.java
/** * Implementation of Geoff Pike's fingerprint2011 hash function. See {@link Hashing#fingerprint2011} * for information on the behaviour of the algorithm. * * <p>On Intel Core2 2.66, on 1000 bytes, fingerprint2011 takes 0.9 microseconds compared to * fingerprint at 4.0 microseconds and md5 at 4.5 microseconds. * * <p>Note to maintainers: This implementation relies on signed arithmetic being bit-wise equivalent
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessClientTest.java
notification.addNewIPAddress(InetAddress.getByName("192.168.1.101")); client.processNotification(notification); // Verify notification was delivered assertTrue(listener.waitForNotification(1000)); assertNotNull(listener.getLastNotification()); assertEquals(WitnessEventType.CLIENT_MOVE, listener.getLastNotification().getEventType()); client.close(); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
byte[] buffer = new byte[1000]; int numThreads = 10; Thread[] threads = new Thread[numThreads]; // When - multiple threads calling methods simultaneously for (int i = 0; i < numThreads; i++) { final int threadIndex = i; threads[i] = new Thread(() -> { for (int j = 0; j < 100; j++) { int offset = threadIndex * 10;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
protected String commandOutputEncoding = Charset.defaultCharset().displayName(); /** The maximum number of lines to buffer from command output. */ protected int maxOutputLine = 1000; /** Whether to redirect standard output to a file. */ protected boolean standardOutput = false; /** * Constructs a new CommandExtractor. */ public CommandExtractor() {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 16K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
/** * The number of URLs to fetch when polling. */ protected int pollingFetchSize = 1000; /** * The maximum size of the crawling queue. */ protected int maxCrawlingQueueSize = 100; /** * Creates a new instance of OpenSearchUrlQueueService. * @param crawlerConfig The crawler configuration. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17K bytes - Viewed (0) -
docs/de/docs/tutorial/security/oauth2-jwt.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 12.1K bytes - Viewed (0) -
docs/es/docs/tutorial/security/oauth2-jwt.md
Asegúrate de crear un [entorno virtual](../../virtual-environments.md){.internal-link target=_blank}, activarlo y luego instalar `pyjwt`: <div class="termy"> ```console $ pip install pyjwt ---> 100% ``` </div> /// info | Información Si planeas usar algoritmos de firma digital como RSA o ECDSA, deberías instalar la dependencia del paquete de criptografía `pyjwt[crypto]`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 10.9K bytes - Viewed (0)