Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 729 for overlap (0.16 sec)

  1. doc/next/5-toolchain.md

    In Go 1.23, overhead should be in the single digit percentages.
    
    <!-- https://go.dev/issue/62737 , https://golang.org/cl/576681,  https://golang.org/cl/577615 -->
    The compiler in Go 1.23 can now overlap the stack frame slots of local variables
    accessed in disjoint regions of a function, which reduces stack usage
    for Go applications.
    
    <!-- https://go.dev/cl/577935 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/crypto/aes/cbc_ppc64x.go

    		panic("crypto/cipher: input not full blocks")
    	}
    	if len(dst) < len(src) {
    		panic("crypto/cipher: output smaller than input")
    	}
    	if alias.InexactOverlap(dst[:len(src)], src) {
    		panic("crypto/cipher: invalid buffer overlap")
    	}
    	if len(src) > 0 {
    		if x.enc == cbcEncrypt {
    			cryptBlocksChain(&src[0], &dst[0], len(src), &x.b.enc[0], &x.iv[0], x.enc, int(x.b.l)/4-1)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:31 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/crypto/cipher/cfb.go

    }
    
    func (x *cfb) XORKeyStream(dst, src []byte) {
    	if len(dst) < len(src) {
    		panic("crypto/cipher: output smaller than input")
    	}
    	if alias.InexactOverlap(dst[:len(src)], src) {
    		panic("crypto/cipher: invalid buffer overlap")
    	}
    	for len(src) > 0 {
    		if x.outUsed == len(x.out) {
    			x.b.Encrypt(x.out, x.next)
    			x.outUsed = 0
    		}
    
    		if x.decrypt {
    			// We can precompute a larger segment of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation.go

    				}
    				if _, exist := regionZoneSubZoneMap[region][zone]; exist {
    					if regionZoneSubZoneMap[region][zone]["*"] {
    						return fmt.Errorf("locality %s overlap with previous specified ones", locality)
    					}
    					if regionZoneSubZoneMap[region][zone][subZone] {
    						return fmt.Errorf("locality %s overlap with previous specified ones", locality)
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_prune.txt

    # This test makes sure workspace mode's handling of the module graph
    # is compatible with module pruning. The graph we load from either of
    # the workspace modules should be the same, even if their graphs
    # don't overlap.
    #
    # This is the module graph in the test:
    #
    #  example.com/a -> example.com/b v1.0.0 -> example.com/q v1.1.0
    #  example.com/p -> example.com/q v1.0.0
    #
    # If we didn't load the whole graph and didn't load the dependencies of b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 14:30:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. src/net/http/pattern.go

    	switch r1 {
    	case equivalent:
    		return r2
    	case disjoint:
    		return disjoint
    	case overlaps:
    		if r2 == disjoint {
    			return disjoint
    		}
    		return overlaps
    	case moreGeneral, moreSpecific:
    		switch r2 {
    		case equivalent:
    			return r1
    		case inverseRelationship(r1):
    			return overlaps
    		default:
    			return r2
    		}
    	default:
    		panic(fmt.Sprintf("unknown relationship %q", r1))
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pkg/config/host/name.go

    // limitations under the License.
    
    package host
    
    import (
    	"strings"
    )
    
    // Name describes a (possibly wildcarded) hostname
    type Name string
    
    // Matches returns true if this hostname overlaps with the other hostname. Names overlap if:
    // - they're fully resolved (i.e. not wildcarded) and match exactly (i.e. an exact string match)
    // - one or both are wildcarded (e.g. "*.foo.com"), in which case we use wildcard resolution rules
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 16:25:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. src/crypto/cipher/gcm.go

    	// time, for a given key.
    	//
    	// To reuse plaintext's storage for the encrypted output, use plaintext[:0]
    	// as dst. Otherwise, the remaining capacity of dst must not overlap plaintext.
    	Seal(dst, nonce, plaintext, additionalData []byte) []byte
    
    	// Open decrypts and authenticates ciphertext, authenticates the
    	// additional data and, if successful, appends the resulting plaintext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/internal/bytealg/equal_ppc64x.s

    	MOVD	$0, R3		// Assume no-match in case BGELR CR6 returns
    	CMP	R5, $32		// Use overlapping VSX loads for len <= 32
    	BLE	check17_32	// Do a pair of overlapping VSR compares
    	CMP	R5, $64
    	BLE	check33_64	// Hybrid check + overlap compare.
    
    setup64:
    	SRD	$6, R5, R6	// number of 64 byte chunks to compare
    	MOVD	R6, CTR
    	MOVD	$16, R14	// index for VSX loads and stores
    	MOVD	$32, R15
    	MOVD	$48, R16
    	ANDCC	$0x3F, R5, R5	// len%64==0?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/runtime/mranges.go

    	return a.base.lessEqual(offAddr{addr}) && (offAddr{addr}).lessThan(a.limit)
    }
    
    // subtract takes the addrRange toPrune and cuts out any overlap with
    // from, then returns the new range. subtract assumes that a and b
    // either don't overlap at all, only overlap on one side, or are equal.
    // If b is strictly contained in a, thus forcing a split, it will throw.
    func (a addrRange) subtract(b addrRange) addrRange {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top