Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 4,346 for module$ (0.31 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleCycleCrossVersionSpec.groovy

                rootProject.name = 'module-root'
                includeBuild('module-a')
            """
            file('module-a').mkdir()
            file('module-b').mkdir()
            file('module-c').mkdir()
            file('module-a/settings.gradle') << """
                includeBuild('../module-b')
            """
            file('module-b/settings.gradle') << """
                includeBuild('../module-c')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/workcmd/sync.go

    specified in the workspace (with use directives).
    
    The syncing is done by sequentially upgrading each of the dependency
    modules specified in a workspace module to the version in the build list
    if the dependency module's version is not already the same as the build
    list's version. Note that Minimal Version Selection guarantees that the
    build list's version of each module is always the same or higher than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    stderr '^go: example.net/testonly tested by\n\texample.net/testonly\.test imports\n\texample.net/missing: cannot find module providing package example.net/missing$'
    
    
    # 'go get' should succeed for a module path that does not contain a package,
    # but fail for a non-package subdirectory of a module.
    
    ! go get example.net/missing/subdir@v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. maven-core/src/test/resources/imports-repo/t01/p0/pom.xml

            <artifactId>maven-test-a</artifactId>
            <version>1.0</version>
          </dependency>
        </dependencies>
      </dependencyManagement>
      <modules>
        <module>p1</module>
        <module>p2</module>
        <module>p3</module>
        <module>p4</module>
      </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 612 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_dot.txt

    cd subdir
    ! go list
    ! stderr 'cannot find module providing package'
    stderr '^no Go files in '$WORK'[/\\]gopath[/\\]src[/\\]dir[/\\]subdir$'
    cd ..
    
    # golang.org/issue/30590: if a package is found in the filesystem
    # but is not in the main module, the error message should not say
    # "cannot find module providing package", and we shouldn't try
    # to find a module providing the package.
    ! go list ./othermodule
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 22:30:03 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    	// requirements of those root modules, and the transitive requirements of only
    	// the root modules that do not support pruning.
    	//
    	// If workspace, the graph includes only the workspace modules, the explicit
    	// requirements of the workspace modules, and the transitive requirements of
    	// the workspace modules that do not support pruning.
    	pruning modPruning
    
    	// rootModules is the set of root modules of the graph, sorted and capped to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top