Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 317 for checkdup (0.2 sec)

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

                }
            """
    
            when:
            repositoryInteractions {
                'org:module:1.0' {
                    expectResolve()
                }
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org:module:1.0')
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                    dependencies {
                        constraints {
                            conf('org:foo:1.0')
                        }
                    }
                }
            }
    
            when:
            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
    - 28.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

                }
            """
    
            when:
            repositoryInteractions {
                'org:foo:1.1' {
                    expectResolve()
                }
            }
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    edge('org:foo:1.0', 'org:foo:1.1') {
                        byConsistentResolution('other')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. internal/hash/reader.go

    	}
    	return nil
    }
    
    // MD5Current returns the MD5 checksum of the content
    // that has been read so far.
    //
    // Calling MD5Current again after reading more data may
    // result in a different checksum.
    func (r *Reader) MD5Current() []byte {
    	if r.disableMD5 {
    		return r.checksum
    	}
    	return r.ETag()[:]
    }
    
    // SHA256 returns the SHA256 checksum set as reference value.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. operator/pkg/compare/compare_test.go

      labels:
        app: istio-ingressgateway
        release: istio`,
    			i:    []string{"metadata.annotations.checksum/config-volume"},
    			want: ``,
    		},
    		{
    			desc: "ignore checksum",
    			a: `apiVersion: autoscaling/v2
    kind: Deployment
    metadata:
      annotations:
        checksum/config-volume: 43d72e930ed33e3e01731f8bcbf31dbf02cb1c1fc53bcc09199ab45c0d031b60
      name: istio-ingressgateway
      namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

            """
    
            when:
            repositoryInteractions {
                'org:foo:1.0' {
                    expectGetMetadata()
                    expectGetArtifact()
                }
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org:foo:{strictly 1.0}", "org:foo:1.0")
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                            // file...we'll try again with the MD5 checksum.
                            try {
                                verifyChecksum(md5ChecksumObserver, destination, temp, remotePath, ".md5", wagon);
                            } catch (ChecksumFailedException e) {
                                // if we also fail to verify based on the MD5 checksum, and the checksum transfer/read
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/VariantsDependencySubstitutionRulesIntegrationTest.groovy

            """
    
            file("platform/build.gradle") << """
                plugins {
                    id 'java-platform'
                }
    
            """
    
            when:
            succeeds ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":depsub:") {
                    edge('org:lib:1.0', ':platform', 'depsub:platform:') {
                        variant(expectedVariant, [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                    if (!conflict) {
                        expectGetArtifact()
                    }
                }
            }
            if (conflict) {
                fails 'checkDeps'
            } else {
                succeeds 'checkDeps'
            }
    
            then:
            if (conflict) {
                failure.assertHasCause("""Module 'org:test' has been rejected:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

            }
    
            then:
            succeeds 'checkDeps'
        }
    
        void "doesn't fallback to repository listing when empty list version is returned"() {
            withLister([testA: []])
            given:
            buildFile << """
                dependencies {
                    conf "org:testA:+"
                }
            """
    
            when:
            fails 'checkDeps'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top