Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for block_size_ (0.25 sec)

  1. cmd/admin-handlers.go

    		globalNotificationSys.ServiceFreeze(ctx, false)
    	}()
    
    	serial := r.Form.Get("serial") == "true"
    	blockSizeStr := r.Form.Get("blocksize")
    	fileSizeStr := r.Form.Get("filesize")
    
    	blockSize, err := strconv.ParseUint(blockSizeStr, 10, 64)
    	if err != nil {
    		blockSize = 4 * humanize.MiByte // default value
    	}
    
    	fileSize, err := strconv.ParseUint(fileSizeStr, 10, 64)
    	if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  2. src/archive/tar/reader_test.go

    	}, {
    		input: makeInput(FormatGNU, "",
    			makeSparseStrings(sparseDatas{{0, 1}, {2, 1}, {4, 1}, {6, 1}, {8, 1}, {10, 1}})...)[:blockSize],
    		wantErr: io.ErrUnexpectedEOF,
    	}, {
    		input: makeInput(FormatGNU, "",
    			makeSparseStrings(sparseDatas{{0, 1}, {2, 1}, {4, 1}, {6, 1}, {8, 1}, {10, 1}})...)[:3*blockSize/2],
    		wantErr: io.ErrUnexpectedEOF,
    	}, {
    		input: makeInput(FormatGNU, "",
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    	if replStatus != "" {
    		fi.Metadata[xhttp.AmzBucketReplicationStatus] = string(replStatus)
    	}
    	fi.Erasure.Algorithm = j.ErasureAlgorithm.String()
    	fi.Erasure.Index = j.ErasureIndex
    	fi.Erasure.BlockSize = j.ErasureBlockSize
    	fi.Erasure.DataBlocks = j.ErasureM
    	fi.Erasure.ParityBlocks = j.ErasureN
    	fi.Erasure.Distribution = make([]int, len(j.ErasureDist))
    	for i := range j.ErasureDist {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  4. cmd/xl-storage_test.go

    	const legacyJSON = `{"version":"1.0.1","format":"xl","stat":{"size":2016,"modTime":"2021-10-11T23:40:34.914361617Z"},"erasure":{"algorithm":"klauspost/reedsolomon/vandermonde","data":2,"parity":2,"blockSize":10485760,"index":2,"distribution":[2,3,4,1],"checksum":[{"name":"part.1","algorithm":"highwayhash256S"}]},"minio":{"release":"RELEASE.2019-12-30T05-45-39Z"},"meta":{"X-Minio-Internal-Server-Side-Encryption-Iv":"kInsJB/0yxyz/40ZI+lmQYJfZacDYqZsG...
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  5. cmd/erasure-healing.go

    	var erasure Erasure
    	if !latestMeta.Deleted && !latestMeta.IsRemote() {
    		// Initialize erasure coding
    		erasure, err = NewErasure(ctx, latestMeta.Erasure.DataBlocks,
    			latestMeta.Erasure.ParityBlocks, latestMeta.Erasure.BlockSize)
    		if err != nil {
    			return result, err
    		}
    	}
    
    	result.ObjectSize, err = latestMeta.ToObjectInfo(bucket, object, true).GetActualSize()
    	if err != nil {
    		return result, err
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg crypto/cipher, type Block interface { BlockSize, Decrypt, Encrypt }
    pkg crypto/cipher, type Block interface, BlockSize() int
    pkg crypto/cipher, type Block interface, Decrypt([]uint8, []uint8)
    pkg crypto/cipher, type Block interface, Encrypt([]uint8, []uint8)
    pkg crypto/cipher, type BlockMode interface { BlockSize, CryptBlocks }
    pkg crypto/cipher, type BlockMode interface, BlockSize() int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. doc/go1.17_spec.html

    	polar Point                   // polar and Point denote different types
    )
    
    type TreeNode struct {
    	left, right *TreeNode
    	value *Comparable
    }
    
    type Block interface {
    	BlockSize() int
    	Encrypt(src, dst []byte)
    	Decrypt(src, dst []byte)
    }
    </pre>
    
    <p>
    A defined type may have <a href="#Method_declarations">methods</a> associated with it.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  8. doc/go_spec.html

    	polar Point                   // polar and Point denote different types
    )
    
    type TreeNode struct {
    	left, right *TreeNode
    	value any
    }
    
    type Block interface {
    	BlockSize() int
    	Encrypt(src, dst []byte)
    	Decrypt(src, dst []byte)
    }
    </pre>
    
    <p>
    A defined type may have <a href="#Method_declarations">methods</a> associated with it.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg crypto, const SHA512 = 7
    pkg crypto/aes, const BlockSize = 16
    pkg crypto/des, const BlockSize = 8
    pkg crypto/dsa, const L1024N160 = 0
    pkg crypto/dsa, const L2048N224 = 1
    pkg crypto/dsa, const L2048N256 = 2
    pkg crypto/dsa, const L3072N256 = 3
    pkg crypto/hmac, func Equal([]uint8, []uint8) bool
    pkg crypto/md5, const BlockSize = 64
    pkg crypto/md5, const Size = 16
    pkg crypto/sha1, const BlockSize = 64
    pkg crypto/sha1, const Size = 20
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  10. api/go1.14.txt

    pkg go/doc, type Func struct, Examples []*Example
    pkg go/doc, type Package struct, Examples []*Example
    pkg go/doc, type Type struct, Examples []*Example
    pkg hash/maphash, func MakeSeed() Seed
    pkg hash/maphash, method (*Hash) BlockSize() int
    pkg hash/maphash, method (*Hash) Reset()
    pkg hash/maphash, method (*Hash) Seed() Seed
    pkg hash/maphash, method (*Hash) SetSeed(Seed)
    pkg hash/maphash, method (*Hash) Size() int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top