Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 706 for checkdup (0.18 sec)

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

                                }
                            }
                        }
                    }
                    failOnVersionConflict()
                }
    """
    
            when:
            run "checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":depsub:") {
                    module("org.stuff:foo:2.0") {
                        edge("org.utils:api:1.5", "org.utils:api:1.5") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

      - On artifact bar-1.0.jar (org:bar:1.0) in repository 'maven': expected a 'sha1' checksum of 'also invalid' but was '${getChecksum(bar, "sha1")}'
      - On artifact foo-1.0.jar (org:foo:1.0) in repository 'maven': expected a 'sha1' checksum of 'invalid' but was '${getChecksum(foo, "sha1")}'
      - On artifact foo-1.0.pom (org:foo:1.0) in repository 'maven': expected a 'sha1' checksum of 'invalid' but was '${getChecksum(foo, "sha1", "pom")}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                dependencies {
                    conf 'org:${chain[0]}:1.0'
                }
            """
            expectChainInteractions(REPO_TYPES, chain, testVariant)
    
            then:
            succeeds 'checkDep'
            resolve.expectGraph {
                root(':', ':test:') {
                    module("org:${chain[0]}:1.0:${RepositoryInteractionDependencyResolveIntegrationTest.expectedConfiguration(chain[0], testVariant)}") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ForcedModulesIntegrationTest.groovy

    }
    
    configurations.all {
        resolutionStrategy.force 'org:foo:1.4.4'
    }
    
    task checkDeps {
        def compileClasspath = configurations.compileClasspath
        doLast {
            assert compileClasspath*.name == ['foo-1.4.4.jar']
        }
    }
    """
    
            expect:
            run("checkDeps")
        }
    
        void "can force the version of a transitive dependency module"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRemoteDependencyWithGradleMetadataResolutionIntegrationTest.groovy

            m.moduleMetadata.expectGet()
            m.artifact.expectGet()
    
            when:
            run("checkDeps")
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("test:a:1.2")
                }
            }
    
            when:
            server.resetExpectations()
            run("checkDeps")
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  6. src/crypto/sha512/sha512.go

    }
    
    const (
    	// Size is the size, in bytes, of a SHA-512 checksum.
    	Size = 64
    
    	// Size224 is the size, in bytes, of a SHA-512/224 checksum.
    	Size224 = 28
    
    	// Size256 is the size, in bytes, of a SHA-512/256 checksum.
    	Size256 = 32
    
    	// Size384 is the size, in bytes, of a SHA-384 checksum.
    	Size384 = 48
    
    	// BlockSize is the block size, in bytes, of the SHA-512/224,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyHandlerProviderIntegrationTest.groovy

                doLast {
                   outFile << 'Hello'
                }
            }
    
            checkDeps.dependsOn resolve
    
            """
    
            when:
            args '-Pproject.version=1.1'
            succeeds 'checkDeps'
    
            then:
            executedAndNotSkipped ":checkDeps", ":resolve"
            resolve.expectGraph {
                root(":", "org:provider:1.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

                        }
                    }
                    failOnVersionConflict()
                }
    """
            resolve.prepare("conf")
    
            expect:
            succeeds("checkDeps")
            resolve.expectGraph {
                root(":", ":test:") {
                     module("org.stuff:foo:2.0") {
                        module("org.utils:api:1.5") {
                            selectedByRule()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/ChecksumEntry.java

            return result;
        }
    
        ChecksumKind getChecksumKind() {
            return checksumKind;
        }
    
        public String getChecksum() {
            return checksum;
        }
    
        public void setChecksum(String checksum) {
            this.checksum = checksum;
        }
    
        @Override
        int getOrder() {
            return checksumKind.ordinal();
        }
    
        @Override
        public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. 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)
Back to top