Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 509 for checkdup (0.6 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.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") {
                        forced()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. platforms/software/resources/src/main/java/org/gradle/internal/resource/metadata/ExternalResourceMetaData.java

        /**
         * Returns -1 when the content length is unknown.
         */
        long getContentLength();
    
        /**
         * Some kind of opaque checksum that was advertised by the remote “server”.
         *
         * For HTTP this is likely the value of the ETag header but it may be any kind of opaque checksum.
         *
         * @return The entity tag, or null if there was no advertised or suitable etag.
         */
        @Nullable
        String getEtag();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                }
            }
    
            then:
            repositoryInteractions {}
            // Everything should come from cache
            succeeds 'checkDeps'
    
            when:
            buildFile.text = """
                $commonBuildFile
    
                checkDeps.doLast {
                    assert status11 == 'release'
                    assert branch11 == 'master'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

                'org:foo:17' {
                    expectGetMetadata()
                }
                'org:bar:1.0' {
                    expectGetMetadata()
                }
            }
            fails ':checkDeps'
    
            then:
            failure.assertHasCause("""Cannot find a version of 'org:foo' that satisfies the version constraints:
       Dependency path ':test:unspecified' --> 'org:foo:17'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. src/crypto/md5/md5.go

    )
    
    func init() {
    	crypto.RegisterHash(crypto.MD5, New)
    }
    
    // The size of an MD5 checksum in bytes.
    const Size = 16
    
    // The blocksize of MD5 in bytes.
    const BlockSize = 64
    
    const (
    	init0 = 0x67452301
    	init1 = 0xEFCDAB89
    	init2 = 0x98BADCFE
    	init3 = 0x10325476
    )
    
    // digest represents the partial evaluation of a checksum.
    type digest struct {
    	s   [4]uint32
    	x   [BlockSize]byte
    	nx  int
    	len uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorResolveIntegrationTest.groovy

            when:
            run "checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org.gradle:test:1.45") {
                        module("org.gradle.dep:dep_module:1.1")
                    }
                }
            }
    
            when:
            server.resetExpectations()
            run "checkDeps"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

        init {
            artifactRules = """
            **/build/git-checkout/platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
            **/build/distributions/*.zip => promote-build-distributions
            **/build/website-checkout/data/releases.xml
            **/build/git-checkout/build/reports/integTest/** => distribution-tests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 17:05:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/validation/GradleMetadataValidationResolveIntegrationTest.groovy

                'org.test:projectA:1.1'()
            }
            repositoryInteractions {
                'org.test:projectA:1.1' {
                    expectResolve()
                }
            }
    
            then:
            succeeds ":checkDeps"
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org.test:projectA:1.1")
                }
            }
    
            cleanup:
            GradleFileModuleAdapter.printComponentGAV = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/filestore/TwoStageArtifactIdentifierFileStore.java

        }
    
        @Override
        public File whereIs(ModuleComponentArtifactIdentifier artifactId, String checksum) {
            File file = writableStore.whereIs(artifactId, checksum);
            if (file.exists()) {
                return file;
            }
            return readOnlyStore.whereIs(artifactId, checksum);
        }
    
        @Override
        public FileAccessTracker getFileAccessTracker() {
            return fileAccessTracker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesInSettingsIntegrationTest.groovy

                }
            """
    
            when:
            repositoryInteractions {
                'org:module:1.0' {
                    expectResolve()
                }
            }
            run ':checkDeps'
    
            then:
            outputContains 'Rule from settings applied on org:module:1.0'
        }
    
        def "can declare component metadata rules in settings using registar"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top