Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for bindings (0.09 sec)

  1. src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java

            binding = DcerpcHandle.parseBinding(url);
            url = "smb1://" + binding.server + "/IPC$/" + binding.endpoint.substring(6);
    
            String params = "", server, address;
            server = (String) binding.getOption("server");
            if (server != null) {
                params += "&server=" + server;
            }
            address = (String) binding.getOption("address");
            if (server != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

    import org.lastaflute.di.core.factory.SingletonLaContainerFactory;
    
    import groovy.lang.Binding;
    import groovy.lang.GroovyClassLoader;
    import groovy.lang.GroovyShell;
    
    /**
     * Groovy script engine implementation that extends AbstractScriptEngine.
     * This class provides support for executing Groovy scripts with parameter binding
     * and DI container integration.
     */
    public class GroovyEngine extends AbstractScriptEngine {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java

        }
    
        @Test
        @DisplayName("Should handle session binding scenarios")
        void testSessionBindingScenarios() throws Exception {
            // Test both true and false session binding
            boolean[] bindingValues = { true, false };
    
            for (boolean binding : bindingValues) {
                // Given
                Smb2SessionSetupRequest req =
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  4. src/test/java/jcifs/dcerpc/DcerpcBindTest.java

                // Then
                assertNotNull(bindWithNullBinding, "Constructor should handle null binding");
                Field bindingField = DcerpcBind.class.getDeclaredField("binding");
                bindingField.setAccessible(true);
                assertNull(bindingField.get(bindWithNullBinding), "Binding should be null");
            }
        }
    
        @Nested
        @DisplayName("Opnum Tests")
        class OpnumTests {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  5. docs/smb3-features/03-multi-channel-design.md

    - **MS-SMB2 Section 3.3.5.15.12**: Channel Binding
    
    ## 3. Multi-Channel Architecture
    
    ### 3.1 Channel States
    ```java
    public enum ChannelState {
        DISCONNECTED(0),     // Not connected
        CONNECTING(1),       // Connection in progress
        AUTHENTICATING(2),   // Authentication in progress
        ESTABLISHED(3),      // Ready for use
        BINDING(4),         // Channel binding in progress
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.di.core.factory.SingletonLaContainerFactory;
    
    import groovy.lang.Binding;
    import groovy.lang.GroovyClassLoader;
    import groovy.lang.GroovyShell;
    
    public class AbstractDataStoreTest extends UnitFessTestCase {
        public AbstractDataStore dataStore;
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.1K bytes
    - Viewed (1)
  7. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

        }
    
        /**
         * Perform channel binding for a channel
         *
         * @param channel channel to bind
         * @throws IOException if binding fails
         */
        public void performChannelBinding(ChannelInfo channel) throws IOException {
            // MS-SMB2 3.2.4.1.6: Alternative Channel Creation
            // Channel binding requires SMB2_SESSION_FLAG_BINDING (0x01) in session setup
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/multichannel/ChannelState.java

        /**
         * Authentication in progress
         */
        AUTHENTICATING(2),
    
        /**
         * Channel is established and ready for use
         */
        ESTABLISHED(3),
    
        /**
         * Channel binding in progress
         */
        BINDING(4),
    
        /**
         * Channel is actively transferring data
         */
        ACTIVE(5),
    
        /**
         * Channel connection has failed
         */
        FAILED(6),
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/ntlmssp/av/AvChannelBindingsTest.java

    import static org.junit.jupiter.api.Assertions.assertNull;
    
    import org.junit.jupiter.api.Test;
    
    class AvChannelBindingsTest {
    
        /**
         * Test that the constructor correctly initializes with a valid channel binding hash.
         */
        @Test
        void testConstructorWithValidHash() {
            byte[] testHash = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08 };
            AvChannelBindings avChannelBindings = new AvChannelBindings(testHash);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.di.core.factory.SingletonLaContainerFactory;
    
    import groovy.lang.Binding;
    import groovy.lang.GroovyClassLoader;
    import groovy.lang.GroovyShell;
    
    public class DocBoostMatcherTest extends UnitFessTestCase {
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top