Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 109 for 512 (0.12 sec)

  1. src/archive/tar/reader_test.go

    		headers: []*Header{{
    			Name:     "sparse.db",
    			Typeflag: TypeReg,
    			Size:     1000,
    			ModTime:  time.Unix(0, 0),
    			PAXRecords: map[string]string{
    				"size":                "512",
    				"GNU.sparse.major":    "1",
    				"GNU.sparse.minor":    "0",
    				"GNU.sparse.realsize": "1000",
    				"GNU.sparse.name":     "sparse.db",
    			},
    			Format: FormatPAX,
    		}},
    	}, {
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Oct 03 15:48:09 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java

        @ValueSource(ints = { 0, 10, 50, 100 })
        @DisplayName("writeBytesWireFormat should work at different offsets")
        void testWriteBytesWireFormatAtDifferentOffsets(int offset) {
            byte[] buffer = new byte[512];
    
            int written = request.writeBytesWireFormat(buffer, offset);
    
            assertEquals(24, written);
            assertEquals(24, SMBUtil.readInt2(buffer, offset));
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg math/bits (darwin-arm64-cgo), const UintSize = 64
    pkg os (darwin-arm64), const DevNull = "/dev/null"
    pkg os (darwin-arm64), const O_APPEND = 8
    pkg os (darwin-arm64), const O_CREATE = 512
    pkg os (darwin-arm64), const O_EXCL = 2048
    pkg os (darwin-arm64), const O_SYNC = 128
    pkg os (darwin-arm64), const O_TRUNC = 1024
    pkg os (darwin-arm64), const PathListSeparator = 58
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            this.maxWriteSize =
                    Math.min(maxBufferSize - Smb2WriteRequest.OVERHEAD, Math.min(tc.getConfig().getSendBufferSize(), this.maxWriteSize)) & ~0x7;
            this.maxTransactSize = Math.min(maxBufferSize - 512, this.maxTransactSize) & ~0x7;
    
            return true;
        }
    
        private boolean checkNegotiateContexts(final Smb2NegotiateRequest req, final int caps) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/hash/HashTestUtils.java

        assertHashBytesThrowsCorrectExceptions(hashFunction);
        assertIndependentHashers(hashFunction);
        assertShortcutsAreEquivalent(hashFunction, 512);
      }
    
      static void assertHashByteBufferInvariants(HashFunction hashFunction) {
        assertHashByteBufferMatchesBytes(hashFunction);
        assertHashByteBufferExhaustsBuffer(hashFunction);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  6. api/go1.10.txt

    pkg debug/elf, const R_AARCH64_LD64_GOTOFF_LO15 R_AARCH64
    pkg debug/elf, const R_AARCH64_LD64_GOTPAGE_LO15 = 313
    pkg debug/elf, const R_AARCH64_LD64_GOTPAGE_LO15 R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSGD_ADR_PREL21 = 512
    pkg debug/elf, const R_AARCH64_TLSGD_ADR_PREL21 R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G0_NC = 516
    pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G0_NC R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G1 = 515
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/samr.java

        /** Account control bit flag: Server trust account */
        public static final int ACB_SVRTRUST = 256;
        /** Account control bit flag: Password does not expire */
        public static final int ACB_PWNOEXP = 512;
        /** Account control bit flag: Account is auto-locked */
        public static final int ACB_AUTOLOCK = 1024;
        /** Account control bit flag: Encrypted text password is allowed */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

        /** Account control bit flag: Server trust account */
        public static final int ACB_SVRTRUST = 256;
        /** Account control bit flag: Password does not expire */
        public static final int ACB_PWNOEXP = 512;
        /** Account control bit flag: Account is auto-locked */
        public static final int ACB_AUTOLOCK = 1024;
        /** Account control bit flag: Encrypted text password is allowed */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/audit/SecurityAuditLogger.java

            }
        }
    
        private StringBuilder getStringBuilder() {
            StringBuilder sb = stringBuilderPool.poll();
            if (sb == null) {
                sb = new StringBuilder(512); // Pre-allocate reasonable size
            } else {
                sb.setLength(0); // Reset length
            }
            return sb;
        }
    
        private void returnStringBuilder(StringBuilder sb) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  10. cmd/erasure-decode_test.go

    	{dataBlocks: 6, onDisks: 12, offDisks: 0, blocksize: int64(blockSizeV2), data: int64(2 * blockSizeV2), offset: 512, length: int64(blockSizeV2) + 8*1024, algorithm: DefaultBitrotAlgorithm, shouldFail: false, shouldFailQuorum: false},           // 30
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top