Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 317 for checkdup (0.11 sec)

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

                'cglib:cglib-nodep:3.2.5' {
                    expectGetMetadata()
                }
                'cglib:cglib:3.2.5' {
                    expectGetMetadata()
                }
            }
            fails ':checkDeps'
    
            then:
            failure.assertHasCause("""Module 'cglib:cglib-nodep' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5(runtime)]""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

                this.metadata = md
            }
    
            void declaresChecksum(String checksum, String algorithm = "sha1") {
                def expectedChecksum = metadata.checksums.find { it.kind == ChecksumKind.valueOf(algorithm) }.value
                assert expectedChecksum == checksum : "On ${metadata.artifactName}, expected a ${algorithm} checksum of ${checksum} but was ${expectedChecksum}"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    			},
    		},
    		{
    			"Restore checkpoint with invalid checksum",
    			`{
    				"policyName": "none",
    				"defaultCPUSet": "4-6",
    				"entries": {},
    				"checksum": 1337
    			}`,
    			"none",
    			containermap.ContainerMap{},
    			"checkpoint is corrupted",
    			&stateMemory{},
    		},
    		{
    			"Restore checkpoint with invalid JSON",
    			`{`,
    			"none",
    			containermap.ContainerMap{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            then:
            fails "checkDeps"
            failure.assertHasCause "Could not resolve all files for configuration ':compile'."
            failure.assertHasCause "Could not resolve group:projectA:1.+."
            failure.assertHasCause "No cached version listing for group:projectA:1.+ available for offline mode."
        }
    
        def checkResolve(Map edges) {
            assert succeeds('checkDeps')
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  5. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                    api "org:foo"
                }
            """
            checkConfiguration("compileClasspath")
    
            when:
            module.pom.expectGet()
            module.artifact.expectGet()
    
            run ":checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", "org.test:test:1.9") {
                    project(":platform", "org.test:platform:1.9") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

                "        <p>You must provide at least one checksum for artifact verification to pass.</p>");
            registerModal("checksum-mismatch", "Incorrect checksum",
                "        <p>This indicates that the dependency verification file <b>failed</b> because the actual checksum of the dependency artifact didn't match the expected checksum declared in the verification metadata.</p>",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifier.java

            List<Checksum> checksums = verification.getChecksums();
            for (Checksum checksum : checksums) {
                verifyChecksum(checksum.getKind(), file, checksum.getValue(), checksum.getAlternatives(), checksumService, builder);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    ----
    ----
    > @{$true = 'OK: Checksum match'; $false = "ERROR: Checksum mismatch!`nExpected: $expected`nActual:   $actual"}[$actual -eq $expected]
    ----
    ----
    OK: Checksum match
    ----
    
    === Troubleshooting a checksum mismatch
    
    If the checksum does not match the one you expected, chances are the `wrapper` task wasn't executed with the upgraded Gradle distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                module('kotlin') tries('2.9.4.1') alignsTo('2.7.9') byVirtualPlatform()
                module('annotations') tries('2.9.4.1') alignsTo('2.7.9') byVirtualPlatform()
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org:core:2.9.4", "org:core:2.7.9") {
                        byConstraint('belongs to platform org:platform:2.7.9')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

    configurations.conf.defaultDependencies { deps ->
        deps.add project.dependencies.create("org:default-dependency:1.0")
    }
    """
            resolve.prepare {
                config("conf", "checkDeps")
                config("child", "checkChild")
            }
    
            when:
            run "checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org:default-dependency:1.0")
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top