Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 706 for checkdup (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

                    }
                }
                configurations.conf.resolutionStrategy {
                    force 'org:foo:1.0'
                }
            """
    
            when:
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    constraint("org:foo:1.1","org:foo:1.0")
                    module("org:bar:1.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/crypto/sha256/sha256.go

    	}
    
    	return digest
    }
    
    // Sum256 returns the SHA256 checksum of the data.
    func Sum256(data []byte) [Size]byte {
    	if boring.Enabled {
    		return boring.SHA256(data)
    	}
    	var d digest
    	d.Reset()
    	d.Write(data)
    	return d.checkSum()
    }
    
    // Sum224 returns the SHA224 checksum of the data.
    func Sum224(data []byte) [Size224]byte {
    	if boring.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/EndorseStrictVersionsIntegrationTest.groovy

                    expectGetArtifact()
                }
                'org:foo:1.0' {
                    expectGetMetadata()
                    expectGetArtifact()
                }
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module('org:platform:1.0') {
                        constraint('org:bar:1.0').byConstraint()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/RemoteSourceDependencyIntegrationTest.groovy

                    }
                }
            """
            repoB.createBranch('release')
            repoB.checkout('release')
            repoB.commit('version 1.2')
            repoB.createLightWeightTag('1.2')
            repoC.createBranch('release')
            repoC.checkout('release')
            repoC.commit('version 1.2')
            repoC.createLightWeightTag('1.2')
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. cmd/bitrot.go

    			hash.Write(msg)
    			sum = hash.Sum(sum[:0])
    			msg = append(msg, sum...)
    			hash.Reset()
    		}
    		if !bytes.Equal(sum, checksum) {
    			logger.Fatal(errSelfTestFailure, fmt.Sprintf("bitrot: %v selftest checksum mismatch: got %x - want %x", algorithm, sum, checksum))
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    implementation libs.my.great.lib
                }
            """
    
            when:
            lib.pom.expectGet()
            lib.artifact.expectGet()
    
            then:
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org.gradle.test:lib:1.0')
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  7. src/hash/crc64/crc64.go

    }
    
    // Checksum returns the CRC-64 checksum of data
    // using the polynomial represented by the [Table].
    func Checksum(data []byte, tab *Table) uint64 { return update(0, tab, data) }
    
    // tableSum returns the ISO checksum of table t.
    func tableSum(t *Table) uint64 {
    	var a [2048]byte
    	b := a[:0]
    	if t != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

                    expectGetArtifact()
                }
                'org:baz:1.0' {
                    expectGetMetadata()
                    expectGetArtifact()
                }
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module('org:bar:1.0') {
                        edge('org:baz:{strictly 1.0}', 'org:baz:1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

                }
            }
    
            then:
            if (requested == 'qa') {
                run ':checkDeps'
                resolve.expectGraph {
                    root(":", ":test:") {
                        module('org.test:module:1.0')
                    }
                }
            } else {
                fails ':checkDeps'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyGradleMetadataRedirectionIntegrationTest.groovy

                dependencies {
                    api "org:main:1.0"
                }
            """
    
            when:
            mainModule.ivy.expectGet()
            mainModule.artifact.expectGet()
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org:main:1.0')
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top