Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,645 for aModule (0.14 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            given:
            mavenRepo.module("org", "leaf1").publish()
            mavenRepo.module("org", "leaf2").publish()
            mavenRepo.module("org", "leaf2", "1.5").publish()
            mavenRepo.module("org", "leaf2", "2.5").publish()
            mavenRepo.module("org", "leaf3").publish()
            mavenRepo.module("org", "leaf4").publish()
    
            mavenRepo.module("org", "middle1").dependsOnModules('leaf1', 'leaf2').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsRepoResolveIntegrationTest.groovy

            module.pom.expectMetadataRetrieve()
            module.pom.sha1.expectDownload()
            module.artifact.expectMetadataRetrieve()
            module.artifact.sha1.expectDownload()
    
            when:
            using m2
    
            then:
            succeeds 'retrieve'
    
            and:
            localModule.artifactFile.assertIsCopyOf(module.artifactFile)
            localModule.pomFile.assertIsCopyOf(module.pomFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/import.go

    	}
    
    	if e.newMissingVersion != "" {
    		return fmt.Sprintf("package %s provided by %s at latest version %s but not at required version %s", e.Path, e.Module.Path, e.Module.Version, e.newMissingVersion)
    	}
    
    	return fmt.Sprintf("missing module for import: %s@%s provides %s", e.Module.Path, e.Module.Version, e.Path)
    }
    
    func (e *ImportMissingError) Unwrap() error {
    	return e.QueryErr
    }
    
    func (e *ImportMissingError) ImportPath() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsSnapshotRepoIntegrationTest.groovy

        String artifactVersion = "1.45-SNAPSHOT"
        MavenGcsModule module
    
        def setup() {
            module = getMavenGcsRepo().module("org.gradle", "test", artifactVersion)
        }
    
        def "resolves a maven snapshot module stored in Gcs"() {
            setup:
            module.publish()
    
            buildFile << mavenGcsRepoDsl()
            buildFile << """
    configurations { compile }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpsIntegTest.groovy

            failure.assertHasCause("Could not write to resource '${module.jar.uri}'")
        }
    
        def expectPublication() {
            module.jar.expectPut()
            module.jar.sha1.expectPut()
            module.jar.sha256.expectPut()
            module.jar.sha512.expectPut()
            module.ivy.expectPut()
            module.ivy.sha1.expectPut()
            module.ivy.sha256.expectPut()
            module.ivy.sha512.expectPut()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/mvs.go

    	"golang.org/x/mod/module"
    )
    
    // cmpVersion implements the comparison for versions in the module loader.
    //
    // It is consistent with gover.ModCompare except that as a special case,
    // the version "" is considered higher than all other versions.
    // The main module (also known as the target) has no version and must be chosen
    // over other versions of the same module in the module dependency graph.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/mvs/errors.go

    	return &BuildListError{
    		Err:   err,
    		stack: stack,
    	}
    }
    
    // Module returns the module where the error occurred. If the module stack
    // is empty, this returns a zero value.
    func (e *BuildListError) Module() module.Version {
    	if len(e.stack) == 0 {
    		return module.Version{}
    	}
    	return e.stack[len(e.stack)-1].m
    }
    
    func (e *BuildListError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 17:22:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyModule.java

         *  organisation
         *  module
         *  revision
         *  revConstraint
         *  conf
         *  exclusions - list of maps: [[group: ?, module: ?], ...]
         */
        IvyModule dependsOn(Map<String, ?> attributes);
    
        IvyModule dependsOn(Module target);
    
        IvyModule dependsOn(Map<String, ?> attributes, Module target);
    
        IvyModule dependencyConstraint(Module module);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/vendor_outside_module.txt

    ! go build -x -mod=readonly my-module/vendor/example.com/another-module/foo/bar/baz_with_outside_dep.go
    stderr 'no required module provides package rsc.io/quote'
    ! go build -x -mod=vendor my-module/vendor/example.com/another-module/foo/bar/baz_with_outside_dep.go
    stderr 'no required module provides package rsc.io/quote'
    
    -- my-module/go.mod --
    module example.com/my-module
    
    go 1.20
    -- my-module/vendor/example.com/another-module/foo/bar/baz.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:24:57 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

        void "forces multiple modules by rule"() {
            mavenRepo.module("org.utils", "impl", '1.3').dependsOn('org.utils', 'api', '1.3').publish()
            mavenRepo.module("org.utils", "impl", '1.5').dependsOn('org.utils', 'api', '1.5').publish()
    
            mavenRepo.module("org.utils", "api", '1.3').publish()
            mavenRepo.module("org.utils", "api", '1.5').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
Back to top