- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 290 for Binding (0.05 sec)
-
src/test/java/jcifs/SmbTransportPoolTest.java
assertEquals(transport, result); verify(transportPool).getSmbTransport(context, address, DEFAULT_PORT, false, true); } @Test @DisplayName("Should get transport with local binding") void testGetSmbTransportWithLocalBinding() { // Given when(transportPool.getSmbTransport(context, address, DEFAULT_PORT, localAddr, LOCAL_PORT, TEST_HOST, false))
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransportPool.java
*/ SmbTransport getSmbTransport(CIFSContext tc, Address address, int port, boolean exclusive, boolean forceSigning); /** * Get transport connection, with local binding * * @param tc * context to use * @param address the server address * @param port the port number * @param localAddr the local address to bind to
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.5K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
#### 3.1 Core Multi-Channel Infrastructure ``` Package: jcifs.internal.smb2.multichannel ├── ChannelManager.java - Manage multiple channels per session ├── ChannelBinding.java - Channel binding and security ├── ChannelSequence.java - Request sequencing across channels ├── NetworkInterfaceInfo.java - Network interface discovery ├── ChannelLoadBalancer.java - Load distribution logic
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
final ServerMessageBlock2Request<Smb2SessionSetupResponse> req) { return new Smb2SessionSetupResponse(tc.getConfig()); } /** * Sets whether this request is for session binding * * @param sessionBinding * the sessionBinding to set */ public void setSessionBinding(final boolean sessionBinding) { this.sessionBinding = sessionBinding; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
public void test_fromClassNameToComponentName() { // Test with class name ending with Pager String componentName = namingConvention.fromClassNameToComponentName("com.example.TestPager"); assertNotNull(componentName); assertEquals("testPager", componentName); // Test with class name not ending with Pager
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* @return maximum channels per session */ int getMaxChannels(); /** * Channel binding policy * * Property {@code jcifs.smb.client.channelBindingPolicy} (String, default "preferred") * Values: "disabled", "preferred", "required" * * @return channel binding policy */ int getChannelBindingPolicy(); /** * Load balancing strategy for multi-channel
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
*/ protected boolean useMultiChannel; /** * Maximum number of SMB3 channels to establish per session */ protected int maxChannels; /** * Channel binding policy: -1=not set, 0=disabled, 1=preferred, 2=required */ protected int channelBindingPolicy = -1; // -1=not set, 0=disabled, 1=preferred, 2=required /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
- Fixed a regression preventing garbage collection of RBAC role and binding objects ([#90534](https://github.com/kubernetes/kubernetes/pull/90534), [@apelisse](https://github.com/apelisse)) [SIG Auth]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
CHANGELOG/CHANGELOG-1.13.md
- Clear pod binding cache on bind error to make sure stale pod binding cache will not be used. ([#71212](https://github.com/kubernetes/kubernetes/pull/71212), [@cofyc](https://github.com/cofyc))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 273.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.27.md
phase (Succeeded or Failed, depending on the exit statuses of the pod containers) to pods which are deleted while running. This fixes the issue for jobs using pod failure policy (with JobPodFailurePolicy and PodDisruptionConditions feature gates enabled) that their pods could get stuck in the pending phase when deleted.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jul 17 07:48:22 UTC 2024 - 466.3K bytes - Viewed (2)