Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 182 for blockSize (0.16 sec)

  1. src/main/java/jcifs/smb/SmbFileInputStream.java

                int type = this.file.getType();
                int r, n;
                int blockSize = ( type == SmbConstants.TYPE_FILESYSTEM ) ? this.readSizeFile : this.readSize;
                do {
                    r = len > blockSize ? blockSize : len;
    
                    if ( log.isTraceEnabled() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 08:55:14 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]int8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]int8
    	Geniv       [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]int8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]int8
    	Geniv       [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. cmd/xl-storage-format_test.go

    	}
    	if unMarshalXLMeta.Erasure.BlockSize != jsoniterXLMeta.Erasure.BlockSize {
    		t.Errorf("Expected the erasure block size to be %v, but got %v.", unMarshalXLMeta.Erasure.BlockSize, jsoniterXLMeta.Erasure.BlockSize)
    	}
    	if unMarshalXLMeta.Erasure.Index != jsoniterXLMeta.Erasure.Index {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]int8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]int8
    	Geniv       [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]int8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]int8
    	Geniv       [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]int8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]int8
    	Geniv       [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/KotlinStdlibFileInterceptors.java

        @StaticMethod(ofClass = FilesKt.class)
        public static void intercept_forEachBlock(
            File self,
            int blockSize,
            Function2<?, ?, ?> action,
            @CallerClassName String consumer
        ) {
            Instrumented.fileOpened(self, consumer);
            FilesKt.forEachBlock(self, blockSize, Cast.uncheckedNonnullCast(action));
        }
    
        @InterceptCalls
        @StaticMethod(ofClass = FilesKt.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. src/crypto/aes/gcm_s390x.go

    // details.
    func (g *gcmAsm) Seal(dst, nonce, plaintext, data []byte) []byte {
    	if len(nonce) != g.nonceSize {
    		panic("crypto/cipher: incorrect nonce length given to GCM")
    	}
    	if uint64(len(plaintext)) > ((1<<32)-2)*BlockSize {
    		panic("crypto/cipher: message too large for GCM")
    	}
    
    	ret, out := sliceForAppend(dst, len(plaintext)+g.tagSize)
    	if alias.InexactOverlap(out[:len(plaintext)], plaintext) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/crypto/sha512/sha512.go

    	// Size256 is the size, in bytes, of a SHA-512/256 checksum.
    	Size256 = 32
    
    	// Size384 is the size, in bytes, of a SHA-384 checksum.
    	Size384 = 48
    
    	// BlockSize is the block size, in bytes, of the SHA-512/224,
    	// SHA-512/256, SHA-384 and SHA-512 hash functions.
    	BlockSize = 128
    )
    
    const (
    	chunk     = 128
    	init0     = 0x6a09e667f3bcc908
    	init1     = 0xbb67ae8584caa73b
    	init2     = 0x3c6ef372fe94f82b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top