Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for 51 (0.06 sec)

  1. docs/smb3-features/05-rdma-smb-direct-design.md

            return 65536;  // 64KB for TCP
        }
        
        @Override
        public void shutdown() {
            // Nothing to clean up for TCP
        }
    }
    ```
    
    ## 5. Integration with Existing Code
    
    ### 5.1 Transport Selection
    ```java
    // In SmbTransportPool.java
    public SmbTransport createTransport(CIFSContext context, 
                                       InetSocketAddress address) throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.29.md

    ### Removed
    - cloud.google.com/go/dataproc: v1.12.0
    - cloud.google.com/go/gaming: v1.9.0
    - github.com/blang/semver: [v3.5.1+incompatible](https://github.com/blang/semver/tree/v3.5.1)
    - github.com/jmespath/go-jmespath/internal/testify: [v1.5.1](https://github.com/jmespath/go-jmespath/internal/testify/tree/v1.5.1)
    - go.opentelemetry.io/otel/exporters/otlp/internal/retry: v1.10.0
    
    
    
    # v1.29.0-rc.2
    
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.32.md

    - github.com/hashicorp/errwrap: [v1.0.0](https://github.com/hashicorp/errwrap/tree/v1.0.0)
    - github.com/hashicorp/go-cleanhttp: [v0.5.1](https://github.com/hashicorp/go-cleanhttp/tree/v0.5.1)
    - github.com/hashicorp/go-immutable-radix: [v1.0.0](https://github.com/hashicorp/go-immutable-radix/tree/v1.0.0)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  4. docs/smb3-features/02-persistent-handles-design.md

        }
        
        public void shutdown() {
            scheduler.shutdown();
            persistHandles();  // Final persist before shutdown
        }
    }
    ```
    
    ## 5. Handle Reconnection Logic
    
    ### 5.1 Automatic Reconnection Handler
    ```java
    package jcifs.internal.smb2.persistent;
    
    import java.util.concurrent.CompletableFuture;
    import java.util.concurrent.TimeUnit;
    
    public class HandleReconnector {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    state courts of the State of California, with venue lying in Santa Clara
    County, California.
    
    
    
      The GNU General Public License (GPL) Version 2, June 1991
    
    Copyright (C) 1989, 1991 Free Software Foundation, Inc.
    51 Franklin Street, Fifth Floor
    Boston, MA 02110-1335
    USA
    
    Everyone is permitted to copy and distribute verbatim copies
    of this license document, but changing it is not allowed.
    
    Preamble
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/sql-databases.md

    ### Read Heroes { #read-heroes }
    
    We can **read** `Hero`s from the database using a `select()`. We can include a `limit` and `offset` to paginate the results.
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[48:55] hl[51:52,54] *}
    
    ### Read One Hero { #read-one-hero }
    
    We can **read** a single `Hero`.
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[58:63] hl[60] *}
    
    ### Delete a Hero { #delete-a-hero }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  7. docs/smb3-features/06-witness-protocol-design.md

        private int returnCode;
        
        public boolean isSuccess() { return returnCode == 0; }
        // Getters and setters...
    }
    ```
    
    ## 5. Integration with Existing Code
    
    ### 5.1 Session Integration
    ```java
    // In SmbSession.java
    private WitnessClient witnessClient;
    private boolean witnessEnabled;
    
    public void initializeWitnessSupport() {
        Configuration config = context.getConfig();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/PredicatesTest.java

      }
    
      public void testIn_equality() {
        Collection<Integer> nums = ImmutableSet.of(1, 5);
        Collection<Integer> sameOrder = ImmutableSet.of(1, 5);
        Collection<Integer> differentOrder = ImmutableSet.of(5, 1);
        Collection<Integer> differentNums = ImmutableSet.of(1, 3, 5);
    
        new EqualsTester()
            .addEqualityGroup(
                Predicates.in(nums),
                Predicates.in(nums),
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 32.2K bytes
    - Viewed (0)
  9. docs/smb3-features/03-multi-channel-design.md

            
            // Try to establish a replacement channel
            manager.establishReplacementChannel();
        }
    }
    ```
    
    ## 5. Integration with Existing Code
    
    ### 5.1 Session Integration
    ```java
    // In SmbSession.java
    private ChannelManager channelManager;
    private boolean multiChannelSupported;
    
    public void negotiateMultiChannel() throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  10. go.sum

    github.com/prometheus/prometheus v0.303.0/go.mod h1:8PMRi+Fk1WzopMDeb0/6hbNs9nV6zgySkU/zds5Lu3o=
    github.com/puzpuzpuz/xsync/v3 v3.5.1 h1:GJYJZwO6IdxN/IKbneznS6yPkVC+c3zyY/j19c++5Fg=
    github.com/puzpuzpuz/xsync/v3 v3.5.1/go.mod h1:VjzYrABPabuM4KyBh1Ftq6u8nhwY5tBPKP9jpmh0nnA=
    github.com/rabbitmq/amqp091-go v1.10.0 h1:STpn5XsHlHGcecLmMFCtg7mqq0RnD+zFr4uzukfVhBw=
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 79.9K bytes
    - Viewed (0)
Back to top