Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 182 for blockSize (0.28 sec)

  1. cmd/erasure-object.go

    	case size == 0:
    		buffer = make([]byte, 1) // Allocate at least a byte to reach EOF
    	case size >= fi.Erasure.BlockSize:
    		buffer = globalBytePoolCap.Load().Get()
    		defer globalBytePoolCap.Load().Put(buffer)
    	case size < fi.Erasure.BlockSize:
    		// No need to allocate fully blockSizeV1 buffer if the incoming data is smaller.
    		buffer = make([]byte, size, 2*size+int64(fi.Erasure.ParityBlocks+fi.Erasure.DataBlocks-1))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/policy_static.go

    				}
    
    				if !isNUMAAffinitiesEqual(initContainerBlock.NUMAAffinity, containerBlock.NUMAAffinity) {
    					continue
    				}
    
    				if initContainerBlock.Size > blockSize {
    					initContainerBlock.Size -= blockSize
    					blockSize = 0
    				} else {
    					blockSize -= initContainerBlock.Size
    					initContainerBlock.Size = 0
    				}
    			}
    
    			s.SetMemoryBlocks(podUID, initContainer.Name, initContainerBlocks)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/ippool-crd.yaml

                type: string
              metadata:
                type: object
              spec:
                description: IPPoolSpec contains the specification for an IPPool resource.
                properties:
                  blockSize:
                    description: The block size to use for IP address assignments from
                      this pool. Defaults to 26 for IPv4 and 112 for IPv6.
                    type: integer
                  cidr:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  4. src/image/jpeg/dct_test.go

    //		cos((π/2) * (2*x + 1) * u / 8) *
    //		cos((π/2) * (2*y + 1) * v / 8)
    //
    // x and y are in pixel space, and u and v are in transform space.
    //
    // b acts as both dst and src.
    func slowFDCT(b *block) {
    	var dst [blockSize]float64
    	for v := 0; v < 8; v++ {
    		for u := 0; u < 8; u++ {
    			sum := 0.0
    			for y := 0; y < 8; y++ {
    				for x := 0; x < 8; x++ {
    					sum += alpha(u) * alpha(v) * float64(b[8*y+x]) *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  5. src/hash/maphash/maphash.go

    		byte(x>>24),
    		byte(x>>32),
    		byte(x>>40),
    		byte(x>>48),
    		byte(x>>56))
    }
    
    // Size returns h's hash value size, 8 bytes.
    func (h *Hash) Size() int { return 8 }
    
    // BlockSize returns h's block size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/crypto/sha1/sha1_test.go

    	c := New()
    	if got := c.Size(); got != Size {
    		t.Errorf("Size = %d; want %d", got, Size)
    	}
    }
    
    func TestBlockSize(t *testing.T) {
    	c := New()
    	if got := c.BlockSize(); got != BlockSize {
    		t.Errorf("BlockSize = %d; want %d", got, BlockSize)
    	}
    }
    
    // Tests that blockGeneric (pure Go) and block (in assembly for some architectures) match.
    func TestBlockGeneric(t *testing.T) {
    	if boring.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  7. src/crypto/cipher/gcm.go

    	}
    
    	if cipher, ok := cipher.(gcmAble); ok {
    		return cipher.NewGCM(nonceSize, tagSize)
    	}
    
    	if cipher.BlockSize() != gcmBlockSize {
    		return nil, errors.New("cipher: NewGCM requires 128-bit block cipher")
    	}
    
    	var key [gcmBlockSize]byte
    	cipher.Encrypt(key[:], key[:])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/aes.go

    		C._goboringcrypto_AES_set_encrypt_key((*C.uint8_t)(unsafe.Pointer(&c.key[0])), C.uint(8*len(c.key)), &c.enc) != 0 {
    		return nil, aesKeySizeError(len(key))
    	}
    	return c, nil
    }
    
    func (c *aesCipher) BlockSize() int { return aesBlockSize }
    
    func (c *aesCipher) Encrypt(dst, src []byte) {
    	if inexactOverlap(dst, src) {
    		panic("crypto/cipher: invalid buffer overlap")
    	}
    	if len(src) < aesBlockSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	for s.Scan() {
    		line := strings.TrimSpace(s.Text())
    
    		if isSpaceOrComment(line) {
    			continue
    		}
    
    		if isMemoryMapSentinel(line) {
    			break
    		}
    
    		value, blocksize, addrs, err := parseHeapSample(line, p.Period, sampling, hasAlloc)
    		if err != nil {
    			return nil, err
    		}
    
    		var sloc []*Location
    		for _, addr := range addrs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  10. docs/debugging/xl-meta/main.go

    func shardSize(blockSize, dataBlocks int) (sz int) {
    	if dataBlocks == 0 {
    		// do nothing on invalid input
    		return
    	}
    	// Make denominator positive
    	if dataBlocks < 0 {
    		blockSize = -blockSize
    		dataBlocks = -dataBlocks
    	}
    	sz = blockSize / dataBlocks
    	if blockSize > 0 && blockSize%dataBlocks != 0 {
    		sz++
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top