Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 871 for module$ (0.11 sec)

  1. src/cmd/go/internal/modload/import.go

    	} else {
    		return "", false, nil
    	}
    
    	// Check that there aren't other modules in the way.
    	// This check is unnecessary inside the module cache
    	// and important to skip in the vendor directory,
    	// where all the module trees have been overlaid.
    	// So we only check local module trees
    	// (the main module, and any directory trees pointed at by replace directives).
    	if isLocal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/repo.go

    // In this example, "rsc.io/qr" is both a module path and an import path.
    // But "rsc.io/qr/gf256" is only an import path, not a module path:
    // it names an importable package, but not a module.
    //
    // As a special case to incorporate code written before modules were
    // introduced, if a path p resolves using the pre-module "go get" lookup
    // to the root of a source code repository without a go.mod file,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    [[sub::terminology_platform]]
    == Platform
    
    A platform is a set of modules aimed to be used together. There are different categories of platforms, corresponding to different use cases:
    
    - module set: often a set of modules published together as a whole. Using one module of the set often means we want to use the same version for all modules of the set. For example, if using `groovy` 1.2, also use `groovy-json` 1.2.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

        @Override
        IvyModule dependencyConstraint(Module target) {
            dependencyConstraints << [organisation: target.group, module: target.module, revision: target.version]
            return this
        }
    
        @Override
        IvyModule dependencyConstraint(Map<String, ?> attributes, Module module) {
            def allAttrs = [organisation: module.group, module: module.module, revision: module.version]
            allAttrs.putAll(attributes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

        def expectGetDynamicRevision(IvyHttpModule module) {
            expectListVersions(module)
            module.ivy.expectGet()
            module.jar.expectGet()
        }
    
        def expectGetDynamicRevisionMetadata(IvyHttpModule module) {
            expectListVersions(module)
            module.ivy.expectGet()
        }
    
        private expectListVersions(IvyHttpModule module) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

      into 'libs'
    }
    """
            ivyRepo.module('org', 'projectA', '1.2')
                .dependsOn(organisation: 'org', module: 'projectB', revision: '1.5', revConstraint: '1.6')
                .dependsOn(organisation: 'org', module: 'projectC', revision: 'alpha-12')
                .publish()
    
            ivyRepo.module('org', 'projectB', '1.5')
                .publish()
    
            ivyRepo.module('org', 'projectB', '1.6')
                .publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. pkg/wasm/cache.go

    	sha256SchemePrefix = "sha256:"
    )
    
    // Cache models a Wasm module cache.
    type Cache interface {
    	Get(url string, opts GetOptions) (string, error)
    	Cleanup()
    }
    
    // LocalFileCache for downloaded Wasm modules. Currently it stores the Wasm module as local file.
    type LocalFileCache struct {
    	// Map from Wasm module checksum to cache entry.
    	modules map[moduleKey]*cacheEntry
    	// Map from tagged URL to checksum
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalRepoResolveIntegrationTest.groovy

            def moduleA = sysPropRepo.module('group', 'projectA', '1.2').publish()
    
            when:
            run 'retrieve'
    
            then:
            hasArtifact(moduleA)
        }
    
        def "can resolve artifacts from local m2 with custom local repository defined by system-property"() {
            given:
            def artifactRepo = mavenLocal("artifactrepo")
            def moduleA = artifactRepo.module('group', 'projectA', '1.2').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

                    }
                }
            """
            when:
            succeeds 'publish'
    
            then:
            def module = ivyRepo.module('org.gradle.test', 'root', '1.0')
            module.assertPublished()
            def module2 = ivyRepo2.module('org.gradle.test', 'root', '1.0')
            module2.assertPublished()
        }
    
        def "can publish custom PublishArtifact"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/download.go

    	"cmd/go/internal/modload"
    	"cmd/go/internal/toolchain"
    
    	"golang.org/x/mod/module"
    )
    
    var cmdDownload = &base.Command{
    	UsageLine: "go mod download [-x] [-json] [-reuse=old.json] [modules]",
    	Short:     "download modules to local cache",
    	Long: `
    Download downloads the named modules, which can be module patterns selecting
    dependencies of the main module or module queries of the form path@version.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top