Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 729 for overlap (0.29 sec)

  1. src/runtime/memmove_plan9_amd64.s

     */
    	CMPQ	SI, DI
    	JLS	back
    
    /*
     * forward copy loop
     */
    forward:
    	MOVQ	BX, CX
    	SHRQ	$3, CX
    	ANDQ	$7, BX
    
    	REP;	MOVSQ
    	JMP	tail
    
    back:
    /*
     * check overlap
     */
    	MOVQ	SI, CX
    	ADDQ	BX, CX
    	CMPQ	CX, DI
    	JLS	forward
    
    /*
     * whole thing backwards has
     * adjusted addresses
     */
    	ADDQ	BX, DI
    	ADDQ	BX, SI
    	STD
    
    /*
     * copy
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3K bytes
    - Viewed (0)
  2. pilot/pkg/credentials/kube/secrets_test.go

    		GenericScrtCaCert: "generic-mtls-split-ca",
    	}, corev1.SecretTypeTLS)
    	overlapping = makeSecret("overlap", map[string]string{
    		GenericScrtCert: "cert", GenericScrtKey: "key", GenericScrtCaCert: "main-ca",
    	}, corev1.SecretTypeTLS)
    	overlappingCa = makeSecret("overlap-cacert", map[string]string{
    		GenericScrtCaCert: "split-ca",
    	}, corev1.SecretTypeTLS)
    	tlsCert = makeSecret("tls", map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/generate.go

    	buf := append(out[:0], 2)
    	buf[0] |= y.Bytes()[{{.p}}ElementLength-1] & 1
    	buf = append(buf, x.Bytes()...)
    	return buf
    }
    
    // Add sets q = p1 + p2, and returns q. The points may overlap.
    func (q *{{.P}}Point) Add(p1, p2 *{{.P}}Point) *{{.P}}Point {
    	// Complete addition formula for a = -3 from "Complete addition formulas for
    	// prime order elliptic curves" (https://eprint.iacr.org/2015/1060), §A.2.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. src/runtime/memmove_amd64.s

    tail:
    	// move_129through256 or smaller work whether or not the source and the
    	// destination memory regions overlap because they load all data into
    	// registers before writing it back.  move_256through2048 on the other
    	// hand can be used only when the memory regions don't overlap or the copy
    	// direction is forward.
    	//
    	// BSR+branch table make almost all memmove/memclr benchmarks worse. Not worth doing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_prune_all.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/p -> example.com/q v1.0.0
    #  example.com/a -> example.com/b v1.0.0 -> example.com/q v1.1.0 -> example.com/w v1.0.0 -> example.com/x v1.0.0 -> example.com/y v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 16 21:02:37 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p224_sqrt.go

    package nistec
    
    import (
    	"crypto/internal/nistec/fiat"
    	"sync"
    )
    
    var p224GG *[96]fiat.P224Element
    var p224GGOnce sync.Once
    
    // p224SqrtCandidate sets r to a square root candidate for x. r and x must not overlap.
    func p224SqrtCandidate(r, x *fiat.P224Element) {
    	// Since p = 1 mod 4, we can't use the exponentiation by (p + 1) / 4 like
    	// for the other primes. Instead, implement a variation of Tonelli–Shanks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.1K bytes
    - Viewed (1)
  7. .github/ISSUE_TEMPLATE/11-language-change.yml

        validations:
          required: true
    
      - type: textarea
        id: orthogonality
        attributes:
          label: "Orthogonality: How does this change interact or overlap with existing features?"
          description: "Is the goal of this change a performance improvement? If so, what quantifiable improvement should we expect? How would we measure it?"
        validations:
          required: false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/internal/bytealg/indexbyte_amd64.s

    	// Find first set bit, if any.
    	BSFL	DX, DX
    	JNZ	ssesuccess
    	// Advance to next block.
    	ADDQ	$16, DI
    sseloopentry:
    	CMPQ	DI, AX
    	JB	sseloop
    
    	// Search the last 16-byte chunk. This chunk may overlap with the
    	// chunks we've already searched, but that's ok.
    	MOVQ	AX, DI
    	MOVOU	(AX), X1
    	PCMPEQB	X0, X1
    	PMOVMSKB X1, DX
    	BSFL	DX, DX
    	JNZ	ssesuccess
    
    failure:
    	MOVQ $-1, (R8)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 19:06:01 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. pkg/test/framework/integration/framework_test.go

    		// The children were run synchronously. Make sure they don't overlap in time.
    		for i := 0; i < len(tst.children); i++ {
    			ci := tst.children[i]
    			ciRange := ci.timeRange()
    			for j := i + 1; j < len(tst.children); j++ {
    				cj := tst.children[j]
    				cjRange := cj.timeRange()
    				if ciRange.overlaps(cjRange) {
    					return fmt.Errorf("test %s: child %s[%s] overlaps with child %s[%s]",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    	listers "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1"
    )
    
    // OverlappingBuiltInResources returns the set of built-in group/resources that are persisted
    // in storage paths that overlap with CRD storage paths, and should not be deleted
    // by this controller if an associated CRD is deleted.
    func OverlappingBuiltInResources() map[schema.GroupResource]bool {
    	return map[schema.GroupResource]bool{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top