Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for 52 (0.01 sec)

  1. src/test/java/jcifs/internal/dfs/ReferralTest.java

            bb.putShort((short) 38);
            bb.putShort((short) 52);
    
            bb.position(22);
            bb.put("\\\\path".getBytes(StandardCharsets.UTF_16LE));
            bb.putShort((short) 0);
    
            bb.position(38);
            bb.put("\\\\alt".getBytes(StandardCharsets.UTF_16LE));
            bb.putShort((short) 0);
    
            bb.position(52);
            bb.put("NODE".getBytes(StandardCharsets.UTF_16LE));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 22K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java

            SMBUtil.writeInt2(0, buffer, offset); // Reserved
            offset += 2;
    
            SMBUtil.writeInt2(24, buffer, offset); // DataOffset (from start of context)
            offset += 2;
    
            SMBUtil.writeInt4(52, buffer, offset); // DataLength (32 standard + 20 directory-specific)
            offset += 4;
    
            // Write context name
            System.arraycopy(CONTEXT_NAME_BYTES, 0, buffer, offset, 4);
            offset += 4;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt

        hpackReader!!.readHeaders()
        assertThat(hpackReader!!.headerCount).isEqualTo(1)
        assertThat(hpackReader!!.dynamicTableByteCount).isEqualTo(52)
        val entry = hpackReader!!.dynamicTable[readerHeaderTableLength() - 1]!!
        checkEntry(entry, ":path", "www.example.com", 52)
      }
    
      /**
       * http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-12#appendix-C.2.1
       */
      @Test
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 38.6K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt

     * on what responses can be stored, and which requests can be satisfied by those stored responses.
     *
     * See [RFC 7234, 5.2](https://tools.ietf.org/html/rfc7234#section-5.2).
     */
    class CacheControl internal constructor(
      /**
       * In a response, this field's name "no-cache" is misleading. It doesn't prevent us from caching
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. cmd/apierrorcode_string.go

    	_ = 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)
  6. docs/SMB3_IMPLEMENTATION_PLAN.md

    ├── RdmaBuffer.java              - RDMA buffer management
    ├── RdmaChannel.java             - RDMA channel operations
    └── RdmaProvider.java            - RDMA provider abstraction
    ```
    
    #### 5.2 Implementation Tasks
    - [ ] Research Java RDMA libraries (e.g., DiSNI, JXIO)
    - [ ] Implement RDMA capability detection
    - [ ] Create RDMA negotiation context
    - [ ] Implement RDMA transport layer
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/SidResolverTest.java

                    .resolveSids(any(CIFSContext.class), anyString(), any(SID[].class), eq(5), anyInt());
    
            assertThrows(CIFSException.class, () -> sidResolver.resolveSids(mockContext, testServerName, testSids, 5, 2));
        }
    
        // Test getGroupMemberSids
        @Test
        void testGetGroupMemberSids_Success() throws CIFSException {
            SID[] expectedMembers = new SID[] { mockSid1, mockSid2 };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

            assertTrue(encrypted.length > plaintext.length, "Encrypted message should be larger than plaintext");
    
            // Verify transform header is present (first 52 bytes)
            assertTrue(encrypted.length >= 52, "Encrypted message should include transform header");
    
            // When - Decrypt
            byte[] decrypted = context.decryptMessage(encrypted);
    
            // Then - Verify decryption
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java

                assertEquals(24 + (24 * 2), bytesWritten);
    
                // Verify written structure
                assertEquals(48, SMBUtil.readInt2(buffer, 50)); // Structure size
                assertEquals(2, SMBUtil.readInt2(buffer, 52)); // Lock count
                assertArrayEquals(testFileId, Arrays.copyOfRange(buffer, 58, 74)); // File ID
            }
    
            @Test
            @DisplayName("Should handle lock request with all lock types")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  10. go.sum

    cloud.google.com/go/compute/metadata v0.6.0/go.mod h1:FjyFAW1MW0C203CEOMDTu3Dk1FlqW3Rga40jzHL4hfg=
    cloud.google.com/go/iam v1.5.2 h1:qgFRAGEmd8z6dJ/qyEchAuL9jpswyODjA2lS+w234g8=
    cloud.google.com/go/iam v1.5.2/go.mod h1:SE1vg0N81zQqLzQEwxL2WI6yhetBdbNQuTvIKCSkUHE=
    cloud.google.com/go/logging v1.13.0 h1:7j0HgAp0B94o1YRDqiqm26w4q1rDMH7XNRU34lJXHYc=
    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