Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 515 for checkdup (0.12 sec)

  1. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    // encounters an error reading the zip file.
    //
    // Note that CheckZip does not read individual files, so [Unzip] may still fail
    // when CheckZip is successful due to I/O errors.
    func CheckZip(m module.Version, zipFile string) (CheckedFiles, error) {
    	f, err := os.Open(zipFile)
    	if err != nil {
    		return CheckedFiles{}, err
    	}
    	defer f.Close()
    	_, cf, err := checkZip(m, f)
    	return cf, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesIntegrationTest.groovy

                .dependsOn(notRequired, scope: 'provided')
                .publish()
    
            buildFile << """
    dependencies {
        conf 'test:target:1.0'
    }
    """
            expect:
            succeeds 'checkDep'
            resolve.expectDefaultConfiguration("runtime")
            resolve.expectGraph {
                root(':', ':testproject:') {
                    module('test:target:1.0') {
                        module('test:test5:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/compatibility/ArtifactAndClassifierCompatibilityIntegrationTest.groovy

                    expectResolve()
                }
                'org:bar:1.0' {
                    expectGetMetadata()
                    expectGetArtifact(classifier: 'classy')
                }
            }
            succeeds "checkDep"
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module("org:foo:1.0") {
                        module("org:bar:1.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

                }
                'org.test:moduleB:1.0'() {
                    expectGetMetadata()
                    expectGetArtifact()
                }
            }
    
            then:
            succeeds 'checkDep'
            def expectedVariant = variantToTest
            resolve.expectGraph {
                root(':', ':test:') {
                    edge('org.test:moduleB', 'org.test:moduleB:1.0') {
                        maybeByConstraint()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

                    expectGetArtifact(classifier: 'jdk8')
                }
                'org.test:moduleB:1.0' {
                    expectResolve()
                }
            }
    
            then:
            succeeds 'checkDep'
            def expectedLibraryAttributes = expectedJavaLibraryAttributes(useMaven() || gradleMetadataPublished)
            resolve.expectGraph {
                root(':', ':test:') {
                    module('org.test:moduleA:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/state/checkpoint.go

    	Checksum checksum.Checksum  `json:"checksum"`
    }
    
    // DraManagerCheckpoint struct is an old implementation of the DraManagerCheckpoint
    type DRAManagerCheckpointWithoutResourceHandles struct {
    	Version  string                                   `json:"version"`
    	Entries  ClaimInfoStateListWithoutResourceHandles `json:"entries,omitempty"`
    	Checksum checksum.Checksum                        `json:"checksum"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 15:23:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBomResolveIntegrationTest.groovy

            buildFile << """
                dependencies {
                    compile "group:moduleA"
                    compile platform("group:bom:1.0")
                }
            """
    
            when:
            succeeds 'checkDep'
    
            then:
            resolve.expectGraph {
                root(':', ':testproject:') {
                    module("group:bom:1.0:platform-runtime") {
                        constraint("group:moduleA:2.0", "group:moduleA:2.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/ChecksumHashFunction.java

        return toString;
      }
    
      /** Hasher that updates a checksum. */
      private final class ChecksumHasher extends AbstractByteHasher {
        private final Checksum checksum;
    
        private ChecksumHasher(Checksum checksum) {
          this.checksum = checkNotNull(checksum);
        }
    
        @Override
        protected void update(byte b) {
          checksum.update(b);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 22:01:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "does not remove vcs checkout on every build"() {
            succeeds("assertVersion", "-PrepoVersion=1.0")
            def checkout = checkoutDir("dep", commits.initial.id.name, repo.id)
    
            // Put new file in the checkout directory that would be deleted if Gradle
            // deletes the checkout directory
            def trashFile = checkout.file("trash")
            trashFile.text = "junk"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

            repositoryInteractions {
                'org.utils:api:1.2' {
                    allowAll()
                }
            }
    
            then:
            fails ':checkDeps'
            GradleContextualExecuter.configCache || failure.assertHasDescription("Execution failed for task ':checkDeps'.")
            failure.assertHasFileName("Build file '$buildFile.path'")
            failure.assertHasLineNumber(lines + 10)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top