- Sort Score
- Result 10 results
- Languages All
Results 521 - 530 of 1,050 for three (0.03 sec)
-
src/main/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancer.java
} private ChannelInfo selectWithAffinity(CommonServerMessageBlock message, Collection<ChannelInfo> channels) { // Use file handle or tree ID for affinity long affinityKey = 0; // Use tree ID for SMB2 requests for affinity if (message instanceof ServerMessageBlock2Request) { ServerMessageBlock2Request smb2Request = (ServerMessageBlock2Request) message;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.2K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
// Determine handle type based on configuration and server capabilities if (tree.getSession().supports(SMB3_0) && config.isUsePersistentHandles()) { handleType = HandleType.PERSISTENT; } else if (tree.getSession().supports(SMB3_0)) { handleType = HandleType.DURABLE_V2; } else if (tree.getSession().supports(SMB2_1)) { handleType = HandleType.DURABLE_V1; } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java
if (andxOffset == 0) { /* Snap server workaround */ andxCommand = (byte) 0xFF; } /* * no point in calling readParameterWordsWireFormat if there are no more * parameter words. besides, win98 doesn't return "OptionalSupport" field */ if (wordCount > 2) { readParameterWordsWireFormat(buffer, bufferIndex + 4);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.9K bytes - Viewed (0) -
cmd/bucket-handlers_test.go
ExecObjectLayerAPIAnonTest(t, obj, "TestGetBucketLocationHandler", bucketName, "", instanceType, apiRouter, anonReq, getAnonReadOnlyBucketPolicy(bucketName)) // HTTP request for testing when `objectLayer` is set to `nil`. // There is no need to use an existing bucket and valid input for creating the request // since the `objectLayer==nil` check is performed before any other checks inside the handlers.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 39.8K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Priority.java
* Higher values indicate higher priority. When multiple implementations * of the same type exist in the container, the one with the highest * priority value will be selected for injection. * <p> * There are no predefined minimum or maximum values, but it's recommended * to use values that allow for future adjustments (e.g., using values * like 100, 200, 300 rather than consecutive numbers). *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
} @Test @DisplayName("Should get and set tree ID") void testTreeIdProperty() { assertEquals(0, testMessage.getTreeId()); testMessage.setTreeId(123); assertEquals(123, testMessage.getTreeId()); } @Test @DisplayName("Should propagate tree ID to chained message") void testTreeIdPropagation() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
$ cd awesome-project ``` </div> ## Create a Virtual Environment { #create-a-virtual-environment } When you start working on a Python project **for the first time**, create a virtual environment **<abbr title="there are other options, this is a simple guideline">inside your project</abbr>**. /// tip You only need to do this **once per project**, not every time you work. /// //// tab | `venv`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 22.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTest.kt
) failureConditions { // JavaExecDebugIntegrationTest.debug session fails without debugger might cause JVM crash // Some soak tests produce OOM exceptions // There are also random worker crashes for some tests. // We have test-retry to handle the crash in tests javaCrash = false } })
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 5.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/RangeMap.java
* least decide on a policy for when to use which. */ /** * Returns the value associated with the specified key, or {@code null} if there is no such value. * * <p>Specifically, if any range in this range map contains the specified key, the value * associated with that range is returned. */ @Nullable V get(K key); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* @param sids the array of SIDs to resolve * @param offset the starting offset in the array * @param length the number of SIDs to resolve * @throws IOException if there is an error resolving the SIDs */ static public void resolveSids(final String authorityServerName, final NtlmPasswordAuthentication auth, SID[] sids, final int offset, final int length) throws IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0)