Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 51 (0.03 sec)

  1. android/guava-tests/test/com/google/common/graph/AbstractStandardDirectedGraphTest.java

                EndpointPair.ordered(1, 4),
                EndpointPair.ordered(1, 3),
                EndpointPair.ordered(1, 2),
                EndpointPair.ordered(3, 1),
                EndpointPair.ordered(5, 1))
            .inOrder();
      }
    
      @Test
      public void stableIncidentEdgeOrder_adjacentNodes_returnsInConnectingEdgeInsertionOrder() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/AndXServerMessageBlockTest.java

            ServerMessageBlock.writeInt2(20, buf, 9); // byteCount for main block
    
            // At offset 50, the implementation writes andx.wordCount (0) to buffer
            // Then reads byteCount at offset 51
            ServerMessageBlock.writeInt2(20, buf, 51);
    
            int n = block.readAndXWireFormat(buf, 0);
            assertTrue(n > 0);
            assertTrue(next.received, "Chained SMB should be marked received");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/DES.java

                (byte) 49, (byte) 41, (byte) 33, (byte) 25, (byte) 17, (byte) 9, (byte) 1, (byte) 58, (byte) 50, (byte) 42, (byte) 34,
                (byte) 26, (byte) 18, (byte) 10, (byte) 2, (byte) 59, (byte) 51, (byte) 43, (byte) 35, (byte) 62, (byte) 54, (byte) 46,
                (byte) 38, (byte) 30, (byte) 22, (byte) 14, (byte) 6, (byte) 61, (byte) 53, (byte) 45, (byte) 37, (byte) 29, (byte) 21,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        // relative to headerStart
        private static final int PRIMARY_SETUP_OFFSET = 61;
        private static final int SECONDARY_PARAMETER_OFFSET = 51;
    
        private static final int DISCONNECT_TID = 0x01;
        private static final int ONE_WAY_TRANSACTION = 0x02;
    
        private static final int PADDING_SIZE = 2;
    
        private final int flags = 0x00;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java

            buffer[47] = 0x00;
            buffer[48] = 0x00;
    
            // Data displacement (2 bytes)
            buffer[49] = 0x00;
            buffer[50] = 0x00;
    
            // Setup count (1 byte)
            buffer[51] = 0x00;
    
            // Reserved (1 byte)
            buffer[52] = 0x00;
    
            // Byte count (2 bytes)
            buffer[53] = 0x00;
            buffer[54] = 0x00;
    
            // Test decode
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  6. cmd/apierrorcode_string.go

    	_ = x[ErrReplicationBandwidthLimitError-47]
    	_ = x[ErrBucketRemoteIdenticalToSource-48]
    	_ = x[ErrBucketRemoteAlreadyExists-49]
    	_ = x[ErrBucketRemoteLabelInUse-50]
    	_ = x[ErrBucketRemoteArnTypeInvalid-51]
    	_ = x[ErrBucketRemoteArnInvalid-52]
    	_ = x[ErrBucketRemoteRemoveDisallowed-53]
    	_ = x[ErrRemoteTargetNotVersionedError-54]
    	_ = x[ErrReplicationSourceNotVersionedError-55]
    	_ = x[ErrReplicationNeedsVersioningError-56]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  7. docs/SMB3_IMPLEMENTATION_PLAN.md

    ---
    
    ### Phase 5: RDMA (SMB Direct) Support
    **Priority: LOW** | **Estimated Effort: 8-10 weeks**
    
    RDMA provides high-speed, low-latency data transfer for supported network adapters.
    
    #### 5.1 Core RDMA Infrastructure
    ```
    Package: jcifs.internal.smb2.rdma
    ├── RdmaTransport.java           - RDMA transport implementation
    ├── RdmaCapability.java          - RDMA capability detection
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertEquals(ImmutableSet.of(), set.intersection(emptySet));
        assertEquals(ImmutableSet.of(), emptySet.intersection(set));
        assertEquals(
            ImmutableSet.of(),
            ContiguousSet.create(Range.closed(-5, -1), integers())
                .intersection(ContiguousSet.create(Range.open(3, 64), integers())));
      }
    
      public void testIntersection() {
        ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  9. go.mod

    	github.com/pkg/xattr v0.4.10
    	github.com/prometheus/client_golang v1.22.0
    	github.com/prometheus/client_model v0.6.2
    	github.com/prometheus/common v0.63.0
    	github.com/prometheus/procfs v0.16.1
    	github.com/puzpuzpuz/xsync/v3 v3.5.1
    	github.com/rabbitmq/amqp091-go v1.10.0
    	github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9
    	github.com/rs/cors v1.11.1
    	github.com/secure-io/sio-go v0.3.1
    	github.com/shirou/gopsutil/v3 v3.24.5
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertEquals(ImmutableSet.of(), set.intersection(emptySet));
        assertEquals(ImmutableSet.of(), emptySet.intersection(set));
        assertEquals(
            ImmutableSet.of(),
            ContiguousSet.create(Range.closed(-5, -1), integers())
                .intersection(ContiguousSet.create(Range.open(3, 64), integers())));
      }
    
      public void testIntersection() {
        ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
Back to top