- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 196 for 300s (0.01 sec)
-
src/main/java/jcifs/config/BaseConfiguration.java
protected int netbiosRevcBufferSize = 576; /** NetBIOS retry count */ protected int netbiosRetryCount = 2; /** NetBIOS retry timeout in milliseconds */ protected int netbiosRetryTimeout = 3000; /** NetBIOS scope identifier */ protected String netbiosScope; /** Local port for NetBIOS communications */ protected int netbiosLocalPort = 0; /** Local address for NetBIOS communications */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/ServerDataTest.java
serverData.securityMode = 0x0F; serverData.security = 1; serverData.maxNumberVcs = 1; serverData.maxRawSize = 65536; serverData.serverTimeZone = -300; serverData.encryptionKeyLength = 8; // Then assertEquals(0x12345678, serverData.sflags2); assertEquals(50, serverData.smaxMpxCount); assertEquals(65536, serverData.maxBufferSize);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17K bytes - Viewed (0) -
tests/group_by_test.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Jan 06 07:02:53 UTC 2022 - 3.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
SrvCopychunk[] chunks = new SrvCopychunk[chunkCount]; for (int i = 0; i < chunkCount; i++) { chunks[i] = new SrvCopychunk(i * 100, i * 200, i * 300); } SrvCopychunkCopy copy = new SrvCopychunkCopy(sourceKey, chunks); // When int size = copy.size(); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.1K bytes - Viewed (0) -
docs/bucket/replication/setup_2site_existing_replication.sh
remote_arn=$(./mc replicate ls sitea/bucket --json | jq -r .rule.Destination.Bucket) sleep 1 ./mc replicate resync start sitea/bucket/ --remote-bucket "${remote_arn}" sleep 30s ## sleep for 30s idea is that we give 300ms per object. ./mc ls -r --versions sitea/bucket >/tmp/sitea.txt ./mc ls -r --versions siteb/bucket >/tmp/siteb.txt out=$(diff -qpruN /tmp/sitea.txt /tmp/siteb.txt) ret=$? if [ $ret -ne 0 ]; then
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Sep 06 09:42:21 UTC 2024 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
int headerStart = 50; // Set structure size to 9 SMBUtil.writeInt2(9, buffer, bufferIndex); // Set buffer offset (relative to header start) SMBUtil.writeInt2(300, buffer, bufferIndex + 2); // Set buffer length SMBUtil.writeInt4(0, buffer, bufferIndex + 4); response = spy(response); when(response.getHeaderStart()).thenReturn(headerStart);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
src/test/java/jcifs/util/ResourceManagerTest.java
resourceManager.registerResource(resource); assertFalse(resource.isClosed()); // Wait for automatic cleanup to kick in Thread.sleep(300); // Perform cleanup resourceManager.performCleanup(); // Old resource should be auto-closed assertTrue(resource.isClosed()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocListTest.java
DocList docList = new DocList(); docList.addContentSize(100); assertEquals(100, docList.getContentSize()); docList.addContentSize(200); assertEquals(300, docList.getContentSize()); docList.addContentSize(50); assertEquals(350, docList.getContentSize()); } public void test_addProcessingTime_multiple() { DocList docList = new DocList();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
docs/security/tls_configuration_history.md
[OkHttp30]: https://square.github.io/okhttp/changelog_3x/#version-300 [OkHttp310]: https://square.github.io/okhttp/changelog_3x/#version-310 [OkHttp311]: https://square.github.io/okhttp/changelog_3x/#version-320 [OkHttp312]: https://square.github.io/okhttp/changelog_3x/#version-330
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 16:35:36 UTC 2022 - 9K bytes - Viewed (0) -
docs/pt/docs/tutorial/response-status-code.md
* Um caso especial é `204`, "Sem Conteúdo". Essa resposta é usada quando não há conteúdo para retornar ao cliente e, portanto, a resposta não deve ter um corpo. * **`300`** e acima são para "Redirecionamento". As respostas com esses códigos de status podem ou não ter um corpo, exceto `304`, "Não modificado", que não deve ter um.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.3K bytes - Viewed (0)