Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 729 for overlap (0.38 sec)

  1. src/crypto/aes/cipher.go

    		panic("crypto/aes: input not full block")
    	}
    	if len(dst) < BlockSize {
    		panic("crypto/aes: output not full block")
    	}
    	if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
    		panic("crypto/aes: invalid buffer overlap")
    	}
    	encryptBlockGo(c.enc[:c.l], dst, src)
    }
    
    func (c *aesCipher) Decrypt(dst, src []byte) {
    	if len(src) < BlockSize {
    		panic("crypto/aes: input not full block")
    	}
    	if len(dst) < BlockSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/sidecar-selector.yaml

    kind: Sidecar
    metadata:
      name: overlap-1
      namespace: default
    spec:
      workloadSelector:
        labels:
          app: ratings-app # Multiple sidecars select overlapping workloads, should generate errors for both
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: overlap-2
      namespace: default
    spec:
      workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. src/internal/bytealg/count_amd64.s

    	// Get the number of bytes to consider in the last 16 bytes
    	ANDQ $15, BX
    	JZ end
    
    	// Create mask to ignore overlap between previous 16 byte block
    	// and the next.
    	MOVQ $16,CX
    	SUBQ BX, CX
    	MOVQ $0xFFFF, R10
    	SARQ CL, R10
    	SALQ CL, R10
    
    	// Process the last 16-byte chunk. This chunk may overlap with the
    	// chunks we've already searched so we need to mask part of it.
    	MOVOU	(AX), X1
    	PCMPEQB	X0, X1
    	PMOVMSKB X1, DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:54:43 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/crypto/rc4/rc4.go

    	c.i, c.j = 0, 0
    }
    
    // XORKeyStream sets dst to the result of XORing src with the key stream.
    // Dst and src must overlap entirely or not at all.
    func (c *Cipher) XORKeyStream(dst, src []byte) {
    	if len(src) == 0 {
    		return
    	}
    	if alias.InexactOverlap(dst[:len(src)], src) {
    		panic("crypto/rc4: invalid buffer overlap")
    	}
    	i, j := c.i, c.j
    	_ = dst[len(src)-1]
    	dst = dst[:len(src)] // eliminate bounds check from loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue51607.go

    // license that can be found in the LICENSE file.
    
    package p
    
    // Interface types must be ignored during overlap test.
    
    type (
    	T1 interface{int}
    	T2 interface{~int}
    	T3 interface{T1 | bool | string}
    	T4 interface{T2 | ~bool | ~string}
    )
    
    type (
    	// overlap errors for non-interface terms
    	// (like the interface terms, but explicitly inlined)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go

    	ret, out := sliceForAppend(dst, len(plaintext)+poly1305.TagSize)
    	ciphertext, tag := out[:len(plaintext)], out[len(plaintext):]
    	if alias.InexactOverlap(out, plaintext) {
    		panic("chacha20poly1305: invalid buffer overlap")
    	}
    
    	var polyKey [32]byte
    	s, _ := chacha20.NewUnauthenticatedCipher(c.key[:], nonce)
    	s.XORKeyStream(polyKey[:], polyKey[:])
    	s.SetCounter(1) // set the counter to 1, skipping 32 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/telemetry-selector.yaml

            - name: prometheus
          overrides:
            - match:
                metric: ALL_METRICS
              disabled: false
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: overlap-1
      namespace: default
    spec:
      selector:
        matchLabels:
          app: ratings-app # Multiple telemetries select overlapping workloads, should generate errors for both
      metrics:
        - providers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go

    	}
    
    	var state [16]uint32
    	setupState(&state, &c.key, nonce)
    
    	ret, out := sliceForAppend(dst, len(plaintext)+16)
    	if alias.InexactOverlap(out, plaintext) {
    		panic("chacha20poly1305: invalid buffer overlap")
    	}
    	chacha20Poly1305Seal(out[:], state[:], plaintext, additionalData)
    	return ret
    }
    
    func (c *chacha20poly1305) open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {
    	if !cpu.X86.HasSSSE3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. cluster/gce/upgrade-aliases.sh

    # $1: true or false for the desired allowSubnetCidrRoutesOverlap.
    #
    # Assumed vars:
    #   IP_ALIAS_SUBNETWORK
    #   GCE_API_ENDPOINT
    #   PROJECT
    #   REGION
    function set-allow-subnet-cidr-routes-overlap() {
      local allow_subnet_cidr_routes_overlap
      allow_subnet_cidr_routes_overlap=$(gcloud compute networks subnets \
        describe "${IP_ALIAS_SUBNETWORK}" --project="${PROJECT}" --region="${REGION}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/crypto/aes/cipher_s390x.go

    		panic("crypto/aes: input not full block")
    	}
    	if len(dst) < BlockSize {
    		panic("crypto/aes: output not full block")
    	}
    	if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
    		panic("crypto/aes: invalid buffer overlap")
    	}
    	cryptBlocks(c.function, &c.key[0], &dst[0], &src[0], BlockSize)
    }
    
    func (c *aesCipherAsm) Decrypt(dst, src []byte) {
    	if len(src) < BlockSize {
    		panic("crypto/aes: input not full block")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top