Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 116 for bindings (0.04 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. api/maven-api-di/src/main/java/org/apache/maven/api/di/Typed.java

     * Explicitly specifies the types that should be used for dependency injection.
     * <p>
     * This annotation allows you to limit which types of a bean should be available
     * for injection. It can be used to prevent unintended automatic binding of implemented
     * interfaces or extended classes.
     * <p>
     * Example usage:
     * <pre>
     * {@literal @}Typed(ServiceImpl.class)
     * public class ServiceImpl implements Service {
     *     // Implementation
     * }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jan 30 23:28:59 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. .gitattributes

    # Always check-out / check-in files with LF line endings.
    * text=auto eol=lf
    
    hack/verify-flags/known-flags.txt merge=union
    test/test_owners.csv merge=union
    
    **/zz_generated.*.go linguist-generated=true
    **/types.generated.go linguist-generated=true
    **/generated.pb.go linguist-generated=true
    **/generated.proto
    **/types_swagger_doc_generated.go linguist-generated=true
    api/openapi-spec/*.json linguist-generated=true
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Mon Oct 28 20:33:50 UTC 2024
    - 510 bytes
    - Viewed (0)
  4. 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)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RoutePlanner.kt

     * If the pool gains an eligible connection while DNS, TCP, or TLS work is in flight, this finder
     * will prefer pooled connections. Only pooled HTTP/2 connections are used for such de-duplication.
     *
     * It is possible to cancel the finding process by canceling its call.
     *
     * Implementations of this interface are not thread-safe. Each instance is thread-confined to the
     * thread executing the call.
     */
    interface RoutePlanner {
      val address: Address
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/HttpHeaders.java

       * Sec-Token-Binding}</a> header field name.
       *
       * @since 25.1
       */
      public static final String SEC_TOKEN_BINDING = "Sec-Token-Binding";
    
      /**
       * The HTTP <a href="https://datatracker.ietf.org/doc/html/draft-ietf-tokbind-ttrp">{@code
       * Sec-Provided-Token-Binding-ID}</a> header field name.
       *
       * @since 25.1
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K 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/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)
  9. 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)
  10. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            assertEquals("Pager", pagerCreator.getNameSuffix());
    
            // Verify instance def is SESSION
            assertEquals(InstanceDefFactory.SESSION, pagerCreator.getInstanceDef());
    
            // Verify auto binding def is NONE
            assertEquals(AutoBindingDefFactory.NONE, pagerCreator.getAutoBindingDef());
        }
    
        // Test getPagerCustomizer when no customizer is set
        public void test_getPagerCustomizer_null() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top