Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 343 for Binding (0.03 sec)

  1. src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java

            // Create a mock without calling the constructor
            DcerpcPipeHandle handle = mock(DcerpcPipeHandle.class);
    
            // Inject the binding using reflection
            Field bindingField = DcerpcHandle.class.getDeclaredField("binding");
            bindingField.setAccessible(true);
            bindingField.set(handle, mockDcerpcBinding);
    
            // Inject the CIFSContext using reflection
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Size(max = 1000)
        public String ldapBaseDn;
    
        /**
         * LDAP filter for finding user accounts.
         * Defines the search filter used to locate user accounts in LDAP.
         */
        @Size(max = 1000)
        public String ldapAccountFilter;
    
        /**
         * LDAP filter for finding groups.
         * Defines the search filter used to locate groups in LDAP.
         */
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

            return type().getLanguage();
        }
    
        /**
         * The type of main artifact produced by this packaging.
         */
        @Nonnull
        Type type();
    
        /**
         * Returns the binding to use specifically for this packaging keyed by lifecycle id.
         * This will be used instead of the default packaging definition.
         */
        @Nonnull
        Map<String, PluginContainer> plugins();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top