Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 651 for overlap (0.13 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

                task cleanSecond(type: Delete) {
                    delete second
                }
            """
            return [":first", file("build/overlap/first.txt"),
                    ":second", file("build/overlap/second.txt")]
        }
    
        def "overlapping output directory with first, second then first, second"() {
            def (String first, TestFile firstOutput,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. src/math/big/arith_test.go

    	{argshlVUIn, 7, 0, 1, 1, argshlVUr1, 0, "partial overlap by 6 Words of shlVU and shift of 1"},
    	{argshlVUIn, 7, 0, 1, _W - 1, argshlVUrWm1, 32, "partial overlap by 6 Words of shlVU and shift of _W - 1"},
    	{argshlVUIn, 7, 0, 2, 0, argshlVUr0, 0, "partial overlap by 5 Words of shlVU and shift of 0"},
    	{argshlVUIn, 7, 0, 2, 1, argshlVUr1, 0, "partial overlap by 5 Words of shlVU and shift of 1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/DefaultOverlappingOutputDetectorTest.groovy

                "output", staleFileAddedBetweenExecutions
            )
    
            when:
            def overlaps = detector.detect(previousOutputFiles, outputFilesBeforeExecution)
    
            then:
            overlaps.propertyName == "output"
            overlaps.overlappedFilePath == "/absolute/path"
        }
    
        def "detects overlap when there is a stale #type in an output directory"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/crypto/cipher/cipher.go

    	// BlockSize returns the cipher's block size.
    	BlockSize() int
    
    	// Encrypt encrypts the first block in src into dst.
    	// Dst and src must overlap entirely or not at all.
    	Encrypt(dst, src []byte)
    
    	// Decrypt decrypts the first block in src into dst.
    	// Dst and src must overlap entirely or not at all.
    	Decrypt(dst, src []byte)
    }
    
    // A Stream represents a stream cipher.
    type Stream interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/crypto/des/cipher.go

    		panic("crypto/des: input not full block")
    	}
    	if len(dst) < BlockSize {
    		panic("crypto/des: output not full block")
    	}
    	if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
    		panic("crypto/des: invalid buffer overlap")
    	}
    	cryptBlock(c.subkeys[:], dst, src, false)
    }
    
    func (c *desCipher) Decrypt(dst, src []byte) {
    	if len(src) < BlockSize {
    		panic("crypto/des: input not full block")
    	}
    	if len(dst) < BlockSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/regexp/onepass_test.go

    		[]rune{},
    		[]uint32{mergeFailed},
    		1, 2,
    	},
    	{
    		// overlap at interval begin
    		[]rune{69, 74},
    		[]rune{74, 75},
    		[]rune{},
    		[]uint32{mergeFailed},
    		1, 2,
    	},
    	{
    		// overlap ar interval end
    		[]rune{69, 74},
    		[]rune{65, 69},
    		[]rune{},
    		[]uint32{mergeFailed},
    		1, 2,
    	},
    	{
    		// overlap from above
    		[]rune{69, 74},
    		[]rune{71, 74},
    		[]rune{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/intervals.go

    	for {
    		second := pv.nxt()
    		if second.done() {
    			break
    		}
    
    		// Check for overlap between cur and second. If no overlap
    		// then add cur to result and move on.
    		if !cur.i.Overlaps(second.i) && !cur.i.adjacent(second.i) {
    			ret = append(ret, cur.i)
    			cur = second
    			continue
    		}
    		// cur overlaps with second; merge second into cur
    		cur.i.MergeInto(second.i)
    	}
    	ret = append(ret, cur.i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. pkg/controller/job/success_policy.go

    	for rulePointer < len(ruleIndexes) && succeededPointer < len(succeededIndexes) {
    		if overlap := min(ruleIndexes[rulePointer].Last, succeededIndexes[succeededPointer].Last) -
    			max(ruleIndexes[rulePointer].First, succeededIndexes[succeededPointer].First) + 1; overlap > 0 {
    			contains += overlap
    		}
    		if succeededIndexes[succeededPointer].Last < ruleIndexes[rulePointer].Last {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/aes.go

    	}
    	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 {
    		panic("crypto/aes: input not full block")
    	}
    	if len(dst) < aesBlockSize {
    		panic("crypto/aes: output not full block")
    	}
    	C._goboringcrypto_AES_encrypt(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. 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)
Back to top